/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #DC9750;
    --primary-dark: #C68A3E;
    --primary-light: #F5E6D3;
    --primary-gradient: linear-gradient(135deg, #DC9750 0%, #C68A3E 100%);
    --dark-bg: #1A1106;
    --dark-card: #2C1A0A;
    --dark-border: #3D2A18;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Font Import - Add to HTML head instead */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap'); */

/* ============================================
   GLASSMORPHISM UTILITY
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.glass-card {
    background: rgba(44, 26, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(220, 151, 80, 0.3);
    box-shadow: 0 20px 60px rgba(220, 151, 80, 0.08);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(220, 151, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 151, 80, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(26, 17, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.nav-logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: white;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    padding: 8px 20px;
    background: var(--primary-gradient);
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
}

.nav-cta:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - FIXED CENTERING
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(220, 151, 80, 0.15);
    border-radius: 50%;
    animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-60px) scale(1.5); opacity: 0.8; }
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark-card);
    border-radius: 36px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 0 auto;
}

.hero-phone-mockup .screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: var(--dark-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.mockup-icon { font-size: 48px; margin-bottom: 16px; }
.mockup-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.mockup-subtitle { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
.mockup-verse { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; font-style: italic; max-width: 200px; }
.mockup-verse span { color: var(--primary); font-style: normal; font-weight: 600; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features, .journeys, .cta-section, .page-content {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card { text-align: center; padding: 32px 24px; }
.feature-icon { width: 64px; height: 64px; background: rgba(220, 151, 80, 0.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

/* ============================================
   JOURNEYS
   ============================================ */
.journeys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.journey-item {
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: var(--transition);
}

.journey-item:hover {
    border-color: rgba(220, 151, 80, 0.2);
    background: rgba(220, 151, 80, 0.05);
}

.journey-number { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.journey-item h4 { font-size: 14px; font-weight: 600; margin: 8px 0 4px; }
.journey-item p { font-size: 12px; color: rgba(255, 255, 255, 0.5); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(220, 151, 80, 0.05) 100%);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   PAGE CONTENT (About, Privacy, Contact, etc.)
   ============================================ */
.page-content {
    padding-top: 120px;
}

.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--primary);
}

.page-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 800px;
}

.page-content ul, .page-content ol {
    padding-left: 24px;
    margin: 12px 0 20px;
    max-width: 800px;
}

.page-content li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.page-content .last-updated {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
}

.contact-info-item .icon { font-size: 24px; }
.contact-info-item .label { font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.contact-info-item .value { font-size: 16px; font-weight: 500; color: white; }
.contact-info-item .value a { color: var(--primary); text-decoration: none; }

.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: rgba(255, 255, 255, 0.7); }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.blog-card .blog-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.blog-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 40px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
}

.footer-grid h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.footer-grid p, .footer-grid a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: var(--transition);
}

.footer-grid a:hover { color: var(--primary); }

.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-links a { font-size: 20px; text-decoration: none; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE - COMPLETE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--dark-card);
        padding: 20px;
        border-radius: 12px;
        position: absolute;
        top: 70px;
        right: 20px;
        min-width: 200px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }
    .hero-text h1 { font-size: 36px; }
    .hero-phone-mockup { width: 220px; height: 440px; }
    .section-header h2, .cta-section h2, .page-content h1 { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .journeys-grid { grid-template-columns: 1fr 1fr; }
    .glass-card { padding: 20px; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .journeys-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 28px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .hero-phone-mockup { width: 180px; height: 360px; }
    .mockup-verse { font-size: 11px; max-width: 140px; }
    .mockup-title { font-size: 18px; }
    .mockup-icon { font-size: 36px; }
    .page-content h1 { font-size: 28px; }
    .page-content h2 { font-size: 22px; }
    .contact-grid { grid-template-columns: 1fr; }
}