/* ==========================================================================
   videochatangajari.ro - Brand CSS Design System
   Theme: Ultra Luxury Gold & Dark Charcoal
   ========================================================================== */

/* Font Imports removed for Preloading performance optimization */
/* --- Root Token Definitions --- */
:root {
    /* Color Palette (Deep Velvet Bordeaux & Champagne Gold Theme) */
    --color-primary: #f5f0eb;       /* Linen Cream for text */
    --color-primary-rgb: 245, 240, 235;
    --color-espresso: #180b0f;      /* Deep Velvet Bordeaux background */
    --color-gold: #e3cca1;          /* Pale Champagne Gold Accent */
    --color-gold-rgb: 227, 204, 161;
    --color-champagne: #f5ecd7;     /* Champagne highlight */
    --color-cream: #251419;         /* Warm Muted Plum Secondary Background */
    --color-ivory: #180b0f;         /* Deep Velvet Bordeaux background */
    --color-beige-bg: #251419;      /* Warm Muted Plum Secondary Background */
    --color-coral-rose: #a38b62;    /* Bronze Accent */
    --color-text-main: #f5f0eb;     /* Linen Cream primary text */
    --color-text-muted: #b09ba0;    /* Muted Rose/Bordeaux Gray secondary text */
    --color-white: #ffffff;
    --color-border: rgba(227, 204, 161, 0.15);
    --color-border-dark: rgba(197, 168, 128, 0.35);

    /* Gradients */
    --gold-luxury: linear-gradient(135deg, #e3cca1 0%, #f5ecd7 50%, #a38b62 100%);
    --gold-glow: rgba(227, 204, 161, 0.05);

    /* Typography Settings (Ultra-Luxury Editorial Styling) */
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --font-alt: 'Outfit', sans-serif;

    /* Spacing Grid (4px/8px based) */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-xxl: 8rem;    /* 128px */

    /* Design Details (Sharp Minimalist Luxury Style) */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.5);
    --shadow-premium: 0 20px 50px rgba(0,0,0,0.7);

    /* Dimensions */
    --header-height: 95px;
    --header-height-mobile: 75px;
    --container-width: 1200px;
}

/* --- Reset and Defaults --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base size */
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--color-ivory);
    background-image: none;
    background-attachment: scroll;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1.0625rem; /* ~17px for premium editorial look */
    line-height: 1.65;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Classes */
h1, h2, h3, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: 0.03em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.8rem); text-transform: uppercase; font-weight: 300; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); text-transform: uppercase; font-weight: 300; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); text-transform: uppercase; font-weight: 300; }
h4 { font-size: 0.8rem; font-family: var(--font-alt); font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-gold); }

p {
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

.section {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
    position: relative;
}

.section-cream {
    background-color: var(--color-cream);
}

.section-beige {
    background-color: var(--color-beige-bg);
}

.section-dark {
    background-color: var(--color-espresso);
    color: var(--color-cream);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--color-white);
}

.main-wrapper {
    margin-left: 0;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

/* Flex & Grid Utilities */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center { text-align: center; }
.italic-title {
    font-style: italic;
    font-family: var(--font-heading);
    background: var(--gold-luxury);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    display: inline-block;
}
.text-gradient-gold {
    background: var(--gold-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Luxury Page Header (Top Horizontal Menu) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(24, 11, 15, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    border-right: none;
    display: flex;
    align-items: center;
    padding: 0 var(--space-lg);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(24, 11, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    text-decoration: none;
}

.logo-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    background: radial-gradient(circle, rgba(227, 204, 161, 0.1) 0%, transparent 80%);
    box-shadow: 0 0 10px rgba(227, 204, 161, 0.2);
    letter-spacing: -0.05em;
    padding-right: 1px;
    user-select: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    display: block;
}

.logo-text span {
    color: var(--color-gold);
    font-weight: 300;
    font-size: inherit;
    letter-spacing: inherit;
    font-family: inherit;
    margin-top: 0;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 1.1rem;
    align-items: center;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    position: relative;
    padding: var(--space-xs) 0;
    transition: var(--transition-fast);
    display: block;
}

/* Symmetrical Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
    padding-left: 0;
}

/* Burger Menu Trigger */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    transition: var(--transition-fast);
}

.menu-btn span:nth-child(1) { top: 2px; }
.menu-btn span:nth-child(2) { top: 11px; }
.menu-btn span:nth-child(3) { top: 20px; }

.menu-btn.active span:nth-child(1) { transform: rotate(45deg); top: 11px; }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg); top: 11px; }

