/* =================================================================     
   Advice Lo - LUXURY GLASSMORPHISM STYLESHEET
   ================================================================= */

:root {
    /* Color Palette - Light Mode */
    --bg-primary: #fcfbf9;
    --bg-secondary: #f4f1ea;
    --surface-glass: rgba(255, 255, 255, 0.75);
    --surface-glass-border: rgba(212, 175, 55, 0.25);
    --text-primary: #1a1a1a;
    --text-secondary: #66635b;
    --gold-primary: #d4af37;
    --gold-secondary: #aa771c;
    --rose-gold: #b76e79;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #b76e79 50%, #aa771c 100%);
    --glow-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

[data-theme="dark"] {
    /* Color Palette - Dark Mode */
    --bg-primary: #0a0908;
    --bg-secondary: #141210;
    --surface-glass: rgba(26, 24, 21, 0.7);
    --surface-glass-border: rgba(212, 175, 55, 0.18);
    --text-primary: #fcfbf9;
    --text-secondary: #b3ada4;
    --gold-primary: #e5c158;
    --gold-secondary: #c9932b;
    --rose-gold: #c9808c;
    --accent-gradient: linear-gradient(135deg, #e5c158 0%, #c9808c 50%, #c9932b 100%);
    --glow-shadow: 0 10px 30px rgba(229, 193, 88, 0.2);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: default;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease;
}

/* Luxury Loader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo-wrap {
    position: relative;
    min-width: 190px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.golden-loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 118px;
    height: 118px;
    margin: -59px 0 0 -59px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-top-color: var(--gold-primary);
    animation: spinRing 1.2s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.loader-brand {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.loader-main-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    flex-shrink: 0;
}

.loader-wordmark {
    width: 150px;
    height: 40px;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: transparent;
    flex-shrink: 0;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

/* Buttons */
.primary-btn {
    background: var(--accent-gradient);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

.secondary-btn {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--surface-glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.secondary-btn:hover {
    background: var(--surface-glass);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.icon-btn {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.icon-btn:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--surface-glass-border);
    padding: 6px 0;
    box-shadow: var(--card-shadow);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
}

.nav-brand:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
    border-radius: 8px;
}

.nav-main-logo,
.nav-wordmark,
.footer-main-logo,
.footer-wordmark,
.loader-main-logo,
.loader-wordmark {
    display: block;
    background: transparent;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.nav-main-logo,
.footer-main-logo,
.loader-main-logo {
    object-fit: contain;
}

.nav-main-logo {
    width: 52px;
    height: 52px;
    object-position: center;
}

.nav-wordmark {
    width: 170px;
    height: 45px;
    object-fit: cover;
    object-position: center center;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-book-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 11px 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 30px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: floatBlob 15s infinite alternate ease-in-out;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: var(--gold-primary);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--rose-gold);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: #d4af3755;
    top: 40%;
    right: 30%;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 50px) scale(1.1); }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 25px;
    box-shadow: var(--card-shadow);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.text-link-btn {
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.text-link-btn:hover {
    color: var(--gold-primary);
    gap: 12px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 20px;
    text-align: center;
}

.stat-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 15px;
}

.advisor-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .advisor-hero-img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
}

.badge-1 {
    bottom: 30px;
    left: -20px;
}

.badge-1 i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.badge-1 div strong {
    display: block;
    font-size: 0.9rem;
}

.badge-1 div span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.badge-2 {
    top: 30px;
    right: -20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-2 i {
    color: var(--gold-primary);
}

/* Infinite Logo Marquee */
.logo-marquee-section {
    background: var(--bg-secondary);
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid var(--surface-glass-border);
    border-bottom: 1px solid var(--surface-glass-border);
}

.marquee-track {
    display: flex;
    gap: 50px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.marquee-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Common */
.section-padding {
    padding: 120px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.subtitle-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 15px;
}

.about-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.experience-badge {
    position: absolute;
    bottom: 35px;
    right: 35px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--glow-shadow);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info-card {
    padding: 40px;
}

.about-info-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-tabs-container .tab-headers {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--surface-glass-border);
    padding-bottom: 15px;
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 6px 14px;
    border-radius: 20px;
}

.tab-btn.active {
    background: var(--gold-primary);
    color: #fff;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Services Section */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 35px 25px;
    position: relative;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.4;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-step {
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.step-badge {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--glow-shadow);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    overflow: hidden;
}

.package-category-nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin: 0 auto 28px;
    position: relative;
    max-width: 920px;
}

.package-nav-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(20, 17, 12, 0.08);
    flex: 0 0 auto;
}

.package-nav-arrow:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.28);
}

