/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #d4af37; /* Gold */
    --primary-dark: #b4942a;
    --accent: #f3e5ab;
    --dark-bg: #0a0f1c;
    --card-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);
    --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.bg-darker { background: rgba(0,0,0,0.3); }

/* =========================================
   GLASSMORPHISM & BUTTONS
   ========================================= */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.btn-primary {
    display: inline-block; padding: 16px 36px;
    background: var(--gradient-gold);
    color: #0a0f1c; border-radius: 50px;
    font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; font-size: 0.85rem;
}
.btn-glow:hover { box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.btn-secondary {
    display: inline-block; padding: 16px 36px;
    border: 1px solid var(--glass-border);
    color: white; border-radius: 50px; font-weight: 600;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--primary); }
.full-width { width: 100%; text-align: center; }
.mt-2 { margin-top: 2rem; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; }
.accent { color: var(--primary); }
.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a:not(.btn-glow) { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.nav-links a:not(.btn-glow):hover { opacity: 1; color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 120px; overflow: hidden;
}
.floating-shape {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.3;
    animation: float 12s infinite ease-in-out; z-index: -1;
}
.shape-1 { width: 500px; height: 500px; background: var(--primary); top: -150px; right: -100px; }
.shape-2 { width: 400px; height: 400px; background: #4a3b1a; bottom: 5%; left: -100px; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.05); }
}

.hero-content { max-width: 850px; }
.badge {
    display: inline-block; padding: 10px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary); border-radius: 50px;
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 25px; border: 1px solid rgba(212, 175, 55, 0.3);
}
h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.1; margin-bottom: 30px;
    font-weight: 700; letter-spacing: -1px;
}
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 45px; max-width: 650px; font-weight: 300; }
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 70px; }