/* --- Footer Section --- */
.footer {
    background-color: #100609; /* Very dark bordeaux */
    color: var(--color-text-muted);
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
    gap: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer-column h5 {
    color: var(--color-white);
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--space-xs);
}

.footer-column ul li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-about p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: var(--color-gold);
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(216, 164, 143, 0.15);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    font-size: 0.85rem;
}

.footer-legal-links a {
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

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

/* --- Scroll Reveal & Focus styles (UX/Accessibility) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Keyboard accessibility focus styling */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* --- Asymmetric Geometric Luxury Redesign Styles --- */
.offset-image-frame {
    position: relative;
    display: inline-block;
}

.offset-image-frame img {
    display: block;
    position: relative;
    z-index: 2;
    border: 1px solid var(--color-border);
}

.offset-image-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: 1;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.offset-image-frame:hover::after {
    top: 8px;
    left: 8px;
}

/* Manifesto Section */
.manifesto-section {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: linear-gradient(180deg, var(--color-beige-bg) 0%, var(--color-ivory) 100%);
    position: relative;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    line-height: 1.6;
    font-style: italic;
    color: var(--color-gold);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Asymmetric Split Opportunities */
.opportunities-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

@media screen and (max-width: 992px) {
    .opportunities-split {
        grid-template-columns: 1fr;
    }
}

.opp-column {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl) var(--space-lg);
    overflow: hidden;
    border-right: 1px solid var(--color-border);
}

.opp-column:last-child {
    border-right: none;
}

@media screen and (max-width: 992px) {
    .opp-column {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        min-height: 420px;
    }
    .opp-column:last-child {
        border-bottom: none;
    }
}

.opp-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
    filter: brightness(0.35) grayscale(20%);
}

.opp-column:hover .opp-bg {
    transform: scale(1.05);
    filter: brightness(0.5) grayscale(0%);
}

.opp-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Asymmetric Editorial Benefits Row */
.benefits-editorial {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: center;
}

@media screen and (max-width: 992px) {
    .benefits-editorial {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.benefits-list-editorial {
    list-style: none;
    padding: 0;
}

.benefit-item-editorial {
    display: grid;
    grid-template-columns: 80px 1fr;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.benefit-item-editorial:last-child {
    border-bottom: none;
}

.benefit-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}

.benefit-detail h3 {
    font-family: var(--font-alt);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-white);
}

.benefit-detail p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* --- Hero Split Panel (Vogue/Luxury Style) --- */
.hero-split-panel {
    display: flex;
    min-height: 90vh;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-espresso);
}
.hero-text-panel {
    flex: 1.2;
    padding: var(--space-xl) var(--space-lg) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--color-border);
}
.hero-image-panel {
    flex: 0.8;
    position: relative;
    background-color: #050505;
}
.hero-image-panel img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
}
.hero-image-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(24, 11, 15, 0.8) 0%, rgba(24, 11, 15, 0.2) 15%, transparent 40%, transparent 85%, rgba(24, 11, 15, 0.6) 100%),
                linear-gradient(to bottom, transparent 80%, rgba(24, 11, 15, 0.9) 100%);
    pointer-events: none;
}

@media screen and (max-width: 1150px) {
    .hero-split-panel {
        flex-direction: column-reverse;
        min-height: auto;
    }
    .hero-text-panel {
        padding: var(--space-lg) var(--space-md);
        border-right: none;
        border-top: 1px solid var(--color-border);
    }
    .hero-image-panel {
        height: 50vh;
        min-height: 350px;
    }
}

/* --- Sticky Split Section Layout --- */
.editorial-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    border-bottom: 1px solid var(--color-border);
    min-height: 50vh;
    background-color: var(--color-espresso);
    position: relative;
}

.editorial-sidebar {
    padding: var(--space-xl) var(--space-lg);
    border-right: 1px solid var(--color-border);
    position: sticky;
    top: 80px; /* Under the header */
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--color-beige-bg);
    z-index: 10;
}

.editorial-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--color-gold);
    opacity: 0.15;
    font-weight: 300;
}

.editorial-meta {
    margin-top: auto;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.editorial-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-family: var(--font-alt);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.editorial-content {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
}

@media screen and (max-width: 1150px) {
    .editorial-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .editorial-sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: var(--space-lg) var(--space-md);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-md);
    }
    .editorial-num {
        font-size: 3rem;
        line-height: 1;
        opacity: 0.25;
    }
    .editorial-meta {
        margin-top: 0;
        text-align: right;
    }
    .editorial-title {
        font-size: 1.6rem;
        margin-bottom: 0;
    }
    .editorial-content {
        padding: var(--space-lg) var(--space-md);
    }
}

