  /* --- CONTACT & LOCATION SECTION STYLES --- */
    .contact-location {
        position: relative;
        padding: 120px 5%;
        background: var(--bg-color);
        overflow: hidden;
    }

    /* .cl-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        position: relative;
        z-index: 2;
    } */
     .cl-container {
        max-width: 1300px;
        margin: 0 auto;
        /* UPDATED: Automatically adjusts columns based on available space */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 60px;
        position: relative;
        z-index: 2;
    }

    /* --- MAP SPECIFIC --- */
    .map-glass-card {
        /* UPDATED: Changed from height calculation to aspect-ratio for flexible layout */
        width: 100%;
        min-height: 450px; 
        overflow: hidden;
        position: relative;
        padding: 10px; /* Modern framing */
    }

    /* UPDATED: Make sure the iframe inside scales beautifully to fill its container */
    .map-glass-card iframe {
        width: 100% !important;
        height: 100% !important;
        min-height: 450px;
        border-radius: 20px; /* Inner rounding */
        transition: opacity 0.5s ease;
    }

    .cl-section-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 40px;
        color: var(--text-main);
        letter-spacing: -0.5px;
    }

    /* --- GLASSMORPISM CARDS --- */
    .form-glass-card{
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 30px;
        backdrop-filter: blur(25px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

    /* --- FORM SPECIFIC --- */
    .form-glass-card {
        padding: 50px 40px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group.full-width {
        grid-column: span 2;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-main);
        margin-left: 5px;
    }

    /* Input Field Styling */
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        background: rgba(128, 128, 128, 0.05);
        border: 1px solid var(--card-border);
        padding: 15px 20px;
        border-radius: 12px;
        color: var(--text-main);
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
    }

    /* Focus States */
    .form-group input:focus, 
    .form-group select:focus, 
    .form-group textarea:focus {
        border-color: var(--primary-orange);
        background: rgba(128, 128, 128, 0.08);
        box-shadow: 0 0 15px rgba(255, 123, 0, 0.1);
    }

    /* Styling the Select Dropdown Arrow */
    select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff7b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 20px center;
        background-size: 18px;
    }

    .form-footer {
        margin-top: 40px;
        text-align: center;
    }

    /* PREMIUM ORANGE GRADIENT BUTTON */
    .cl-submit-btn {
        background: var(--gradient);
        color: white;
        border: none;
        padding: 18px 60px;
        border-radius: 100px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(255, 123, 0, 0.2);
    }

    .cl-submit-btn:hover {
        filter: brightness(1.1);
        box-shadow: 0 15px 40px rgba(255, 123, 0, 0.4);
        transform: translateY(-2px);
    }

    /* --- MAP SPECIFIC --- */
    .map-glass-card {
        height: calc(100% - 80px); /* Fill column, minus title */
        overflow: hidden;
        position: relative;
        padding: 10px; /* Modern framing */
    }

    .map-glass-card iframe {
        border-radius: 20px; /* Inner rounding */
        transition: opacity 0.5s ease;
    }

    /* Slight cinematic overlay for depth */
    .map-overlay {
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.3) 100%);
        pointer-events: none;
    }

    /* --- BACKGROUND DECORATION --- */
    .cl-glow-left {
        position: absolute;
        bottom: -10%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    .cl-glow-right {
        position: absolute;
        top: 20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.03) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 1024px) {
        .cl-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        /* .map-glass-card {
            height: 400px;
        } */
    }

    @media (max-width: 768px) {
        .contact-location {
            padding: 80px 5% 60px;
        }

        .form-glass-card {
            padding: 40px 20px;
            border-radius: 25px;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .form-group.full-width {
            grid-column: span 1;
        }

        .cl-submit-btn {
            width: 100%;
        }

        .map-glass-card {
            border-radius: 25px;
            /* height: 350px; */
        }
    }
/*** contact-info ***/

  .contact-info-section {
        position: relative;
        padding: 100px 5%;
        /* Uses the dynamic background variable */
        background: var(--bg-color); 
        display: flex;
        justify-content: center;
        overflow: hidden;
        /* Uses dynamic text color */
        color: var(--text-main); 
        transition: background 0.5s ease, color 0.5s ease;
    }

    .ci-container {
        max-width: 1200px;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .ci-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .ci-title {
        font-size: clamp(2.2rem, 4vw, 3rem);
        font-weight: 800;
        letter-spacing: -1px;
        color: var(--text-main);
    }

    /* --- GLASS CARD --- */
    .ci-glass-card {
        /* Uses dynamic glass background and border */
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 35px;
        padding: 50px;
        backdrop-filter: blur(25px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
        gap: 20px;
        position: relative;
        transition: background 0.5s ease, border 0.5s ease;
    }

    /* Fixed Brand Accent (Doesn't change with theme) */
    .ci-glass-card::after {
        content: '';
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 2px;
        background: var(--gradient);
        border-radius: 0 0 10px 10px;
    }

    .ci-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        flex: 1;
        padding: 10px;
    }

    .ci-icon {
        width: 60px;
        height: 60px;
        /* Subtle orange glow that works on both themes */
        background: rgba(255, 123, 0, 0.1);
        border: 1px solid rgba(255, 123, 0, 0.2);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-orange);
        font-size: 1.5rem;
        transition: 0.3s;
    }

    .ci-item:hover .ci-icon {
        background: var(--gradient);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    }

    .ci-label {
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        /* Brand color stays orange to keep identity */
        color: var(--primary-orange); 
    }

    .ci-link, .ci-text {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        text-decoration: none;
        line-height: 1.4;
        transition: color 0.3s ease;
        font-style: normal;
    }

    .ci-link:hover {
        opacity: 0.7;
    }

    /* --- DYNAMIC DIVIDER --- */
    .ci-divider {
        width: 1px;
        /* Uses the dynamic border variable for the gradient */
        background: linear-gradient(to bottom, transparent, var(--card-border), transparent);
    }

    .ci-bg-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, transparent 70%);
        z-index: 1;
        pointer-events: none;
    }

    /* --- RESPONSIVE (Switch to Vertical) --- */
    @media (max-width: 992px) {
        .ci-glass-card {
            flex-direction: column;
            align-items: center;
            padding: 40px 30px;
            gap: 40px;
        }

        .ci-divider {
            width: 80%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--card-border), transparent);
        }

        .ci-item {
            width: 100%;
        }
    }