.package-category-tabs {
    position: relative;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 12px;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 241, 234, 0.94));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(20, 17, 12, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    align-items: center;
    min-height: 52px;
    justify-content: center;
}

.package-category-tabs::before,
.package-category-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 26px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.package-category-tabs::before {
    left: 0;
    background: linear-gradient(90deg, rgba(244, 241, 234, 0.95), rgba(244, 241, 234, 0));
}

.package-category-tabs::after {
    right: 0;
    background: linear-gradient(270deg, rgba(244, 241, 234, 0.95), rgba(244, 241, 234, 0));
}

.package-category-tabs::-webkit-scrollbar {
    display: none;
}

.package-category-tab {
    position: relative;
    flex: 0 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: #ffffff;
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(20, 17, 12, 0.06);
    scroll-snap-align: center;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
}

.package-category-tab .cat-icon {
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.package-category-tab .cat-label {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.package-category-tab:hover {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(184, 121, 35, 0.18);
}

.package-category-tab.active {
    background: linear-gradient(135deg, #e3bf69, #b77923);
    color: #ffffff;
    border-color: rgba(196, 148, 53, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(184, 121, 35, 0.3), 0 0 18px rgba(212, 175, 55, 0.25);
}

.package-category-tab:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.7);
    outline-offset: 2px;
}

.package-category-panel {
    display: none;
    animation: packagePanelFade 0.3s ease both;
}

.package-category-panel.active {
    display: block;
}

@keyframes packagePanelFade {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.package-card {
    padding: 18px 16px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 22px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: visible;
    gap: 8px;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(183, 110, 121, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 54px rgba(20, 17, 12, 0.12);
    border-color: rgba(212, 175, 55, 0.6);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}

.package-card h3 {
    font-size: 1.35rem;
    margin-bottom: 2px;
}

.package-card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.package-pricing-wrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 2px 0 4px;
}

.package-current-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.45rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
    letter-spacing: -0.03em;
}

.package-original-price {
    font-size: 0.98rem;
    color: #9b958b;
    text-decoration: line-through;
}

.package-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #7c4a1e;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.48);
}

.package-card-price {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-primary);
}

.package-card-price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.package-features {
    margin: 4px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.package-features li i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.package-card .primary-btn,
.package-cta-banner .primary-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.package-card .primary-btn {
    align-self: stretch;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 999px;
}

.package-card .primary-btn i {
    transition: transform 0.35s ease;
}

.package-card .primary-btn:hover i {
    transform: translateX(4px);
}

.package-card.featured-package {
    border: 1.2px solid rgba(212, 175, 55, 0.72);
    transform: scale(1.015);
    box-shadow: 0 16px 38px rgba(212, 175, 55, 0.16), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.package-card.featured-package:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 52px rgba(212, 175, 55, 0.24), 0 0 0 1px rgba(212, 175, 55, 0.12);
}

.package-featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(227, 191, 105, 0.98), rgba(183, 121, 35, 0.98));
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.package-flexible {
    text-align: left;
}

.package-flexible .package-card-subtitle {
    margin-bottom: 10px;
}

.package-flexible-price-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.package-flexible-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.package-flexible-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.package-flexible-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.24);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    color: var(--text-primary);
    box-shadow: 0 6px 18px rgba(20, 17, 12, 0.06);
}

.package-flexible-platforms i {
    color: var(--gold-primary);
}

.package-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.package-trust-item {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    min-height: 74px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(20, 17, 12, 0.07);
}

.package-trust-item i {
    color: var(--gold-primary);
    font-size: 1.25rem;
}

.package-cta-banner {
    margin-top: 30px;
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(244, 241, 234, 0.96));
    box-shadow: 0 20px 50px rgba(20, 17, 12, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.24);
}

.package-cta-banner h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.package-cta-banner p {
    color: var(--text-secondary);
    max-width: 680px;
}

.package-cta-banner .primary-btn {
    width: auto;
    min-width: 220px;
}

.package-cta-banner .primary-btn:hover {
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px 0 0;
    outline: none;
}

.testimonial-slider-wrapper:focus-visible {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.45);
    border-radius: var(--radius-lg);
}

.testimonial-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.45s ease;
    padding: 6px 0 2px;
}

.testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 0;
    padding: 30px 26px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 360px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 16px 34px rgba(19, 17, 14, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(19, 17, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(212, 175, 55, 0.6);
}

.quote-mark {
    color: var(--gold-primary);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.95;
}

.client-rating {
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.client-quote {
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0 0 24px;
    font-family: 'Cormorant Garamond', serif;
}

.client-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: auto;
}

.client-info img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
    background: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-info h4 {
    font-size: 1.05rem;
    margin: 0;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.consultation-type,
.location {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
}

.slider-btn {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    color: var(--text-primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover,
.slider-btn:focus-visible {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    outline: none;
}

@media (max-width: 1024px) {
    .testimonial-slider-wrapper {
        max-width: 920px;
    }
}

@media (max-width: 768px) {
    .testimonial-track {
        gap: 18px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 320px;
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-height: 310px;
        padding: 24px 18px;
    }

    .client-quote {
        font-size: 1.05rem;
    }

    .client-info img {
        width: 56px;
        height: 56px;
    }

    #why-us .section-header {
        margin-bottom: 30px;
    }

    #why-us .section-header h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 10px;
    }

    #why-us .section-header .section-desc {
        max-width: 360px;
        margin: 0 auto;
    }

    #why-us .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: stretch;
    }

    #why-us .why-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    #why-us .why-card h3,
    #why-us .why-card p {
        text-align: center;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    background: var(--bg-secondary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.blog-card {
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    margin: 0;
    padding: 0;
    border-width: 0;
}

.blog-grid.expanded .blog-hidden {
    max-height: 620px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    margin: 0;
    padding: 0;
    border-width: 1px;
    transition: max-height 0.55s ease, opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.blog-toggle-wrap {
    margin-top: 30px;
    text-align: center;
}

.blog-toggle-btn {
    min-width: 220px;
    justify-content: center;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.blog-link:hover {
    gap: 12px;
}

/* Legacy Section */
.legacy-section {
    background: transparent;
}

.legacy-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.legacy-image-wrap {
    width: 100%;
}

.legacy-image-frame {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.legacy-image-frame:hover {
    transform: scale(1.01);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.legacy-image-frame img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    max-height: 620px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.legacy-content {
    width: 100%;
}

.legacy-content h2 {
    font-size: 2.7rem;
    margin: 16px 0 12px;
}

.legacy-subtitle {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.legacy-quote {
    margin: 0 0 24px;
    padding: 16px 18px 16px 20px;
    border-left: 3px solid var(--gold-primary);
    background: rgba(244, 241, 234, 0.75);
    border-radius: 14px;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.32rem;
    line-height: 1.5;
}

.legacy-list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.legacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legacy-list li i {
    color: var(--gold-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.legacy-cta-wrap {
    display: flex;
    align-items: center;
}

.legacy-cta {
    margin-top: 6px;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-primary);
}

.newsletter-box {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.glass-input {
    flex: 1;
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    padding: 14px 22px;
    border-radius: 50px;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.glass-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 48px 0 20px;
    border-top: 1px solid var(--surface-glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr 1.15fr;
    gap: 28px;
    margin-bottom: 34px;
    align-items: stretch;
}

.footer-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    line-height: 0;
    flex-shrink: 0;
    text-decoration: none;
    width: fit-content;
}

.footer-brand:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
    border-radius: 8px;
}

.footer-main-logo {
    width: 62px;
    height: 62px;
    object-position: center;
}

.footer-wordmark {
    width: 190px;
    height: 58px;
    object-fit: cover;
    object-position: center center;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal-list {
    display: grid;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
    width: 100%;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    flex: 0 0 auto;
}

.social-btn:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
}

.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus-visible {
    color: var(--gold-primary);
}

.footer-col ul li a:hover::after,
.footer-col ul li a:focus-visible::after {
    width: 100%;
}

.footer-col ul li a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.footer-col p i {
    color: var(--gold-primary);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid var(--surface-glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: none;
}

.whatsapp-float {
    background: #25d366;
    color: #fff;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.top-float {
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
}

.top-float.show {
    opacity: 1;
    visibility: visible;
}

.top-float:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Modals */
.search-modal, .booking-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.search-modal.active, .booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 650px;
    text-align: center;
}

.search-modal h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
}

.search-input-wrap {
    position: relative;
    margin-bottom: 25px;
}

.search-input-wrap input {
    width: 100%;
    padding: 16px 25px 16px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px;
    font-size: 1.1rem;
}

.search-input-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.2rem;
}

.close-search-btn, .close-booking-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-search-btn:hover, .close-booking-btn:hover {
    transform: scale(1.2);
}

.booking-modal-box {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
}

.booking-modal-box h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.booking-modal-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form .glass-input, .booking-form select, .booking-form textarea {
    width: 100%;
}

.booking-form select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-glass-border);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 30000;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-notification i {
    color: #25d366;
    font-size: 1.3rem;
}

/* Responsive Media Queries */
@keyframes fadeInMobile {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1280px) {
    .nav-container {
        padding: 0 18px;
        gap: 12px;
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
    .nav-actions {
        gap: 8px;
    }
    .nav-book-btn {
        padding: 10px 14px;
        font-size: 0.82rem;
    }
    .nav-main-logo {
        width: 48px;
        height: 48px;
    }
    .nav-wordmark {
        width: 150px;
        height: 40px;
        object-fit: cover;
        object-position: center center;
    }
    .nav-brand {
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-secondary);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transition: right 0.4s ease;
        z-index: 1001;
        flex: none;
    }
    .nav-menu.active {
        right: 0;
    }
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    .nav-book-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-container, .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nav-main-logo {
        width: 46px;
        height: 46px;
    }
    .nav-wordmark {
        width: 140px;
        height: 38px;
        object-fit: cover;
        object-position: center center;
    }
    .footer-wordmark {
        width: 170px;
        height: 52px;
        object-fit: cover;
        object-position: center center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
    .services-grid, .packages-grid, .blog-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .package-grid, .package-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid, .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .package-category-nav-wrap {
        grid-template-columns: 1fr;
        gap: 0;
        overflow: hidden;
        max-width: 100%;
    }

    .package-nav-arrow {
        display: none;
    }

    .package-category-tabs {
        padding-inline: 16px;
        gap: 12px;
        border-radius: 999px;
        min-height: 44px;
        overflow-x: auto;
        justify-content: flex-start;
        scroll-padding-inline: 16px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        white-space: nowrap;
        flex-wrap: nowrap;
        width: 100%;
    }

    .package-category-tabs::before,
    .package-category-tabs::after {
        opacity: 0;
    }

    .package-category-tab {
        min-height: 44px;
        padding: 12px 18px;
        font-size: 0.875rem;
        font-weight: 500;
        gap: 6px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .package-category-tab .cat-icon {
        font-size: 1rem;
    }

    .package-grid {
        gap: 14px;
    }

    .package-card {
        padding: 16px 14px 14px;
    }

    .testimonial-slider-wrapper {
        max-width: 100%;
        padding: 0 2px;
    }

    .testimonial-viewport {
        overflow: hidden;
    }

    .testimonial-track {
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 44px);
        max-width: 90vw;
        min-height: auto;
        padding: 22px 18px;
        margin: 0 auto;
    }

    .client-info {
        align-items: flex-start;
        gap: 12px;
    }

    .client-info img {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .client-meta {
        min-width: 0;
    }

    .client-quote {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .slider-controls {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-col p {
        justify-content: center;
        text-align: center;
    }

    .social-links {
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .client-info {
        align-items: flex-start;
        gap: 12px;
    }

    .client-info img {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .client-meta {
        min-width: 0;
    }

    .client-quote {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .slider-controls {
        margin-top: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-col p {
        justify-content: center;
        text-align: center;
    }

    .social-links {
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    #why-us .section-header {
        margin-bottom: 30px;
    }

    #why-us .section-header h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 10px;
    }

    #why-us .section-header .section-desc {
        max-width: 360px;
        margin: 0 auto;
    }

    #why-us .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: stretch;
    }

    #why-us .why-card {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        padding: 26px 20px;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    #why-us .why-card h3,
    #why-us .why-card p {
        text-align: center;
    }

    .nav-brand {
        gap: 7px;
    }
    .nav-main-logo {
        width: 44px;
        height: 44px;
    }
    .nav-wordmark {
        width: 125px;
        height: 34px;
        object-fit: cover;
        object-position: center center;
    }
    .loader-logo-wrap {
        min-width: 160px;
        min-height: 112px;
    }
    .golden-loader-ring {
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px;
    }
    .loader-main-logo {
        width: 58px;
        height: 58px;
    }
    .loader-wordmark {
        width: 125px;
        height: 34px;
        object-fit: cover;
        object-position: center center;
    }
    .footer-main-logo {
        width: 52px;
        height: 52px;
    }
    .footer-wordmark {
        width: 150px;
        height: 46px;
        object-fit: cover;
        object-position: center center;
    }
    .services-grid, .packages-grid, .blog-grid, .gallery-grid, .why-grid, .process-timeline, .hero-stats-grid, .package-grid, .package-trust-badges {
        grid-template-columns: 1fr;
    }
    .package-cta-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .package-cta-banner .primary-btn {
        width: 100%;
    }
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .legacy-image-frame img {
        min-height: 320px;
    }
    .legacy-content h2 {
        font-size: 2.2rem;
    }
    .legacy-quote {
        font-size: 1.2rem;
    }
    .legacy-cta-wrap {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        max-width: 90vw;
    }
    .newsletter-box {
        padding: 40px 18px;
    }
    .newsletter-form {
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .glass-input,
    .newsletter-form .primary-btn {
        width: 100%;
        min-width: 0;
    }
    .newsletter-form .primary-btn {
        justify-content: center;
    }
}

/* =================================================================
   Advice Lo - LEGAL PAGES LUXURY STYLESHEET
   ================================================================= */

.legal-body {
    background: var(--bg-primary);
}

/* ---- Luxury Background Pattern & Hero ---- */
.legal-hero-section {
    position: relative;
    min-height: 65vh;
    padding: 160px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.legal-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 25%, rgba(212, 175, 55, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 82% 75%, rgba(183, 110, 121, 0.10) 0%, transparent 45%),
        radial-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 26px 26px;
    pointer-events: none;
    z-index: 0;
    animation: legalPatternFloat 20s ease-in-out infinite alternate;
}

.legal-hero-section::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: var(--gold-primary);
    filter: blur(120px);
    opacity: 0.12;
    top: -120px;
    right: -120px;
    z-index: 0;
    animation: legalBlobFloat 18s ease-in-out infinite alternate;
}

@keyframes legalPatternFloat {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 40px 30px, -30px 20px, 13px 13px; }
}

@keyframes legalBlobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.12); }
}

.legal-hero-content {
    position: relative;
    z-index: 1;
}

/* ---- Breadcrumb ---- */
.legal-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.88rem;
}

.legal-breadcrumb a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-breadcrumb a:hover {
    color: var(--gold-primary);
}

.legal-breadcrumb span {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.legal-breadcrumb span i {
    color: var(--gold-primary);
    font-size: 0.7rem;
}

.legal-breadcrumb span:last-child {
    color: var(--gold-primary);
    font-weight: 600;
}

/* ---- Hero Card ---- */
.legal-hero-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding: 45px 50px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.legal-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px 3px 0 0;
}

.legal-hero-copy h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 12px 0 16px;
    letter-spacing: -0.5px;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-hero-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 25px;
    max-width: 620px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.legal-meta div {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.legal-meta strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.legal-meta span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.legal-hero-side {
    padding: 35px 30px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(244,241,234,0.75));
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--glow-shadow);
}

[data-theme="dark"] .legal-hero-side {
    background: linear-gradient(145deg, rgba(30,28,25,0.9), rgba(24,21,18,0.85));
}

.legal-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.3);
    transform: rotate(-4deg);
    transition: var(--transition-smooth);
}

.legal-hero-side:hover .legal-icon-wrap {
    transform: rotate(0deg) scale(1.06);
}

.legal-hero-side p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
}