/* --- Luxury Background & Aesthetic Overlays --- */
body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: -20vh;
    left: -20vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(227, 204, 161, 0.05) 0%, rgba(227, 204, 161, 0) 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
    animation: floatOrb1 25s infinite alternate ease-in-out;
}

body::after {
    content: "";
    position: fixed;
    bottom: -20vh;
    right: -20vw;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(163, 139, 98, 0.04) 0%, rgba(163, 139, 98, 0) 70%);
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
    animation: floatOrb2 30s infinite alternate ease-in-out;
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15vw, 15vh) scale(1.15); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15vw, -15vh) scale(1.1); }
}

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.015; /* ultra-subtle luxury organic texture */
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.grid-lines-overlay {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width, 1200px);
    height: 100vh;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: -1;
}

.grid-lines-overlay::before,
.grid-lines-overlay::after,
.grid-lines-overlay .line-inner {
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(227, 204, 161, 0) 0%, rgba(227, 204, 161, 0.04) 30%, rgba(227, 204, 161, 0.04) 70%, rgba(227, 204, 161, 0) 100%);
}

.grid-lines-overlay .line-inner {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #100609;
}
::-webkit-scrollbar-thumb {
    background: #b2956e;
}
::-webkit-scrollbar-thumb:hover {
    background: #ebd7bd;
}

/* ==========================================================================
   Light Theme Override Variables and Components Style Rules
   ========================================================================== */
body.light-theme {
    --color-primary: #180b0f;
    --color-espresso: #faf8f5;
    --color-gold: #c29d53;
    --color-champagne: #180b0f;
    --color-cream: #f5eedf;
    --color-ivory: #ffffff;
    --color-beige-bg: #faf8f5;
    --color-coral-rose: #a38b62;
    --color-text-main: #180b0f;
    --color-text-muted: #5c4e51;
    --color-border: rgba(24, 11, 15, 0.12);
    --color-border-dark: rgba(24, 11, 15, 0.25);
    background-color: var(--color-ivory);
    color: var(--color-text-main);
}
body.light-theme .card,
body.light-theme .calculator-container,
body.light-theme .quiz-option,
body.light-theme #quiz-container {
    background-color: var(--color-cream) !important;
    border-color: var(--color-border) !important;
}
body.light-theme .header {
    background-color: var(--color-ivory) !important;
}
body.light-theme .nav-menu {
    background-color: var(--color-ivory) !important;
}
body.light-theme .footer {
    background-color: #f5eedf !important;
    color: #180b0f !important;
}
body.light-theme .footer h5 {
    color: #180b0f !important;
}
body.light-theme .logo-text,
body.light-theme .logo-text span {
    color: #180b0f !important;
}
body.light-theme .nav-link {
    color: #180b0f !important;
}
body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: var(--color-gold) !important;
}
body.light-theme .btn-secondary {
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
}
body.light-theme .btn-secondary:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-ivory) !important;
}

/* --- Quiz Progress Bar Styles --- */
.quiz-progress-container {
    width: 100%;
    height: 4px;
    background-color: rgba(227, 204, 161, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.quiz-progress-bar {
    height: 100%;
    width: 33.3%;
    background: var(--gold-luxury);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Earnings Slider Styles --- */
.earnings-slider-box {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    background-color: rgba(227, 204, 161, 0.03);
    border-radius: var(--radius-md);
}
.earnings-slider-row {
    margin-bottom: 20px;
}
.earnings-slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}
.earnings-slider-input {
    width: 100%;
    height: 6px;
    background: rgba(227, 204, 161, 0.15);
    outline: none;
    border-radius: 3px;
    accent-color: var(--color-gold);
    -webkit-appearance: none;
}
.earnings-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-luxury);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border: none;
}
.earnings-result-box {
    text-align: center;
    padding: 20px;
    background: rgba(227, 204, 161, 0.05);
    border: 1px solid var(--color-border);
    margin-top: 15px;
}

/* --- Success Journey Timeline --- */
.journey-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}
.journey-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}
.journey-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: var(--space-md);
    background: rgba(227, 204, 161, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-main);
    font-family: var(--font-body);
}
.journey-tab:hover, .journey-tab.active {
    background: rgba(227, 204, 161, 0.08);
    border-color: var(--color-gold);
    transform: translateX(5px);
}
.journey-tab-num {
    font-family: var(--font-alt);
    font-size: 1.2rem;
    color: var(--color-gold);
}
.journey-tab-text {
    font-size: 0.95rem;
    font-weight: 500;
}
.journey-content-card {
    background: rgba(227, 204, 161, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
}
.journey-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.journey-pane.active {
    display: block;
    opacity: 1;
}
.journey-pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-md);
}
.journey-badge {
    background: rgba(227, 204, 161, 0.1);
    color: var(--color-gold);
    padding: 4px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    font-weight: bold;
}
.journey-income {
    font-family: var(--font-alt);
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 500;
}
.journey-pane h3 {
    font-family: var(--font-alt);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}
