/* --- CONTACT SECTION MAIN WRAPPER --- */
.sym-contact-main-wrapper {
    padding: 100px 0 0;
    background: #fff;
    position: relative;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.sym-contact-inner-container {
    max-width: 1200px;
    margin: 45px auto;
    padding: 0 20px;
}

.sym-contact-breadcrumb-area {
    margin-bottom: 40px;
}

/* Breadcrumbs Styling */
.sym-contact-path-nav {
    font-size: 13px;
    color: black;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.sym-contact-path-nav a {
    text-decoration: none;
    color: black;
}

.sym-contact-hero-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Facility Address Grid */
.sym-contact-facility-grid {
    display: flex;
    justify-content: center;
    /* gap: 50px; */
    margin-bottom: 50px;
}

.sym-contact-address-card {
    width: 35%;
    border-left: 3px solid var(--brand-blue);
    padding-left: 20px;
}

.sym-contact-address-card h4 {
    font-size: 16px;
    color: var(--brand-blue);
    font-weight: 700;
    margin: 0 0 10px 0;
}

.sym-contact-address-card address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Enquiry Form Styling */
.sym-contact-enquiry-form-card {
  background: #e7e6eb;
    padding: 60px 80px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.sym-contact-form-header-text {
    text-align: center;
    color: var(--brand-blue);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    z-index: 100;
}

.sym-contact-input-field-group {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.sym-contact-input-field-group label {
    font-size: 14px;
    font-weight: 800;
    color: #000;
}

.sym-contact-input-field-group label span {
    color: #e63946;
}

.sym-contact-form-control {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
}

.sym-contact-form-submission-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
}

/* --- INTERACTIVE MAP WRAPPER --- */
.sym-contact-map-integration-area {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: -120px;
    z-index: 1;
}

.sym-contact-map-frame-container {
    position: relative;
    top: 120px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* clip-path: polygon(0 18%, 100% 0, 100% 100%, 0% 100%); */
}

.sym-contact-map-iframe-embedded {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    transition: 0.6s ease;
}

.sym-contact-map-visual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.sym-contact-map-pin-indicator {
    width: 54px;
    height: 54px;
    background: #14b7d5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.sym-contact-map-unlock-interaction-btn {
    background: #fff;
    color: #333;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Map Active State Logic */
.sym-contact-map-frame-container.active .sym-contact-map-iframe-embedded {
    filter: grayscale(0);
    pointer-events: auto;
}

.sym-contact-map-frame-container.active .sym-contact-map-visual-overlay {
    opacity: 0;
    pointer-events: none;
}

  .sym-ct-actions {
            display: flex;
            justify-content: end;
            gap: 15px;
            margin-top: 40px;
        }

        .btn-submit {
            background: #007bff;
            color: #fff;
            padding: 12px 50px;
            border-radius: 4px;
            font-weight: 700;
            border: none;
            cursor: pointer;
        }

        .btn-reset {
            background: #b1b5bd;
            color: #fff;
            padding: 12px 50px;
            border-radius: 4px;
            font-weight: 700;
            border: none;
            cursor: pointer;
        }


/* --- CONTACT PAGE RESPONSIVE FIXES --- */

@media (max-width: 991px) {
    /* 1. Hero & Breadcrumbs */
    .sym-contact-main-wrapper {
        padding: 60px 0 80px;
    }
    
    .sym-contact-hero-title {
        font-size: 24px;
        padding: 0 10px;
    }

    /* 2. Address Grid: Switch from side-by-side to stacked */
    .sym-contact-facility-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .sym-contact-address-card {
        width: 100%;
        max-width: 400px; /* Keeps addresses from stretching too wide */
        border-left: 4px solid var(--brand-blue);
    }

    /* 3. Enquiry Form: Adjust inner padding and grid */
    .sym-contact-enquiry-form-card {
        padding: 40px 30px; /* Reduced padding for mobile */
        max-width: 100%;
    }

    .sym-contact-input-field-group {
        grid-template-columns: 1fr; /* Stack label and input */
        gap: 8px;
        margin-bottom: 15px;
    }

    .sym-contact-form-header-text {
        font-size: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    /* 4. Action Buttons (Submit/Reset) */
    .sym-ct-actions {
        flex-direction: column; /* Stack buttons on small phones */
        align-items: stretch;
    }

    .btn-submit, .btn-reset {
        padding: 14px 20px;
        width: 100%;
    }

    /* 5. Map Integration Area Scaling */
    .sym-contact-map-integration-area {
        height: 400px; /* Shorter map for mobile */
        margin-top: -60px;
    }

    .sym-contact-map-frame-container {
        top: 60px;
    }
}

@media (max-width: 480px) {
    /* 6. Extra Small Screen Polish */
    .sym-contact-inner-container {
        margin: 20px auto;
    }

    .sym-contact-path-nav {
        justify-content: center;
        font-size: 11px;
    }

    .sym-contact-address-card address {
        font-size: 13px;
    }

    .sym-contact-map-unlock-interaction-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}