/* ═════════════════════════════════════════════════════════════════
   MENU OPTICS - HOME LANDING PAGE DUAL THEME SYSTEM
   Dark Theme (Default) & Dashboard Light Theme (#f8fafc)
   ═════════════════════════════════════════════════════════════════ */

:root {
    /* Dark Theme Tokens (Default) */
    --bg-dark: #0b0f17;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(31, 41, 55, 0.85);
    --primary-amber: #f08d11;
    --primary-gradient: linear-gradient(135deg, #f08d11 0%, #ff9f2e 100%);
    --primary-glow: rgba(240, 141, 17, 0.3);
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(240, 141, 17, 0.4);
    --header-bg: rgba(11, 15, 23, 0.6);
    --header-scrolled: rgba(11, 15, 23, 0.94);
    --footer-bg: #070a10;
    --hero-glow: radial-gradient(circle, rgba(240, 141, 17, 0.18) 0%, rgba(11, 15, 23, 0) 70%);
    --radius-lg: 20px;
    --radius-md: 12px;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Light Theme Overrides */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --primary-amber: #e07c0a;
    --primary-gradient: linear-gradient(135deg, #f08d11 0%, #e07c0a 100%);
    --primary-glow: rgba(240, 141, 17, 0.2);
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-dim: #64748b;
    --border-color: #e2e8f0;
    --border-glow: rgba(240, 141, 17, 0.4);
    --header-bg: rgba(248, 250, 252, 0.8);
    --header-scrolled: rgba(255, 255, 255, 0.95);
    --footer-bg: #0f172a;
    --hero-glow: radial-gradient(circle, rgba(240, 141, 17, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
    --shadow-card: 0 15px 35px rgba(15, 23, 42, 0.08);
}

body.landing-body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-amber);
}

/* ── Typography & Gradients ──────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-amber) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-amber-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-container {
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Glassmorphic Header ─────────────────────────────────────────── */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.landing-header.scrolled {
    padding: 12px 0;
    background: var(--header-scrolled);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(240, 141, 17, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-link img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-link:hover img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── Theme Switcher Button ────────────────────────────────────────── */
.theme-toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.theme-toggle-btn:hover {
    border-color: var(--primary-amber);
    color: var(--primary-amber);
    transform: rotate(15deg) scale(1.08);
    box-shadow: 0 6px 18px var(--primary-glow);
}

.theme-toggle-btn i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-landing-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.btn-landing-outline:hover {
    border-color: var(--primary-amber);
    color: var(--primary-amber);
    background: rgba(240, 141, 17, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-landing-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--primary-gradient);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--primary-glow);
    border: none;
    cursor: pointer;
}

.btn-landing-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(240, 141, 17, 0.45);
    color: #ffffff !important;
}

.btn-landing-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 50px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 22px;
    cursor: pointer;
}

/* ── Hero Section ────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 170px 0 110px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 15, 23, 0.82) 0%, rgba(11, 15, 23, 0.94) 100%), url('../bg-restaurant.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background 0.3s ease;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 220px; /* adjust to taste — bigger = softer fade */
    background: linear-gradient(180deg, transparent 0%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="light"] .hero-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(248, 250, 252, 0.95) 100%), url('../bg-restaurant.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-glow-bg {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 450px;
    background: var(--hero-glow);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.hero-main-logo {
    height: 135px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 6px 25px rgba(240, 141, 17, 0.3));
    transition: transform 0.3s ease;
}

.hero-main-logo:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .hero-main-logo {
        height: 52px;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-container-relative {
    position: relative;
}

/* Floating Stats Badges */
.hero-floating-stat {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    padding: 16px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25), 0 0 25px var(--primary-glow);
    z-index: 10;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.hero-floating-stat.stat-left {
    top: 10%;
    left: -30px;
}

.hero-floating-stat.stat-right {
    top: 80%;
    right: -40px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-floating-stat:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 50px var(--primary-glow);
    border-color: var(--primary-amber);
}

@media (max-width: 1200px) {

    .hero-floating-stat.stat-left,
    .hero-floating-stat.stat-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 15px auto 0 auto;
        display: inline-flex;
    }
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.stat-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}

