/* ═══════════════════════════════════════════
       DESIGN TOKENS — identical to homepage
    ═══════════════════════════════════════════ */
:root {
    --navy: #0a1628;
    --blue: #1a3a6b;
    --accent: #2563eb;
    --sky: #e8f0fe;
    --gold: #c9a84c;
    --white: #ffffff;
    --gray: #64748b;
    --light: #f8faff;
    --blue-main: #1a56db;
    --blue-light: #e8f0fe;
}

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

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

body {
    font-family: "DM Sans", sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
    padding-top: 55px;
}

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

/* ═══════════════════════════════════════════
       NAVBAR — same as homepage
    ═══════════════════════════════════════════ */
.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);
}
.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;
    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;
}

/* ── MEGA DROPDOWN ── */
.mega-dropdown {
    position: static;
}

.mega-chevron {
    font-size: 0.65rem;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
    vertical-align: middle;
}
.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: 0.6rem !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);
}

/* ═══════════════════════════════════════════
       BREADCRUMB
    ═══════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--light);
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
}
.breadcrumb {
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.breadcrumb-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-item a:hover {
    color: var(--navy);
}
.breadcrumb-item.active {
    color: var(--gray);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(10, 22, 40, 0.25);
}

/* ═══════════════════════════════════════════
       PAGE HERO
    ═══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.03);
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--light);
    clip-path: polygon(0 100%, 100% 30%, 100% 100%);
}
.page-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.page-hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}
.page-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-hero-title em {
    color: var(--gold);
    font-style: italic;
}
.page-hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
    font-weight: 300;
}
.page-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.8rem;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 2px;
    letter-spacing: 0.04em;
}
.page-badge i {
    color: var(--gold);
    font-size: 0.75rem;
}
.page-badge.badge-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}
.page-badge.badge-gold i {
    color: var(--navy);
}

/* ═══════════════════════════════════════════
       MAIN LAYOUT — Sidebar + Content
    ═══════════════════════════════════════════ */
.detail-wrapper {
    background: var(--light);
    padding: 3rem 0 5rem;
}

/* ── SIDEBAR ── */
.detail-sidebar {
    position: sticky;
    top: 75px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1.2rem;
}
.sidebar-card-header {
    background: var(--navy);
    padding: 1rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sidebar-card-header i {
    color: var(--gold);
    font-size: 0.8rem;
}
.sidebar-nav {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
    color: var(--accent);
    border-left-color: var(--accent);
    background: var(--sky);
}
.sidebar-nav li a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--accent), var(--blue));
    border-radius: 6px;
    padding: 1.5rem;
    color: var(--white);
}
.sidebar-cta-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}
.sidebar-cta-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.sidebar-cta-title em {
    color: var(--gold);
    font-style: italic;
}
.sidebar-cta p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.btn-wa-sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: var(--white);
    border-radius: 2px;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    justify-content: center;
}
.btn-wa-sm:hover {
    background: #1ebe5b;
    color: var(--white);
    transform: translateY(-1px);
}

.sidebar-info-list {
    list-style: none;
    padding: 0.75rem 1.2rem;
    margin: 0;
}
.sidebar-info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    font-size: 0.82rem;
}
.sidebar-info-list li:last-child {
    border-bottom: none;
}
.sidebar-info-label {
    color: var(--gray);
    font-weight: 400;
}
.sidebar-info-value {
    color: var(--navy);
    font-weight: 600;
    text-align: right;
}
.sidebar-info-value.text-gold {
    color: var(--gold);
}
.sidebar-info-value.text-green {
    color: #16a34a;
}

/* ═══════════════════════════════════════════
       CONTENT AREA
    ═══════════════════════════════════════════ */
/* Section title inside content */
.content-section {
    margin-bottom: 2.5rem;
}
.content-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sky);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.content-section-title i {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: var(--sky);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.content-body {
    font-size: 0.93rem;
    color: #374151;
    line-height: 1.8;
}
.content-body p {
    margin-bottom: 1rem;
}
.content-body p:last-child {
    margin-bottom: 0;
}

/* Requirements list */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    font-size: 0.88rem;
    color: var(--navy);
}
.req-list li:last-child {
    border-bottom: none;
}
.req-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.75rem;
    margin-top: 0.1rem;
}
.req-icon.req-optional {
    background: #fef3c7;
    color: #d97706;
}
.req-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.1rem 0.4rem;
    border-radius: 2px;
    margin-left: 0.4rem;
    vertical-align: middle;
}
.req-tag.required {
    background: #dbeafe;
    color: var(--accent);
}
.req-tag.optional {
    background: #fef3c7;
    color: #d97706;
}
.req-tag.copy {
    background: #f3f4f6;
    color: var(--gray);
}

/* Process steps */
.process-steps {
    position: relative;
}
.step-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
}
.step-item:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.step-num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.step-body p {
    font-size: 0.83rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}
