:root {
    --navy: #0a1628;
    --blue: #1a3a6b;
    --accent: #2563eb;
    --sky: #e8f0fe;
    --gold: #c9a84c;
    --white: #ffffff;
    --gray: #64748b;
    --light: #f8faff;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 55px;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    transition: box-shadow 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow: 0 2px 20px rgba(10, 22, 40, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(10, 22, 40, 0.12);
    border-bottom-color: rgba(10, 22, 40, 0.1);
}

/* Offset body agar konten tidak tertutup navbar fixed */
body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    padding-top: 55px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 30px;
    width: auto;
    /* Scale the logo visually to make it larger without affecting the navbar's layout height */
    transform: scale(1.2);
    transform-origin: center left;
    /* logo has black bg, we use mix-blend or filter to show the blue mark on white navbar */
    /* The PNG has a black bg so we use CSS filter to invert black->white area and keep blues */
    filter: brightness(0) saturate(100%) invert(18%) sepia(80%) saturate(700%)
        hue-rotate(195deg) brightness(70%);
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.nav-link {
    color: rgba(10, 22, 40, 0.75) !important;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--navy) !important;
}

.btn-nav {
    background: var(--navy);
    color: var(--white) !important;
    border-radius: 2px;
    padding: 0.45rem 1.2rem !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/hero-lombok.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* Navy colour-filter: tints the photo with --navy using multiply blend */
.hero-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy);
    mix-blend-mode: multiply;
    opacity: 0.75;
    z-index: 1;
}

/* Gradient vignette for text readability */
.hero-pattern::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.15) 60%,
        transparent 100%
    );
    z-index: 2;
}

/* diagonal slice bottom */
#hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-primary-custom {
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 2px;
    padding: 0.85rem 2rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: #e0b84e;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    padding: 0.85rem 2rem;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* hero stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* hero visual card */
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
}

.hero-card-header {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.hero-card-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-card-item:last-child {
    border-bottom: none;
}

.hero-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.badge-gold {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    margin-left: auto;
}

/* ── TRUST BAR ── */
#trust {
    background: var(--navy);
    padding: 1.2rem 0;
}

.trust-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-logo-item {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-logo-item i {
    color: rgba(255, 255, 255, 0.2);
}

/* ── SECTION COMMONS ── */
section {
    padding: 6rem 0;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
}

/* ── SERVICES ── */
#layanan {
    background: var(--light);
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 4px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 58px;
    height: 58px;
    background: var(--sky);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.4rem;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.84rem;
    color: var(--navy);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.7rem;
    color: var(--accent);
}

/* ── WHY US ── */
#keunggulan {
    background: var(--white);
}

.feature-item {
    display: flex;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.feature-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sky);
    line-height: 1;
    min-width: 50px;
    text-align: right;
}

.feature-body h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.feature-body p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

.keunggulan-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 4px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.keunggulan-visual::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
}

.keunggulan-visual::after {
    content: "";
    position: absolute;
    bottom: 60px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 30px solid rgba(201, 168, 76, 0.08);
}

.keunggulan-big-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.keunggulan-badge {
    background: var(--gold);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.keunggulan-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.keunggulan-quote em {
    color: var(--gold);
    font-style: italic;
}

/* ── PROCESS ── */
#proses {
    background: var(--light);
}

.process-line {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.process-line:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 50px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.process-dot {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.process-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.process-content p {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ── TESTIMONIALS ── */
#testimoni {
    background: var(--navy);
}

.testimoni-eyebrow {
    color: var(--gold) !important;
}

.testimoni-eyebrow::before {
    background: var(--gold) !important;
}

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

.section-desc-light {
    color: rgba(255, 255, 255, 0.55) !important;
}

.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s;
}

.testi-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.testi-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.88rem;
}

.testi-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.1rem;
}

/* ── CTA ── */
#cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--navy) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
}

.cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.cta-contact-item i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-wa:hover {
    background: #1ebe5b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ── FOOTER ── */
footer {
    background: #050e1c;
    padding: 3.5rem 0 1.5rem;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.2rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-social-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* ── BACK TO TOP ── */
.back-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    text-decoration: none;
}

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

.back-top:hover {
    background: #e0b84e;
    color: var(--navy);
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    /* General layout */
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .keunggulan-visual {
        min-height: 280px;
        margin-top: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Mobile navbar collapse panel */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.99);
        padding: 1rem;
        border-radius: 4px;
        box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
        max-height: 75vh;
        overflow-y: auto;
    }

    /* Mega dropdown — accordion style */
    .mega-menu {
        position: static !important;
        min-width: 100% !important;
        left: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 6px !important;
        margin-top: 0 !important;
        animation: none !important;
        border: 1px solid rgba(10, 22, 40, 0.08);
        display: none;
    }

    .mega-menu.mobile-open {
        display: block;
    }

    .mega-menu.mega-menu-sm {
        min-width: 100% !important;
    }

    .mega-menu-inner {
        flex-direction: column;
    }

    .mega-group {
        border-right: none !important;
        border-bottom: 1px solid rgba(10, 22, 40, 0.06);
        border-radius: 0 !important;
        padding: 0.9rem 1rem;
    }

    .mega-group:last-child {
        border-bottom: none;
    }

    .nav-link.mobile-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}

.mega-dropdown {
    position: static;
}

.mega-chevron {
    font-size: 0.65rem;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.mega-dropdown.show .mega-chevron,
.mega-dropdown:hover .mega-chevron {
    transform: rotate(180deg);
}

/* Override Bootstrap dropdown-toggle arrow */
.mega-dropdown .dropdown-toggle::after {
    display: none;
}

.mega-menu {
    border: none;
    border-radius: 6px;
    box-shadow:
        0 16px 48px rgba(10, 22, 40, 0.14),
        0 2px 8px rgba(10, 22, 40, 0.06);
    padding: 0;
    margin-top: 1rem !important;
    width: 100%;
    left: 0;
    animation: megaFadeIn 0.22s ease forwards;
    display: none;
    position: absolute;
}

.mega-menu.show {
    display: block;
}

.mega-menu.mega-menu-sm {
    width: 100%;
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.mega-menu-inner {
    display: flex;
    gap: 0;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
}

.mega-group {
    flex: 1;
    padding: 1.4rem 1.2rem;
    border-right: 1px solid rgba(10, 22, 40, 0.06);
    background: var(--white);
}

.mega-group:last-child {
    border-right: none;
}

.mega-group:first-child {
    border-radius: 6px 0 0 6px;
}

.mega-group:last-child {
    border-radius: 0 6px 6px 0;
}

.mega-group-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.9rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mega-group-label i {
    font-size: 0.75rem;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
    margin-bottom: 0.15rem;
}

.mega-item:hover {
    background: var(--sky);
}

.mega-item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 3px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 0.1rem;
    transition: all 0.2s;
}

.mega-item:hover .mega-item-icon {
    background: var(--accent);
    color: var(--white);
}

.mega-item-title {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.mega-item-desc {
    font-size: 0.76rem;
    color: var(--gray);
    margin-top: 0.1rem;
    line-height: 1.4;
}

.mega-item-cta {
    background: rgba(37, 99, 235, 0.04);
    border: 1px dashed rgba(37, 99, 235, 0.2);
}

.mega-item-cta:hover {
    background: var(--sky);
    border-color: var(--accent);
}

.mega-item-cta .mega-item-title {
    color: var(--accent);
}