/* ---- Legal Layout ---- */
.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 60px;
    padding-bottom: 120px;
}

/* ---- Sticky Side Navigation ---- */
.legal-side-nav {
    position: sticky;
    top: 110px;
    padding: 30px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-side-nav h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-side-nav a {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-side-nav a i {
    color: var(--gold-primary);
    font-size: 0.75rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.legal-side-nav a:hover {
    background: rgba(212, 175, 55, 0.07);
    color: var(--text-primary);
    border-left-color: rgba(212, 175, 55, 0.4);
}

.legal-side-nav a.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(183, 110, 121, 0.08));
    color: var(--gold-primary);
    border-left-color: var(--gold-primary);
    font-weight: 600;
}

.legal-side-nav a.active i {
    opacity: 1;
}

/* ---- Legal Content Stack ---- */
.legal-content-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ---- Legal Cards ---- */
.legal-card {
    padding: 40px 42px;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 130px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.legal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gradient);
    opacity: 0.85;
}

.legal-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
    pointer-events: none;
}

.legal-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 24px 55px rgba(20, 17, 12, 0.10), 0 0 0 1px rgba(212, 175, 55, 0.06);
    transform: translateY(-3px);
}

.legal-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.legal-card h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.legal-card h2 i {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(183, 110, 121, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.15rem;
}

.legal-card h3 {
    font-size: 1.45rem;
    margin: 26px 0 12px;
    color: var(--text-primary);
}

.legal-card p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card ul:not(.contact-list):not(.legal-icon-list) {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-card ul:not(.contact-list):not(.legal-icon-list) li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.96rem;
    padding-left: 2px;
}

.legal-card ul:not(.contact-list):not(.legal-icon-list) li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ---- Legal Highlight / Callout ---- */
.legal-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(183, 110, 121, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-left: 4px solid var(--gold-primary);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 22px 0;
}

.legal-highlight h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.legal-highlight h4 i {
    color: var(--gold-primary);
}

.legal-highlight p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.94rem;
}

