/* 
 * Skkin Aura Landing Page Style Sheet 
 * Cohesive Color Scheme: Dark Luxury, Warm HSL Gold Highlights, Soft Champagne Details
 */

/* ==========================================
   CSS Custom Variables & Design Tokens
   ========================================== */
:root {
    --color-primary: hsl(36, 45%, 55%);      /* Warm Luxury Gold #C2A278 */
    --color-primary-light: hsl(36, 45%, 65%);
    --color-primary-dark: hsl(36, 45%, 40%);
    --color-accent: hsl(20, 35%, 65%);       /* Soft Rose Gold */
    --color-bg-dark: hsl(210, 11%, 6%);      /* Deep Luxury Onyx Black */
    --color-bg-card: hsl(210, 11%, 10%);     /* Secondary Dark Card */
    --color-text-light: hsl(38, 40%, 96%);   /* Soft Champagne White */
    --color-text-muted: hsl(210, 5%, 65%);   /* Muted Platinum Gray */
    --color-text-dark: hsl(210, 11%, 15%);   
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-gold-glow: 0 10px 30px rgba(194, 162, 120, 0.2);
    --glass-bg: rgba(18, 19, 21, 0.75);
    --glass-border: rgba(194, 162, 120, 0.15);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   Reset & Base Configurations
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==========================================
   Typography & Common Elements
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-accent {
    color: var(--color-primary);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(194, 162, 120, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Store Badge Buttons */
.btn-badge {
    background: #000;
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.btn-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-glow);
}

.badge-icon {
    font-size: 2rem;
    color: var(--color-primary-light);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-main {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
}

/* ==========================================
   Header Navigation Style
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 13, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(11, 12, 13, 0.9);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(194, 162, 120, 0.25));
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-light);
    letter-spacing: -0.3px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-top: 2px;
}

.logo-accent {
    color: var(--color-primary);
    font-style: italic;
}

.nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hamburger animation */
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-text-light);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 80% 30%, rgba(194, 162, 120, 0.08), transparent 50%),
                radial-gradient(circle at 10% 70%, rgba(210, 171, 153, 0.06), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(194, 162, 120, 0.1);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-primary-light);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.tagline-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-stars {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Smartphone Mockup Frame Styling
   ========================================== */
.hero-showcase {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-wrapper {
    position: relative;
    z-index: 10;
}

.phone-frame {
    width: 310px;
    height: 640px;
    background: #0f1011;
    border: 12px solid #2d2e30;
    border-radius: 44px;
    box-shadow: var(--shadow-premium), 0 0 0 2px rgba(194, 162, 120, 0.15);
    position: relative;
    overflow: hidden;
}

.phone-frame.compact {
    width: 270px;
    height: 550px;
    border: 10px solid #2d2e30;
    border-radius: 38px;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 24px;
    background: #2d2e30;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 50;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.slider-container,
.showroom-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-img,
.showroom-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slider-img.active,
.showroom-img.active {
    opacity: 1;
}

.phone-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(194, 162, 120, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(20px);
}

.phone-shadow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
    z-index: -1;
}

/* Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   Section Presets
   ========================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* ==========================================
   Features Section Style
   ========================================== */
.features {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-card) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(194, 162, 120, 0.03);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(194, 162, 120, 0.08);
    border-radius: var(--border-radius-md);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Showroom Section Style
   ========================================== */
.showroom {
    background: var(--color-bg-dark);
}

.showroom-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.showroom-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: rgba(194, 162, 120, 0.06);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-gold-glow);
}

.tab-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary-light);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.tab-btn.active .tab-num {
    opacity: 1;
}

.tab-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.tab-btn.active .tab-label {
    color: var(--color-text-light);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 48px;
    border-radius: var(--border-radius-lg);
    min-height: 520px;
}

.showroom-visual {
    display: flex;
    justify-content: center;
}

.showroom-phone-container {
    position: relative;
}

