/* =========================================================
   NEXLAND — Navy & Gold Theme (inspired by Zehafa Developers)
   ========================================================= */

:root {
    --primary-color: #0B1830; /* deep navy — main brand color */
    --primary-light: #16284d; /* lighter navy for gradients/panels */
    --secondary-color: #C99A2E; /* antique gold — main accent */
    --gold-light: #E8C468; /* bright gold — highlights, hover */
    --gold-deep: #97701E; /* deep gold — borders, shadows */
    --light-color: #FAF6EC; /* warm ivory background */
    --dark-color: #000000;
    --text-color: #333333;
    --text-muted: #6b7280;
    --border-color: #0000001A;
    --max-width: 1280px;
    --border-radius: 6px;
    --gold-gradient: linear-gradient(135deg, #E8C468 0%, #C99A2E 50%, #97701E 100%);
    --navy-gradient: linear-gradient(135deg, #16284d 0%, #0B1830 100%);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Scroll-reveal system ---------- */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

    .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Forum', serif;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.3rem;
}

h6 {
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

    a:hover {
        color: var(--secondary-color);
    }

.container-custom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ---------- Buttons ---------- */
.btn-custom {
    position: relative;
    overflow: hidden;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(151, 112, 30, 0.3);
}

    .btn-custom::before {
        content: "";
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: rgba(255, 255, 255, 0.35);
        transform: skewX(-20deg);
        transition: left 0.6s ease;
        pointer-events: none;
    }

    .btn-custom:hover::before {
        left: 130%;
    }

    .btn-custom:hover {
        background: var(--navy-gradient);
        color: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(11, 24, 48, 0.35);
    }

    .btn-custom:active {
        transform: translateY(-1px);
    }

    .btn-custom a,
    .btn-custom:hover a {
        color: inherit;
    }

    .btn-custom i {
        font-size: 16px;
        position: relative;
    }

    .btn-custom span {
        position: relative;
    }

.btn-secondary {
    background: var(--navy-gradient);
    color: var(--light-color);
}

    .btn-secondary:hover {
        background: var(--gold-gradient);
        color: var(--primary-color);
    }

/* ---------- Header ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: none;
    border-bottom: 1px solid rgba(201, 154, 46, 0.2);
    transition: all 0.35s var(--ease);
}

    header.is-scrolled {
        background-color: rgba(255, 255, 255, 0.97);
        box-shadow: 0 8px 30px rgba(11, 24, 48, 0.1);
        border-bottom-color: rgba(201, 154, 46, 0.3);
    }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: padding 0.35s var(--ease);
}

header.is-scrolled .header-inner {
    padding: 10px 0;
}

.logo {
    max-width: 150px;
}

    .logo img {
        width: 100%;
        height: auto;
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

    .nav-menu a {
        color: var(--primary-color);
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 4px;
        font-size: 15px;
        position: relative;
        transition: color 0.25s ease;
    }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 4px;
            height: 2px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s var(--ease);
        }

        .nav-menu a:hover {
            color: var(--gold-deep);
        }

            .nav-menu a:hover::after {
                transform: scaleX(1);
            }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    margin-top: 50px;
    display: flex;
    align-items: end;
    background-image: url('https://sales.aeontrisl.com/wp-content/uploads/2025/06/emaar-the-oasis-villas-for-sale-1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
    --parallax: 0px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190deg, #0B183000 25%, #0B1830F2 95%);
    z-index: 0;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: heroFloat 9s ease-in-out infinite;
}

.hero-section::before {
    width: 380px;
    height: 380px;
    top: -120px;
    right: -80px;
    background: var(--gold-gradient);
    opacity: 0.35;
    transform: translateY(calc(var(--parallax) * -1));
}

.hero-section::after {
    width: 300px;
    height: 300px;
    bottom: 140px;
    left: -100px;
    background: var(--secondary-color);
    opacity: 0.25;
    animation-delay: 2.5s;
    transform: translateY(var(--parallax));
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-24px) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after {
        animation: none;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 40px 0;
}

.hero-title {
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 30px;
    max-width: 800px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    animation: none;
}

.price-boxes {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 154, 46, 0.4);
}

.price-box {
    padding: 25px;
    color: var(--text-color);
    flex: 1;
    min-width: 240px;
    background-color: rgba(255, 255, 255, 0.92);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.price-boxes:hover .price-box {
    transform: translateY(-4px);
}

.price-box h2 {
    margin-bottom: 5px;
    font-family: 'DM Sans';
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-box h3 {
    color: var(--text-color);
    font-size: 1.05rem;
    margin-bottom: 0;
    font-family: 'DM Sans';
    font-weight: 500;
}

/* ---------- Section Titles (Zehafa badge-bar style) ---------- */
.section-title {
    color: var(--gold-light);
    text-align: left;
    padding: 7px 18px;
    background: var(--navy-gradient);
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 30px;
    font-size: 13px;
    font-family: 'DM Sans';
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

    .section-title.text-black,
    .section-title.text-white {
        color: var(--gold-light) !important;
    }

.section-subtitle {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 500;
}

    .section-subtitle.text-white {
        color: #fff;
    }

/* ---------- About Section ---------- */
.about-section {
    padding: 100px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: var(--light-color);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(201, 154, 46, 0.2);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 6px;
    background: #fff;
}

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        display: block;
    }

.Community {
    background: #fff;
    border-left: 3px solid var(--secondary-color);
    border-radius: 0 8px 8px 0;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(11, 24, 48, 0.05);
}

/* ---------- Projects Section ---------- */
.projects-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(11, 24, 48, 0.08);
    border: 1px solid rgba(201, 154, 46, 0.15);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s ease;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(11, 24, 48, 0.2), 0 0 0 1px var(--secondary-color);
        border-color: var(--secondary-color);
    }

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

    .project-image::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background: var(--gold-gradient);
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 25px;
}

    .project-content h4 a {
        color: var(--primary-color);
        font-family: 'Forum', serif;
    }

.project-features {
    list-style: none;
    margin-bottom: 20px;
}

    .project-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 14.5px;
    }

    .project-features i {
        color: var(--secondary-color);
        background: rgba(201, 154, 46, 0.12);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-shrink: 0;
    }