/* ---- Legal Two Column Grid ---- */
.legal-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 22px 0;
}

.legal-mini-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 22px 22px;
    transition: var(--transition-smooth);
}

.legal-mini-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--glow-shadow);
}

.legal-mini-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-mini-card h4 i {
    color: var(--gold-primary);
}

.legal-mini-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Contact List ---- */
.contact-list {
    margin-top: 20px;
    display: grid;
    gap: 14px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.96rem;
    padding: 14px 18px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.contact-list li:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateX(4px);
}

.contact-list li i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ---- Scroll Reveal Animation ---- */
.reveal-section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Legal Cards Icon List ---- */
.legal-icon-list {
    display: grid;
    gap: 16px;
    margin: 18px 0;
}

.legal-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.96rem;
    padding: 14px 16px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.legal-icon-list li:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.07);
    transform: translateX(4px);
}

.legal-icon-list li i {
    color: var(--gold-primary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* ---- Responsive Legal Styles ---- */
@media (max-width: 1024px) {
    .legal-hero-card {
        grid-template-columns: 1fr;
        padding: 35px 30px;
    }

    .legal-hero-side {
        max-width: 420px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-side-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 16px 18px;
        gap: 8px;
    }

    .legal-side-nav h3 {
        width: 100%;
        margin-bottom: 4px;
        padding-bottom: 10px;
    }

    .legal-side-nav a {
        padding: 8px 12px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        font-size: 0.82rem;
    }

    .legal-side-nav a.active {
        border-left: none;
        border-bottom-color: var(--gold-primary);
    }

    .legal-hero-copy h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .legal-hero-section {
        padding: 130px 0 60px;
        min-height: auto;
    }

    .legal-hero-card {
        padding: 30px 22px;
        gap: 28px;
    }

    .legal-hero-copy h1 {
        font-size: 2.2rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 10px;
    }

    .legal-meta div {
        padding: 8px 14px;
    }

    .legal-card {
        padding: 30px 24px;
    }

    .legal-card h2 {
        font-size: 1.6rem;
        flex-wrap: wrap;
    }

    .legal-two-col {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .legal-side-nav {
        padding: 14px 14px;
    }

    .legal-side-nav a {
        font-size: 0.78rem;
        padding: 7px 10px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 6px;
    }

    .nav-main-logo {
        width: 40px;
        height: 40px;
    }

    .nav-wordmark {
        width: 108px;
        height: 30px;
        object-fit: cover;
        object-position: center center;
    }

    .loader-logo-wrap {
        min-width: 140px;
        min-height: 100px;
    }

    .golden-loader-ring {
        width: 88px;
        height: 88px;
        margin: -44px 0 0 -44px;
    }

    .loader-main-logo {
        width: 52px;
        height: 52px;
    }

    .loader-wordmark {
        width: 108px;
        height: 30px;
        object-fit: cover;
        object-position: center center;
    }

    .footer-main-logo {
        width: 48px;
        height: 48px;
    }

    .footer-wordmark {
        width: 128px;
        height: 40px;
        object-fit: cover;
        object-position: center center;
    }

    .legal-hero-copy h1 {
        font-size: 1.9rem;
    }

    .legal-hero-copy p {
        font-size: 0.95rem;
    }

    .legal-breadcrumb {
        font-size: 0.78rem;
        gap: 6px;
    }

    .legal-card {
        padding: 26px 18px;
    }

    .legal-card h2 {
        font-size: 1.4rem;
    }

    .legal-card p {
        font-size: 0.92rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 12px;
        gap: 8px;
    }

    .nav-brand {
        gap: 5px;
    }

    .nav-main-logo {
        width: 36px;
        height: 36px;
    }

    .nav-wordmark {
        width: 98px;
        height: 28px;
        object-fit: cover;
        object-position: center center;
    }
}