.journey-pane p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}
.journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.journey-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text-main);
}
.journey-list li span {
    color: var(--color-gold);
    font-weight: bold;
}

/* --- Luxury Success Ticker --- */
.success-ticker-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #100609 0%, #180b0f 50%, #100609 100%);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    z-index: 100;
    position: relative;
}
body.light-theme .success-ticker-container {
    background: linear-gradient(90deg, #faf8f5 0%, #f5eedf 50%, #faf8f5 100%);
}
.success-ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    width: max-content;
}
.success-ticker-track:hover {
    animation-play-state: paused;
    cursor: pointer;
}
.success-ticker-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-text-main);
    letter-spacing: 0.05em;
    font-weight: 300;
}
.success-ticker-item strong {
    color: var(--color-gold);
    font-weight: 500;
    margin: 0 4px;
}
@keyframes ticker-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .journey-wrapper {
        grid-template-columns: 1fr;
    }
    .journey-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .journey-tab {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 10px 15px;
    }
    .journey-tab:hover, .journey-tab.active {
        transform: none;
    }
}




/* --- Success Stories Carousel Styles (Premium Luxury) --- */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 10px 10px;
}

.testimonial-photo-wrapper {
    position: relative;
    flex: 0 0 220px;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-photo-wrapper:hover .testimonial-photo {
    transform: scale(1.05);
}

.testimonial-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 6, 9, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 12px;
    font-size: 0.7rem;
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonial-body {
    flex: 1;
}

.testimonial-quote {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    font-weight: 300;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: rgba(227, 204, 161, 0.15);
    position: absolute;
    top: -25px;
    left: -20px;
    font-family: 'Playfair Display', serif;
}

.testimonial-author {
    display: block;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Slider Navigation Dots (Luxury Styling) */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold-luxury);
    border-color: var(--color-gold);
}

/* Mobile Responsiveness for Testimonials */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 10px 0;
    }
    .testimonial-photo-wrapper {
        flex: 0 0 200px;
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }
    .testimonial-quote {
        font-size: 1.05rem;
    }
    .testimonial-quote::before {
        left: 50%;
        transform: translateX(-50%);
        top: -35px;
    }
}


/* --- Premium Editorial Typography (Blog Content) --- */
.article-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}

.article-content p {
    margin-bottom: 20px;
    font-weight: 300;
}

.article-content h2, .article-content h3 {
    font-family: var(--font-alt);
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 35px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
    position: relative;
    padding-left: 15px;
}

.article-content h2::before, .article-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 2px;
    background-color: var(--color-gold);
}

.article-content ul, .article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
    list-style-type: none;
}

.article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-weight: 300;
}

.article-content ul li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.8rem;
}


/* --- Luxury Reviews Grid & Cards Styles --- */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    width: 100%;
    margin-top: 20px;
}

.review-card {
    background: linear-gradient(135deg, #180b0f 0%, #100609 100%);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

body.light-theme .review-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    box-shadow: 0 5px 15px rgba(24, 11, 15, 0.04);
}

body.light-theme .review-card:hover {
    box-shadow: 0 15px 35px rgba(24, 11, 15, 0.1);
}

.review-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-avatar-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 12px rgba(227, 204, 161, 0.3);
    flex-shrink: 0;
}

.review-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-meta-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-name {
    font-family: var(--font-alt);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.light-theme .review-name {
    color: #180b0f;
}

.review-status {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.review-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.review-badge-secure {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #cda472;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.review-body {
    margin-top: 5px;
}

.review-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    font-style: italic;
    font-weight: 300;
    position: relative;
}

body.light-theme .review-text {
    color: #4a4a4a;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    .review-card {
        padding: 20px;
    }
}

/* --- Surgical Copy Protection & Text Selection Controls --- */
.hero-split-panel, .editorial-section, .about-section, .footer-about, .slide, .review-card, .editorial-content {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Ensure contact links, forms and text inputs remain fully selectable for usability */
input, textarea, select, a, .lead-phone, .lead-email, .form-control {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* --- Benefits Editorial Layout --- */
.benefits-editorial {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-xl);
    align-items: start;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: rgba(16, 6, 9, 0.95);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    outline: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

.back-to-top i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}