.stat-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ── Section Header & Divider ────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-amber);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag i {
    font-size: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-amber);
    font-weight: 600;
    margin-bottom: 20px;
}

.pro-feature {
    display: inline-block;
    font-size: 0.35em;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary-amber);
    background: rgba(240, 141, 17, 0.12);
    border: 1px solid rgba(240, 141, 17, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
    text-transform: uppercase;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Feature Sections (Alternating 2-Column) ─────────────────────── */
.feature-section {
    padding: 100px 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse>* {
    direction: ltr;
}

.feature-media {
    position: relative;
}

.media-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 8px;
    background: linear-gradient(135deg, rgba(240, 141, 17, 0.25) 0%, var(--border-color) 100%);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.media-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px var(--primary-glow);
}

.media-img {
    width: 100%;
    height auto;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--border-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.feature-list li i {
    color: var(--primary-amber);
    font-size: 18px;
    margin-top: 2px;
}

/* ── Comparison Section: Why Operators Switch ─────────────────────── */
.comparison-section {
    padding: 80px 0 100px 0;
    position: relative;
}

.comparison-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.comparison-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-card);
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.25s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:not(.comparison-header-row):hover {
    background: rgba(240, 141, 17, 0.03);
}

.comparison-header-row {
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid var(--border-color);
}

[data-theme="light"] .comparison-header-row {
    background: rgba(241, 245, 249, 0.7);
}

.comparison-col {
    padding: 24px 36px;
    display: flex;
    align-items: center;
}

.comparison-col.legacy-col {
    border-right: 1px solid var(--border-color);
}

.comparison-col.advantage-col {
    background: rgba(240, 141, 17, 0.04);
}

[data-theme="light"] .comparison-col.advantage-col {
    background: rgba(240, 141, 17, 0.06);
}

.col-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.col-title-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    color: var(--text-main);
}

.advantage-col .col-title-wrapper h3 {
    color: var(--primary-amber);
}

.col-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

.col-icon.legacy-icon {
    color: #ef4444;
}

.col-icon.advantage-icon {
    color: var(--primary-amber);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-muted);
}

.advantage-col .comparison-item {
    color: var(--text-main);
}

.advantage-col .comparison-item strong {
    color: #ffffff;
}

[data-theme="light"] .advantage-col .comparison-item strong {
    color: #0f172a;
}

.item-status-icon {
    font-size: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.item-status-icon.legacy {
    color: #f87171;
    opacity: 0.8;
}

.item-status-icon.advantage {
    color: var(--primary-amber);
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-col.legacy-col {
        border-right: none;
        border-bottom: 1px dashed var(--border-color);
        padding: 18px 20px;
    }

    .comparison-col.advantage-col {
        padding: 18px 20px;
    }

    .comparison-card::before {
        left: 0;
    }
}

/* ── Section 4: Why Chefs & Owners Trust Grid ───────────────────── */
.why-us-section {
    padding: 110px 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-card-hover) 50%, transparent 100%);
    position: relative;
}

.why-us-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card), 0 0 25px var(--primary-glow);
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(240, 141, 17, 0.12);
    border: 1px solid rgba(240, 141, 17, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-amber);
    font-size: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon-box {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-glow);
    transform: scale(1.08);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.trust-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Interactive Stats Banner ────────────────────────────────────── */
.stats-banner {
    padding: 60px 0;
    margin: 40px 60px 80px 60px;
}

.stats-glass-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.stat-counter-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-amber);
    margin-bottom: 6px;
}

.stat-counter-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Welcome Video Tour Section ──────────────────────────────────── */
.video-tour-section {
    padding: 85px 0;
    position: relative;
}

.video-tour-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.video-tour-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: linear-gradient(135deg, rgba(240, 141, 17, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(12px);
}

.video-tour-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 35px var(--primary-glow);
    border-color: var(--primary-amber);
}