.showroom-details {
    position: relative;
}

.detail-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.detail-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.detail-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.35;
}

.detail-pane p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.detail-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-features i {
    color: var(--color-primary-light);
}

/* ==========================================
   How It Works Section Style
   ========================================== */
.how-it-works {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-card) 100%);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 36px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
}

.step-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-bg-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-gold-glow);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   Testimonials Section Style
   ========================================== */
.testimonials {
    background: var(--color-bg-dark);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.stars {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--color-text-light);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-bg-dark);
    font-size: 0.95rem;
}

.client-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================
   Download CTA Section Style
   ========================================== */
.download-cta {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-card) 100%);
}

.download-box {
    background: radial-gradient(circle at 10% 20%, rgba(194, 162, 120, 0.1), transparent 40%),
                rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1.10fr 0.90fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.download-content p {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-visual {
    display: flex;
    justify-content: center;
    position: relative;
    height: 380px;
}

.mockups-overlap {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.overlap-img {
    position: absolute;
    width: 200px;
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
    border: 6px solid #2d2e30;
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 5;
}

.phone-2 {
    top: 60px;
    right: 0;
    z-index: 4;
}

/* ==========================================
   Footer Style
   ========================================== */
.footer {
    background: #070809;
    padding-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 350px;
}

.socials {
    display: flex;
    gap: 14px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.socials a:hover {
    color: var(--color-primary-light);
    border-color: var(--glass-border);
    background: rgba(194, 162, 120, 0.08);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-primary-light);
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-text-light);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* ==========================================
   Viewport Intersections & Reveal System
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================
   Responsive Media Queries
   ========================================== */
@media (max-width: 992px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 600px;
    }
    
    .showroom-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showroom-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 12px;
    }
    
    .tab-btn {
        flex: 1 0 auto;
    }
    
    .download-box {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        text-align: center;
        gap: 40px;
    }
    
    .download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .download-content p {
        max-width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f1011;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
    }
    
    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .showroom-content {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }
    
    .detail-pane {
        text-align: center;
    }
    
    .detail-features {
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .nav-toggle.open .hamburger {
        background: transparent;
    }
    
    .nav-toggle.open .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.open .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* ==========================================
   Legal & Information Pages Styling
   ========================================== */
.legal-hero {
    padding: 100px 0 24px;
    background: linear-gradient(180deg, rgba(194, 162, 120, 0.08) 0%, rgba(12, 13, 15, 0) 100%);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.legal-hero-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--color-primary-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194, 162, 120, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(194, 162, 120, 0.2);
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 24px 0 60px;
}

.legal-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 20px 14px;
}

.legal-sidebar-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-left: 10px;
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--color-text-muted);
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition-smooth);
    margin-bottom: 4px;
}

.legal-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.legal-nav-link:hover, .legal-nav-link.active {
    background: rgba(194, 162, 120, 0.12);
    color: var(--color-primary-light);
}

.legal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 28px 36px;
    box-shadow: var(--shadow-premium);
}

.legal-card-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-card-title i {
    color: var(--color-primary);
}

.legal-card-title + .legal-section,
.legal-card-title + p,
.legal-card-title + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.legal-section {
    margin-top: 0;
    margin-bottom: 28px;
    scroll-margin-top: 100px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section-title {
    font-size: 1.8rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section-title i {
    color: var(--color-primary);
}

.legal-subsection-title {
    font-size: 1.25rem;
    color: var(--color-primary-light);
    margin: 24px 0 12px;
}

.legal-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 4px;
}

.legal-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-primary);
    font-size: 0.85rem;
}

.legal-box {
    background: rgba(194, 162, 120, 0.05);
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

.legal-box p {
    margin-bottom: 8px;
}

.legal-box p:last-child {
    margin-bottom: 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(194, 162, 120, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.contact-card h4 {
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 24px;
    }
    
    .legal-content {
        padding: 28px 20px;
    }
}