.trust-indicators { display: flex; gap: 25px; flex-wrap: wrap; }
.stat-card { padding: 25px 35px; text-align: center; min-width: 140px; }
.stat-card span { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.stat-card p { font-size: 0.75rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

.animate-fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
.animate-slide-up { animation: slideUp 0.9s ease forwards; opacity: 0; transform: translateY(40px); }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; } .delay-3 { animation-delay: 0.6s; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   SERVICES GRID
   ========================================= */
.section-header { text-align: center; margin-bottom: 70px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1.15rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card { padding: 45px 35px; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-12px); border-color: var(--primary); box-shadow: var(--shadow-glow); }
.icon-box { font-size: 2.8rem; margin-bottom: 25px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: white; }
.service-card p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; }
.service-card ul li { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; padding-left: 18px; position: relative; }
.service-card ul li::before { content: "✦"; color: var(--primary); position: absolute; left: 0; font-size: 0.7rem; top: 4px; }

/* =========================================
   ARTICLE SECTION
   ========================================= */
.article-layout { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.sticky-sidebar { position: sticky; top: 120px; padding: 35px; }
.toc-list li { margin-bottom: 14px; }
.toc-list a { color: var(--text-muted); font-size: 0.9rem; display: block; padding: 6px 0; border-left: 2px solid transparent; padding-left: 18px; transition: var(--transition); }
.toc-list a:hover, .toc-list a.active { color: var(--primary); border-left-color: var(--primary); }
.sidebar-cta { margin-top: 35px; padding-top: 35px; border-top: 1px solid var(--glass-border); text-align: center; }
.sidebar-cta p { margin-bottom: 18px; font-weight: 600; font-family: 'Playfair Display', serif; font-size: 1.1rem; }

.article-content h2 { font-size: 2.2rem; margin: 60px 0 25px; color: var(--primary); }
.article-content h3 { font-size: 1.6rem; margin: 35px 0 18px; color: white; }
.article-content p { margin-bottom: 22px; color: #cbd5e1; font-size: 1.05rem; }
.article-content ul, .article-content ol { margin: 0 0 30px 25px; color: #cbd5e1; }
.article-content li { margin-bottom: 12px; }
.article-content ul li { list-style-type: disc; }
.article-content ol li { list-style-type: decimal; }

.lead { font-size: 1.35rem !important; color: white !important; font-weight: 300; border-left: 3px solid var(--primary); padding-left: 25px; margin-bottom: 35px !important; font-style: italic; }
.inline-link { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.inline-link:hover { color: var(--accent); }

.callout-box, .warning-box { padding: 30px; margin: 35px 0; border-left: 3px solid var(--primary); }
.warning-box { border-left-color: #ef4444; background: rgba(239, 68, 68, 0.08); }
.tip-box { background: rgba(212, 175, 55, 0.08); }

.comparison-table { padding: 0; overflow: hidden; margin: 35px 0; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 18px 25px; text-align: left; border-bottom: 1px solid var(--glass-border); }
.comparison-table th { background: rgba(212, 175, 55, 0.1); color: var(--primary); font-weight: 700; font-family: 'Playfair Display', serif; }
.comparison-table td { color: var(--text-muted); }

.article-meta { display: flex; gap: 12px; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 35px; text-transform: uppercase; letter-spacing: 2px; }

/* =========================================
   TIMELINE
   ========================================= */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 25px; margin-top: 50px; }
.timeline-item { padding: 35px 25px; text-align: center; position: relative; }
.step-number { font-size: 3rem; font-weight: 700; color: rgba(212, 175, 55, 0.15); font-family: 'Playfair Display', serif; margin-bottom: 15px; line-height: 1; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--primary); }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); }

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-grid { max-width: 900px; margin: 0 auto; display: grid; gap: 18px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
    padding: 28px 35px; cursor: pointer; font-weight: 600;
    font-size: 1.1rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Playfair Display', serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.8rem; color: var(--primary); transition: var(--transition); font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 35px 28px; color: var(--text-muted); line-height: 1.7; }
.faq-item:hover { border-color: var(--primary); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.testimonial-card { padding: 45px; display: flex; flex-direction: column; gap: 25px; }
.stars { color: var(--primary); font-size: 1.1rem; letter-spacing: 3px; }
.reviewer { display: flex; align-items: center; gap: 18px; margin-top: auto; }
.avatar-initials {
    width: 55px; height: 55px; background: var(--gradient-gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: #0a0f1c;
}
.reviewer strong { display: block; color: white; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.reviewer span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 70px; }
.contact-info h2 { font-size: 2.8rem; margin-bottom: 25px; color: var(--primary); }
.contact-info > p { color: var(--text-muted); margin-bottom: 45px; font-size: 1.1rem; }
.info-item { margin-bottom: 30px; }
.info-item .label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 8px; }
.info-item .value { font-size: 1.4rem; font-weight: 600; color: white; font-family: 'Playfair Display', serif; }
.info-item a.value:hover { color: var(--primary); }

.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px; background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border); border-radius: 8px;
    color: white; font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: rgba(255,255,255,0.07);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: #050810; padding: 90px 0 35px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 70px; }
.footer-col h3 { font-size: 1.6rem; margin-bottom: 25px; color: var(--primary); }
.footer-col h4 { font-size: 1rem; margin-bottom: 25px; color: white; text-transform: uppercase; letter-spacing: 2px; }
.footer-col p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.95rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); padding-left: 8px; }
.copyright { text-align: center; padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.8rem; letter-spacing: 1px; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .article-layout { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; margin-bottom: 50px; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 45px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 80px; left: 0; right: 0;
        background: rgba(10, 15, 28, 0.98); backdrop-filter: blur(25px);
        flex-direction: column; padding: 50px; gap: 30px;
        transform: translateY(-150%); transition: var(--transition);
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { transform: translateY(0); }
    .mobile-toggle { display: block; }
    h1 { font-size: 2.4rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { text-align: center; }
    .trust-indicators { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .section-padding { padding: 70px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .contact-wrapper { padding: 30px; }
}