.video-browser-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .video-browser-header {
    background: rgba(0, 0, 0, 0.03);
}

.video-browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.video-browser-dot.red {
    background-color: #ff5f56;
}

.video-browser-dot.yellow {
    background-color: #ffbd2e;
}

.video-browser-dot.green {
    background-color: #27c93f;
}

.video-browser-title {
    margin: 0 auto 0 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-frame {
    position: relative;
    width: 100%;
    background: #000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.btn-watch-tour {
    border-color: rgba(240, 141, 17, 0.35);
}

.btn-watch-tour:hover {
    border-color: var(--primary-amber);
    background: rgba(240, 141, 17, 0.08);
}

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-section {
    padding: 90px 0;
    margin: 40px 60px 80px 60px;
    position: relative;
}

.cta-box {
    background: linear-gradient(135deg, rgba(240, 141, 17, 0.15) 0%, var(--bg-card) 60%, var(--bg-dark) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card), 0 0 40px var(--primary-glow);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.cta-box p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 36px auto;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.landing-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 38px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary-amber);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #6b7280;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ── Scroll Reveal Animations ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive Styles ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .feature-grid,
    .feature-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .stats-glass-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-floating-stat {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-scrolled);
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .btn-watch-tour {
        display: none !important;
    }
}

/* ═════════════════════════════════════════════════════════════════
   LANDING PAGE FAQ SECTION STYLES
   ═════════════════════════════════════════════════════════════════ */
.landing-faq-section {
    padding: 100px 0 60px;
    position: relative;
}

.landing-faq-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px auto;
}

/* FAQ Controls: Search and Filter Pills */
.landing-faq-controls {
    max-width: 960px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.landing-faq-search-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.landing-faq-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.landing-faq-search-input {
    width: 100%;
    padding: 14px 46px 14px 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-main);
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.landing-faq-search-input:focus {
    outline: none;
    border-color: var(--primary-amber);
    box-shadow: 0 0 0 3px var(--primary-glow), 0 8px 25px rgba(0, 0, 0, 0.15);
}

.landing-faq-search-input:focus+.landing-faq-search-icon {
    color: var(--primary-amber);
}

.landing-faq-clear-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.landing-faq-clear-btn:hover {
    background: var(--primary-amber);
    color: #ffffff;
}

.landing-faq-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.faq-pill-btn:hover {
    border-color: var(--primary-amber);
    color: var(--text-main);
    transform: translateY(-1px);
}

.faq-pill-btn.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 6px 20px var(--primary-glow);
}

.faq-pill-btn i {
    font-size: 13px;
}

/* FAQ Content Accordion */
.landing-faq-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.landing-faq-group {
    transition: opacity 0.3s ease;
}

.landing-faq-group.hidden-by-filter {
    display: none;
}

.landing-faq-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.group-icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(240, 141, 17, 0.12);
    border: 1px solid rgba(240, 141, 17, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-amber);
    font-size: 14px;
}