/* ---------- Amenities Section ---------- */
.amenities-section {
    padding: 100px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

    .amenities-grid > *:nth-last-child(1) {
        grid-column: span 2;
    }

.amenity-card {
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(11, 24, 48, 0.06);
    border: 1px solid rgba(201, 154, 46, 0.15);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}

.Assistance {
    background: var(--navy-gradient);
    color: #fff;
    text-align: left;
    border-radius: var(--border-radius);
    border: 1px solid var(--secondary-color);
}

    .Assistance h3 {
        color: #fff;
    }

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(11, 24, 48, 0.15);
    background: var(--navy-gradient);
    border-color: var(--secondary-color);
}

    .amenity-card:hover h4 {
        color: #fff;
    }

    .amenity-card:hover .amenity-icon {
        background-color: var(--primary-color);
        box-shadow: 0 0 0 3px var(--secondary-color);
    }

.amenity-icon {
    width: 56px;
    height: 56px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 3px var(--secondary-color), 0 0 0 6px rgba(201, 154, 46, 0.15);
    transition: all 0.35s var(--ease);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.08) rotate(-4deg);
}

.amenity-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.amenity-card h4 {
    font-size: 15px;
    font-family: 'DM Sans';
    font-weight: 600;
    transition: color 0.3s ease;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.swiper {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    background-color: var(--gold-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 22px;
        font-weight: 700;
    }

/* ---------- Payment Plan Section ---------- */
.payment-section {
    padding: 100px 0;
}

.payment-step {
    flex: 1;
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(201, 154, 46, 0.25);
    box-shadow: 0 3px 10px rgba(11, 24, 48, 0.04);
}

.step-percentage {
    font-size: 2.4rem;
    min-width: 60px;
    text-align: center;
}

.payment-step div h5 {
    color: var(--primary-color);
    font-weight: 700;
}

/* ---------- Location Section ---------- */
.location-section {
    background: var(--navy-gradient);
    color: #fff;
}

    .location-section .section-subtitle,
    .location-section p {
        color: #fff;
    }

    .location-section .section-title {
        background: var(--gold-gradient);
        color: var(--primary-color);
    }

/* ---------- Contact Section ---------- */
.contact-section {
    padding: 100px 0;
    background: var(--navy-gradient);
    color: white;
}

    .contact-section .section-title {
        background: var(--gold-gradient);
        color: var(--primary-color);
    }

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--text-color);
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #D8CBA8;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.15);
    }

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