.step-duration {
    margin-left: auto;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
}
.step-duration span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: var(--sky);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    white-space: nowrap;
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 6px;
    margin-bottom: 0.6rem;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover {
    background: var(--sky);
}
.faq-question.open {
    background: var(--sky);
    color: var(--accent);
}
.faq-chevron {
    font-size: 0.7rem;
    color: var(--gray);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-question.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-answer {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.75;
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.2s;
}
.faq-answer.open {
    max-height: 300px;
    padding: 0.75rem 1.2rem 1.2rem;
}

/* Highlight box */
.info-box {
    border-radius: 6px;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}
.info-box.info-blue {
    background: var(--sky);
    border-left: 3px solid var(--accent);
}
.info-box.info-gold {
    background: #fefce8;
    border-left: 3px solid var(--gold);
}
.info-box.info-green {
    background: #f0fdf4;
    border-left: 3px solid #16a34a;
}
.info-box-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.info-box.info-blue .info-box-icon {
    color: var(--accent);
}
.info-box.info-gold .info-box-icon {
    color: var(--gold);
}
.info-box.info-green .info-box-icon {
    color: #16a34a;
}
.info-box p {
    font-size: 0.86rem;
    color: var(--navy);
    line-height: 1.7;
    margin: 0;
}
.info-box strong {
    font-weight: 700;
}

/* Fee table */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.87rem;
}
.fee-table thead th {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    text-align: left;
}
.fee-table tbody tr {
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    transition: background 0.15s;
}
.fee-table tbody tr:hover {
    background: var(--sky);
}
.fee-table tbody tr:last-child {
    border-bottom: none;
}
.fee-table tbody td {
    padding: 0.8rem 1rem;
    color: var(--navy);
}
.fee-table tbody td:last-child {
    font-weight: 700;
    color: var(--accent);
    text-align: right;
}
.fee-table tfoot td {
    padding: 0.8rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--sky);
    color: var(--navy);
    border-top: 2px solid rgba(37, 99, 235, 0.15);
}
.fee-table tfoot td:last-child {
    color: var(--accent);
    text-align: right;
}

/* Related services */
.related-card {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.07);
    border-radius: 6px;
    padding: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.25s ease;
    height: 100%;
}
.related-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
}
.related-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 4px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transition: all 0.25s;
}
.related-card:hover .related-icon {
    background: var(--accent);
    color: var(--white);
}
.related-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.related-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.5;
}
.related-arrow {
    margin-left: auto;
    color: var(--gray);
    font-size: 0.8rem;
    flex-shrink: 0;
    align-self: center;
    transition: all 0.2s;
}
.related-card:hover .related-arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* ═══════════════════════════════════════════
       FOOTER — same as homepage
    ═══════════════════════════════════════════ */
footer {
    background: #050e1c;
    padding: 3.5rem 0 1.5rem;
}
.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(24px);
    transition:
        opacity 0.5s ease,
        transform 0.5s 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;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .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-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-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%;
    }
    .detail-sidebar {
        position: static;
        margin-top: 2.5rem;
    }
    .page-hero {
        padding: 3rem 0 4rem;
    }
}

@media (max-width: 767px) {
    .step-duration {
        display: none;
    }
    .fee-table thead th:nth-child(2),
    .fee-table tbody td:nth-child(2) {
        display: none;
    }
}

.sub-card {
    background: #fff;
     border: 1.5px solid var(--blue-light);
    border-top: 3px solid var(--blue-main);
    transition: border-color .18s, box-shadow .18s, transform .15s;
    border-radius: 10px;
    padding: 20px 18px 16px;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sub-card:hover {
   border-color: var(--blue-main);
    box-shadow: 0 6px 20px rgba(26,86,219,.13);
    transform: translateY(-2px);  
}
.sub-card .card-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue-main);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    transition: background .18s, color .18s;
}

.sub-card .card-title    { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.sub-card .card-desc     { font-size: 12px; color: var(--gray); line-height: 1.5;
                           display: -webkit-box; -webkit-line-clamp: 2;
                           -webkit-box-orient: vertical; overflow: hidden; }
.sub-card .card-footer   { border-top: 1px solid #eef1f6; padding-top: 10px; margin-top: auto; }
.sub-card .card-badge    { font-size: 10.5px; font-weight: 600;
                           background: var(--blue-light); color: var(--blue-main);
                           border-radius: 4px; padding: 2px 7px; }
.sub-card .card-arrow    { color: #b0bec5; transition: color .18s; }


.sub-card:hover .card-icon  { background: var(--blue-main); color: #fff; }
.sub-card:hover .card-badge       { background: var(--blue-light); color: var(--blue-main); }
.sub-card .card-arrow       {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--blue-light); color: var(--blue-main);
    display: flex; align-items: center; justify-content: center;
}
.sub-card:hover .card-arrow { background: var(--blue-main); color: #fff; }

.info-note {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fffdf4; border: 1px solid #f0e0a0;
    border-radius: 8px; padding: 12px 14px;
    font-size: 12.5px; color: #7a6020; line-height: 1.5;
}
.info-note i { font-size: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }