.modern-hero-section {
    position: relative;
    margin-top: 150px;
    padding: 80px 0 70px;
    overflow: hidden;
    background-color: #051525;
    min-height: 320px;
    display: flex;
    align-items: center;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 21, 37, 0.95) 0%,
        rgba(5, 21, 37, 0.7) 45%,
        rgba(5, 21, 37, 0.2) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

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

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

.breadcrumb-item a i {
    color: var(--pma-primary);
    font-size: 13px;
}

.breadcrumb-item a:hover {
    color: var(--bd-warning);
}

.breadcrumb-item.active {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.breadcrumb-item.separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.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: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .modern-hero-section {
        padding: 60px 0;
        min-height: 280px;
    }

    .hero-overlay {
        background: rgba(5, 21, 37, 0.85);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .premium-breadcrumb-wrapper {
        padding: 8px 14px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 12px;
    }
}

/* =========================================
                                                                       3. SECTION HEADERS
                                                                       ========================================= */
.facility-area {
    background-color: var(--bd-bg-primary);
    padding: 120px 0;
    position: relative;
}

.bd-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bd-secondary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: rgba(75, 126, 209, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
}

.bd-section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 50px;
}

/* =========================================
                                                                       4. PREMIUM FACILITY CARDS
                                                                       ========================================= */
.pma-card-modern {
    background: var(--bd-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--bd-border-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.pma-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.08);
    border-color: rgba(75, 126, 209, 0.2);
}

.pma-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.pma-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.pma-card-modern:hover .pma-card-img img {
    transform: scale(1.08);
}

.pma-card-body {
    padding: 40px 30px 35px;
    position: relative;
    flex-grow: 1;
    background: var(--bd-white);
}

/* Floating Gold Icon - Enhanced */
.pma-icon-badge {
    position: absolute;
    top: -35px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bd-warning) 0%, #ffa000 100%);
    color: var(--bd-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
    border: 5px solid var(--bd-white);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.pma-card-modern:hover .pma-icon-badge {
    transform: rotateY(180deg) scale(1.1);
    color: var(--bd-primary);
    /* Darkens icon on flip for contrast */
}

.pma-card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.pma-card-text {
    font-size: 16px;
    margin-bottom: 0;
}

/* =========================================
                                                                       5. ELITE TOUR CTA RIBBON
                                                                       ========================================= */
.tour-premium-cta {
    background: var(--bd-white);
    padding: 0 0 100px 0;
    /* Flows naturally from the grey section above */
    margin-top: -20px;
}

.tour-wrapper-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #051525 0%, #1a2942 100%);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 50px rgba(5, 21, 37, 0.15);
    position: relative;
    overflow: hidden;
}

/* Decorative CTA Background */
.tour-wrapper-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(75, 126, 209, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.tour-text {
    position: relative;
    z-index: 2;
}

.tour-text h3 {
    color: var(--bd-white);
    font-size: 36px;
    margin-bottom: 10px;
}

.tour-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 0;
    max-width: 500px;
}

.btn-modern-white {
    background: var(--bd-white);
    color: var(--bd-primary);
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-modern-white i {
    color: var(--bd-secondary);
}

.btn-modern-white:hover {
    background: var(--bd-warning);
    color: var(--bd-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.3);
}

.btn-modern-white:hover i {
    color: var(--bd-primary);
}

/* Responsive */
@media (max-width: 991px) {
    .bd-section-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .tour-wrapper-modern {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .tour-text p {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .modern-hero-section {
        padding: 100px 0;
        margin-top: 100px;
    }

    .pma-card-img {
        height: 220px;
    }
}