.landing-faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.landing-faq-card:hover {
    border-color: rgba(240, 141, 17, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.landing-faq-card.active {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 0 20px var(--primary-glow);
}

.landing-faq-card.hidden-by-search {
    display: none;
}

/* FAQ Trigger Button */
.landing-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    transition: all 0.2s ease;
}

.faq-badge-q {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(240, 141, 17, 0.12);
    color: var(--primary-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(240, 141, 17, 0.25);
}

.landing-faq-card.active .faq-badge-q {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.faq-question-text {
    flex: 1;
    color: var(--text-main);
    transition: color 0.2s ease;
}

.landing-faq-card.active .faq-question-text {
    color: var(--primary-amber);
}

.faq-category-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

[data-theme="light"] .faq-category-tag {
    background: rgba(0, 0, 0, 0.04);
}

.landing-faq-arrow {
    font-size: 13px;
    color: var(--text-muted);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.landing-faq-card.active .landing-faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-amber);
}

/* FAQ Panel Answer */
.landing-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-faq-panel-inner {
    padding: 0 24px 22px 68px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}

.landing-faq-panel-inner p {
    margin: 0 0 12px 0;
}

.landing-faq-panel-inner p:last-child {
    margin-bottom: 0;
}

.landing-faq-panel-inner strong {
    color: var(--text-main);
}

.landing-faq-inline-link {
    color: var(--primary-amber);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary-amber);
    transition: all 0.2s ease;
}

.landing-faq-inline-link:hover {
    color: #ffaa33;
    border-bottom-style: solid;
}

.landing-faq-sublist {
    margin: 10px 0 12px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.landing-faq-sublist li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
}

.landing-faq-sublist li:last-child {
    margin-bottom: 0;
}

.landing-faq-sublist li strong {
    color: var(--text-main);
}

.landing-faq-highlight-box {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(240, 141, 17, 0.08);
    border-left: 3px solid var(--primary-amber);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.landing-faq-highlight-box i {
    color: var(--primary-amber);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Empty Search Results State */
.landing-faq-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
}

.empty-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(240, 141, 17, 0.1);
    color: var(--primary-amber);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.landing-faq-empty h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.landing-faq-empty p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.btn-landing-sm {
    padding: 8px 20px;
    font-size: 13.5px;
}

/* FAQ Footer Contact Card */
.landing-faq-footer-card {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(240, 141, 17, 0.12) 0%, var(--bg-card) 60%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-footer-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px var(--primary-glow);
}

.faq-footer-left h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px 0;
}

.faq-footer-left p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    max-width: 500px;
    line-height: 1.5;
}

.faq-footer-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .landing-faq-footer-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 24px;
    }

    .faq-footer-left {
        flex-direction: column;
    }

    .faq-footer-left p {
        max-width: 100%;
    }

    .faq-footer-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .landing-faq-section {
        padding: 70px 0 40px;
    }

    .landing-faq-panel-inner {
        padding: 0 18px 18px 18px;
    }

    .landing-faq-trigger {
        padding: 16px 18px;
        gap: 12px;
        font-size: 15px;
    }

    .faq-category-tag {
        display: none;
    }
}

.faq-page-hero {
    padding: 150px 0 50px;
}

.faq-standalone-page {
    padding: 20px 0 90px;
}

.nav-link.active {
    color: var(--text-main);
}

.nav-link.active::after {
    width: 100%;
}

/* ── Payment Status Pages (Success / Cancel) ────────────────────── */
.payment-status-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    position: relative;
}

.payment-status-wrapper {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

.payment-status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.payment-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.payment-status-card.success-card::before {
    background: linear-gradient(90deg, #10b981 0%, #f08d11 100%);
}

.payment-status-card.cancel-card::before {
    background: linear-gradient(90deg, #ef4444 0%, #f08d11 100%);
}

.payment-status-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-status-icon-box.success-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.3);
}

.payment-status-icon-box.cancel-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 35px rgba(239, 68, 68, 0.25);
}

.payment-status-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-main);
}

.payment-status-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-amber);
    margin-bottom: 20px;
}

.payment-status-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

.payment-status-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.payment-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.payment-status-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.payment-feature-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

[data-theme="light"] .payment-feature-mini-card {
    background: #f8fafc;
}

.payment-feature-mini-card:hover {
    border-color: var(--primary-amber);
    transform: translateY(-3px);
}

.payment-feature-mini-card i {
    font-size: 20px;
    color: var(--primary-amber);
    margin-bottom: 8px;
    display: inline-block;
}

.payment-feature-mini-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 4px 0;
}

.payment-feature-mini-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@@keyframes scaleIn {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@@media (max-width: 768px) {
    .payment-status-card {
        padding: 40px 24px;
    }

    .payment-status-title {
        font-size: 28px;
    }

    .payment-status-grid {
        grid-template-columns: 1fr;
    }

    .payment-status-grid.two-col {
        grid-template-columns: 1fr;
    }

    .payment-status-actions {
        flex-direction: column;
        width: 100%;
    }

    .payment-status-actions .btn-landing-lg {
        width: 100%;
    }
}