/* ---------- Footer ---------- */
footer {
    color: #fff;
    padding-top: 60px;
    background: var(--primary-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

    .footer-column p {
        color: rgba(255, 255, 255, 0.75);
    }

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-column div img {
    width: 150px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        color: white;
        border: 1px solid rgba(201, 154, 46, 0.4);
    }

        .social-links a:hover {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            border-color: var(--secondary-color);
        }

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    background: var(--primary-color);
    padding: 15px 25px !important;
    margin-bottom: 15px;
    border-radius: 15px;
    border: 1px solid rgba(201, 154, 46, 0.25);
}

/* ---------- Animations ---------- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.slideInUp {
    animation-name: slideInUp;
}

.fadeIn {
    animation-name: fadeIn;
}

.delay-50 {
    animation-delay: 0.05s;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-150 {
    animation-delay: 0.15s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* ---------- Custom styles from original page ---------- */
.top-whatsapp span.elementor-button-icon {
    background-color: var(--light-color);
    padding: 10px;
    border-radius: 6px;
}

.location-min sup {
    font-size: 21px;
    vertical-align: super;
}

.register-form {
    display: flex;
}

.contactform textarea {
    max-height: 120px;
    padding: 12px 15px;
    border-radius: 5px;
    border: solid 1px #D8CBA8 !important;
}

.contactform input[type="email"], .contactform input[type="tel"], .contactform input[type="text"] {
    border-radius: 5px;
    height: 52px;
    padding-left: 15px;
    width: 100%;
    border: solid 1px #D8CBA8 !important;
}

.contactform input:focus, .contactform textarea:focus {
    outline: none;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(201, 154, 46, 0.15);
}

.pum-container {
    padding: 0px !important;
}

.rform-info {
    width: 32%;
    background: var(--navy-gradient);
    color: #fff;
    padding: 35px 25px 30px 25px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--secondary-color);
    border-right: none;
}

    .rform-info h6 {
        color: var(--gold-light);
    }

    .rform-info i {
        color: var(--secondary-color);
        margin-right: 8px;
    }

.rfrom {
    width: 68%;
    padding: 25px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.br-sup sup {
    font-size: 20px;
    vertical-align: super;
}

.page-header h1 {
    font-family: "Forum";
}

.popmake-content .wpcf7 form.sent .wpcf7-response-output {
    font-weight: 500;
}

.Community h5 {
    font-size: 22px;
    font-family: 'DM Sans';
    color: var(--primary-color);
}

.Community p {
    font-size: 14px;
    font-family: 'DM Sans';
}

.Assistance .card-body {
    padding: 30px;
}

.payment-step div p {
    font-family: 'DM Sans';
    font-size: 14px;
}

.payment-step div h5 {
    font-size: 22px;
    font-family: 'DM Sans';
    font-weight: 500;
}

.rform-info ul {
    margin: 0;
    padding: 0;
}

    .rform-info ul li {
        margin-bottom: 15px;
        line-height: normal;
        list-style: none;
        padding: 0;
    }

/* =========================================================
   RESPONSIVE STYLES
   ========================================================= */
@media (max-width: 1200px) {
    .amenities-grid > *:nth-last-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu a {
            display: block;
            width: 100%;
        }

    .mobile-menu-btn {
        display: block;
    }

    .price-boxes {
        flex-direction: column;
    }

    .rform-info {
        width: 100%;
        border-right: 1px solid var(--secondary-color);
        border-radius: 4px 4px 0 0;
    }

    .register-form {
        flex-direction: column;
    }

    .rfrom {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-padding,
    .about-section,
    .projects-section,
    .amenities-section,
    .gallery-section,
    .payment-section,
    .contact-section {
        padding: 60px 0;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

        .amenities-grid > *:nth-last-child(1) {
            grid-column: span 2;
        }

    .swiper {
        height: 320px;
    }

    .hero-title {
        padding-left: 14px;
        color: #000
    }
    .header-inner{
             padding: 0px 0;
    }

    .about-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .amenities-grid,
    .amenities-grid > *:nth-last-child(1) {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }

    .payment-step {
        flex-direction: column;
        text-align: center;
    }

    .price-box {
        min-width: 100%;
    }

    .btn-custom {
        width: 100%;
    }

    .swiper {
        height: 240px;
    }

    .logo {
        max-width: 130px;
    }
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gold-gradient);
    color: var(--primary-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(11, 24, 48, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
    z-index: 900;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--navy-gradient);
        color: var(--gold-light);
        transform: translateY(-3px);
    }

@media (max-width: 480px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 28px;
    color: #000;
}

/* Desktop */
@media (min-width:992px) {

    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 25px;
    }
}

/* Mobile */
@media (max-width:991px) {

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .nav-bar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .nav-menu {
        list-style: none;
        margin: 0;
        padding: 20px;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        box-shadow: 0 15px 30px rgba(0,0,0,.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
        transition: .35s ease;
    }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .nav-menu li {
            width: 100%;
            text-align: center;
        }

            .nav-menu li:last-child {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
}
