.contact-section {
    position: relative;
    background-image: url('../img/contact_bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 100px 0;
    border-top: 3px solid rgba(216, 67, 21, 0.35);
    border-bottom: 3px solid rgba(216, 67, 21, 0.35);
    overflow: hidden;
    perspective: 1200px;
    color: #FFFFFF;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 8, 4, 0.5) 0%, rgba(10, 4, 2, 0.82) 100%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section .contact-heading-sub {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFE082;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.contact-section .contact-heading-main {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.contact-section .contact-info-block {
    background: rgba(255, 255, 255, 0.97);
    border: 1.5px solid rgba(230, 198, 135, 0.5);
    border-radius: 35px 12px 35px 12px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

/* Map Container Frame */
.contact-section .map-container {
    height: 100%;
    min-height: 380px;
    border-radius: 35px 12px 35px 12px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(230, 198, 135, 0.5);
    background: rgba(255, 255, 255, 0.97);
    padding: 10px;
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    border-radius: 25px 8px 25px 8px;
    display: block;
}

.contact-section .contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-section .contact-method:last-child {
    margin-bottom: 0;
}

.contact-section .icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFF5EB;
    border: 1px solid rgba(197, 168, 128, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A880;
    font-size: 1.25rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-section .contact-method:hover .icon-wrapper {
    background: #C5A880;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.contact-section .method-details h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1C1C1E;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-section .method-details p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.contact-section .method-details a {
    color: #C5A880;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section .method-details a:hover {
    color: #1C1C1E;
}

/* Map Container Frame */
.contact-section .map-container {
    height: 100%;
    min-height: 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.25);
    background: #FFFFFF;
    padding: 10px;
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    border-radius: 6px;
    display: block;
/* PC Desktop Viewport Fitting Layout */
@media (min-width: 992px) {
    .contact-section {
        padding: 100px 0;
        min-height: auto;
        height: auto;
    }

    .contact-section .contact-heading-sub {
        font-size: 0.85rem;
        margin-bottom: 10px;
        letter-spacing: 3.5px;
    }

    .contact-section .contact-heading-main {
        font-size: 2.4rem;
        margin-bottom: 45px;
    }

    .contact-section .contact-info-block {
        padding: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .contact-section .map-container {
        height: 100%;
        min-height: 420px;
    }

    .contact-section .map-container iframe {
        height: 100%;
        min-height: 400px;
    }
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .contact-heading-main {
        font-size: 2.2rem;
    }
    
    .contact-section .contact-info-block {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .contact-section .map-container {
        min-height: 320px;
    }
}
