:root {
    /* Your custom color palette */
    --pma-primary: #4b7ed1;
    /* Soft vibrant blue */
    --pma-navy: #020407;
    /* Deep dark night */

    /* Accent & Support colors */
    --pma-secondary: #ffb800;
    /* Maintained gold for highlights */
    --pma-light-bg: #f8fafc;
    --pma-text: #475569;
    --pma-border: #e2e8f0;
}

body {
    background-color: var(--pma-light-bg);
}

/* Fluid Typography for smooth scaling */
.fluid-title-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.fluid-title-lg {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* =========================================
                                       1. CINEMATIC TALL HERO
                                       ========================================= */
.modern-contact-hero {
    position: relative;
    margin-top: 140px;
    /* Adjust based on your header height */
    padding: clamp(100px, 15vw, 160px) 0 clamp(160px, 20vw, 220px);
    overflow: hidden;
    background-color: var(--pma-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient using your specific colors */
    background: radial-gradient(
        circle at top,
        rgba(75, 126, 209, 0.25) 0%,
        rgba(2, 4, 7, 1) 85%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    padding: 0 15px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reusable Breadcrumb Style */
.premium-breadcrumb-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--pma-primary);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--pma-secondary);
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 800;
}

.breadcrumb-item.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffb800 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

/* =========================================
                                       2. FLOATING OVERLAP CARDS
                                       ========================================= */
.floating-cards-container {
    position: relative;
    z-index: 10;
    margin-top: clamp(-100px, -15vw, -140px);
    /* Responsive pull-up */
    margin-bottom: clamp(60px, 8vw, 80px);
    padding: 0 15px;
}

.contact-card-premium {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(30px, 4vw, 45px) clamp(20px, 3vw, 35px);
    height: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(2, 4, 7, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(75, 126, 209, 0.08) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: height 0.5s ease;
    z-index: 0;
}

.contact-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(75, 126, 209, 0.15);
    border-color: rgba(75, 126, 209, 0.3);
}

.contact-card-premium:hover::before {
    height: 100%;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(75, 126, 209, 0.1);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--pma-primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    transform: rotate(-5deg);
}

.contact-card-premium:hover .card-icon-wrapper {
    background: var(--pma-primary);
    color: #fff;
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(75, 126, 209, 0.3);
}

.card-title {
    font-size: clamp(20px, 2vw, 22px);
    font-weight: 800;
    color: var(--pma-navy);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card-text {
    font-size: 15px;
    color: var(--pma-text);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.card-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pma-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Pushes button to bottom if text lengths vary */
}

.card-action-link i {
    color: var(--pma-primary);
    transition: transform 0.3s ease;
}

.contact-card-premium:hover .card-action-link {
    color: var(--pma-primary);
}

.contact-card-premium:hover .card-action-link i {
    transform: translateX(5px);
}

/* =========================================
                                       3. MAP & SUPPORT SECTION
                                       ========================================= */
.map-section {
    padding: clamp(40px, 6vw, 80px) 0;
    background-color: var(--pma-light-bg);
}

.premium-map-wrapper {
    background: #ffffff;
    border-radius: 32px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(2, 4, 7, 0.06);
    position: relative;
}

.map-frame {
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: clamp(350px, 50vw, 550px);
    position: relative;
    background: #e9ecef;
    /* Placeholder while loading */
}

/* Floating Glass Info Box on the Map */
.map-glass-box {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: clamp(20px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: clamp(20px, 3vw, 30px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 350px;
    z-index: 10;
}

.map-glass-box h4 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 800;
    color: var(--pma-navy);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.map-glass-box p {
    font-size: 15px;
    color: var(--pma-text);
    margin-bottom: 0;
    line-height: 1.6;
}

.map-glass-box .pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--pma-primary);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 0 rgba(75, 126, 209, 0.7);
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(75, 126, 209, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(75, 126, 209, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(75, 126, 209, 0);
    }
}

/* =========================================
                                       4. RESPONSIVE QUERIES
                                       ========================================= */
@media (max-width: 991px) {
    .modern-contact-hero {
        margin-top: 100px;
        /* Adjust for mobile header */
    }

    .map-glass-box {
        right: 20px;
        max-width: none;
        /* Let it stretch on smaller screens */
    }
}

@media (max-width: 768px) {
    .modern-contact-hero {
        margin-top: 80px;
    }

    .premium-breadcrumb-wrapper {
        margin-bottom: 20px;
    }

    .floating-cards-container .col-lg-4 {
        display: flex;
        /* Ensures cards don't shrink oddly */
    }

    .contact-card-premium {
        width: 100%;
    }
}
        :root {
            /* Your custom color palette */
            --pma-primary: #4b7ed1;
            /* Soft vibrant blue */
            --pma-navy: #020407;
            /* Deep dark night */

            /* Accent & Support colors */
            --pma-secondary: #ffb800;
            /* Maintained gold for highlights */
            --pma-light-bg: #f8fafc;
            --pma-text: #475569;
            --pma-border: #e2e8f0;
        }

        body {
            background-color: var(--pma-light-bg);
        }

        /* Fluid Typography for smooth scaling */
        .fluid-title-xl {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1.5px;
        }

        .fluid-title-lg {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        /* =========================================
                           1. CINEMATIC TALL HERO
                           ========================================= */
        .modern-contact-hero {
            position: relative;
            margin-top: 140px;
            /* Adjust based on your header height */
            padding: clamp(100px, 15vw, 160px) 0 clamp(160px, 20vw, 220px);
            overflow: hidden;
            background-color: var(--pma-navy);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes cinematicZoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.15);
            }
        }

        

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Gradient using your specific colors */
            background: radial-gradient(circle at top,
                    rgba(75, 126, 209, 0.25) 0%,
                    rgba(2, 4, 7, 1) 85%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
            padding: 0 15px;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Reusable Breadcrumb Style */
        .premium-breadcrumb-wrapper {
            display: inline-flex;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 3px solid var(--pma-primary);
            padding: 8px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            margin: 0;
            padding: 0;
            list-style: none;
            gap: 8px;
        }

        .breadcrumb-item a,
        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--pma-secondary);
        }

        .breadcrumb-item.active {
            color: #fff;
            font-weight: 800;
        }

        .breadcrumb-item.separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 12px;
        }

        .hero-title {
            color: #ffffff;
            margin-bottom: 20px;
        }

        .text-gradient-gold {
            background: linear-gradient(135deg, #ffb800 0%, #ffa000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            max-width: 650px;
            margin: 0 auto;
        }

        /* =========================================
                           2. FLOATING OVERLAP CARDS
                           ========================================= */
        .floating-cards-container {
            position: relative;
            z-index: 10;
            margin-top: clamp(-100px, -15vw, -140px);
            margin-bottom: clamp(60px, 8vw, 80px);
            padding: 0 15px;
        }

        .contact-card-premium {
            background: #ffffff;
            border-radius: 24px;
            padding: clamp(30px, 4vw, 45px) clamp(20px, 3vw, 35px);
            height: 100%;
            text-align: center;
            box-shadow: 0 20px 40px rgba(2, 4, 7, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-card-premium::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(180deg, rgba(75, 126, 209, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
            transition: height 0.5s ease;
            z-index: 0;
        }

        .contact-card-premium:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 50px rgba(75, 126, 209, 0.15);
            border-color: rgba(75, 126, 209, 0.3);
        }

        .contact-card-premium:hover::before {
            height: 100%;
        }

        .card-icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(75, 126, 209, 0.1);
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--pma-primary);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: all 0.5s ease;
            transform: rotate(-5deg);
        }

        .contact-card-premium:hover .card-icon-wrapper {
            background: var(--pma-primary);
            color: #fff;
            transform: rotate(0deg) scale(1.1);
            box-shadow: 0 15px 30px rgba(75, 126, 209, 0.3);
        }

        .card-title {
            font-size: clamp(20px, 2vw, 22px);
            font-weight: 800;
            color: var(--pma-navy);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .card-text {
            font-size: 15px;
            color: var(--pma-text);
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            flex-grow: 1;
        }

        .card-action-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 700;
            color: var(--pma-navy);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .card-action-link i {
            color: var(--pma-primary);
            transition: transform 0.3s ease;
        }

        .contact-card-premium:hover .card-action-link {
            color: var(--pma-primary);
        }

        .contact-card-premium:hover .card-action-link i {
            transform: translateX(5px);
        }

        /* =========================================
                           3. PREMIUM CONTACT FORM
                           ========================================= */
        .premium-form-section {
            padding: clamp(40px, 6vw, 80px) 0;
            background-color: var(--pma-light-bg);
        }

        .premium-form-wrapper {
            background: #fff;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(2, 4, 7, 0.08);
            display: flex;
            flex-wrap: wrap;
        }

        .form-info-side {
            background: var(--pma-navy);
            padding: clamp(40px, 5vw, 60px);
            color: #fff;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        /* Abstract graphic on the blue side */
        .form-info-side::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(75, 126, 209, 0.4) 0%, rgba(75, 126, 209, 0) 70%);
            z-index: 0;
        }

        .form-info-side>* {
            position: relative;
            z-index: 1;
        }

        .form-info-title {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .form-info-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .direct-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .direct-contact-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pma-secondary);
            font-size: 18px;
        }

        .direct-contact-text h5 {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 5px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .direct-contact-text p {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .form-input-side {
            padding: clamp(40px, 5vw, 60px);
            background: #fff;
        }

        .custom-form-group {
            margin-bottom: 25px;
        }

        .custom-form-label {
            font-weight: 600;
            color: var(--pma-navy);
            margin-bottom: 8px;
            font-size: 14px;
            display: block;
        }

        .custom-form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--pma-border);
            border-radius: 12px;
            font-size: 15px;
            color: var(--pma-text);
            background-color: var(--pma-light-bg);
            transition: all 0.3s ease;
        }

        .custom-form-control:focus {
            outline: none;
            border-color: var(--pma-primary);
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(75, 126, 209, 0.1);
        }

        textarea.custom-form-control {
            resize: vertical;
            min-height: 140px;
        }

        .premium-submit-btn {
            background: var(--pma-primary);
            color: #fff;
            border: none;
            padding: 16px 35px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(75, 126, 209, 0.2);
        }

        .premium-submit-btn:hover {
            background: var(--pma-navy);
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(2, 4, 7, 0.2);
        }

        .premium-submit-btn i {
            color: var(--pma-secondary);
            transition: transform 0.3s ease;
        }

        .premium-submit-btn:hover i {
            transform: translateX(5px) rotate(-45deg);
        }

        /* =========================================
                           4. MAP & SUPPORT SECTION
                           ========================================= */
        .map-section {
            padding: clamp(40px, 6vw, 80px) 0;
            background-color: var(--pma-light-bg);
        }

        .premium-map-wrapper {
            background: #ffffff;
            border-radius: 32px;
            padding: 15px;
            box-shadow: 0 20px 60px rgba(2, 4, 7, 0.06);
            position: relative;
        }

        .map-frame {
            border-radius: 24px;
            overflow: hidden;
            width: 100%;
            height: clamp(350px, 50vw, 550px);
            position: relative;
            background: #e9ecef;
        }

        .map-glass-box {
            position: absolute;
            bottom: clamp(20px, 4vw, 40px);
            left: clamp(20px, 4vw, 40px);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: clamp(20px, 3vw, 30px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.8);
            max-width: 350px;
            z-index: 10;
        }

        .map-glass-box h4 {
            font-size: clamp(18px, 2vw, 20px);
            font-weight: 800;
            color: var(--pma-navy);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .map-glass-box p {
            font-size: 15px;
            color: var(--pma-text);
            margin-bottom: 0;
            line-height: 1.6;
        }

        .map-glass-box .pulse-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--pma-primary);
            border-radius: 50%;
            margin-right: 12px;
            box-shadow: 0 0 0 0 rgba(75, 126, 209, 0.7);
            animation: pulse-dot-anim 2s infinite;
        }

        @keyframes pulse-dot-anim {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(75, 126, 209, 0.7);
            }

            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(75, 126, 209, 0);
            }

            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(75, 126, 209, 0);
            }
        }

        /* =========================================
                           5. RESPONSIVE QUERIES
                           ========================================= */
        @media (max-width: 991px) {
            .modern-contact-hero {
                margin-top: 100px;
            }

            .map-glass-box {
                right: 20px;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .modern-contact-hero {
                margin-top: 80px;
            }

            .premium-breadcrumb-wrapper {
                margin-bottom: 20px;
            }

            .floating-cards-container .col-lg-4 {
                display: flex;
            }

            .contact-card-premium {
                width: 100%;
            }
        }
