/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #2d3e50;
    --accent: #c9a66b;
    --accent-glow: rgba(201, 166, 107, 0.4);
    --dark: #0f172a;
    --light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --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; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding { padding: 5rem 0; }
.bg-alt { background: #f1f5f9; }
.text-center { text-align: center; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.25rem; color: #475569; }

.tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px var(--accent-glow); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: white; }

.btn-glow {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.full-width { width: 100%; }

/* Glassmorphism Card */
.glass-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}
.glass-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* =========================================
   NAVIGATION
   ========================================= */
.glass-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}
.glass-nav.scrolled {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0.75rem 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; }
.nav-links a:not(.btn-glow):hover { color: var(--accent); }

.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fdfbf7 0%, #eef2f6 100%);
    overflow: hidden;
    padding-top: 80px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: var(--accent-glow); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: rgba(45,62,80,0.1); bottom: 10%; left: -50px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
    display: inline-block;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.hero-text { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 600px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.trust-indicators { display: flex; gap: 3rem; }
.stat-item span { font-size: 2.5rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; }
.stat-item p { font-size: 0.9rem; margin: 0; font-weight: 500; }

/* Animations */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* =========================================
   SERVICES GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card { text-align: center; }
.icon-box {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--accent), #b08d55);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    color: white; font-size: 1.75rem;
}

/* =========================================
   PROCESS TIMELINE
   ========================================= */
.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
    gap: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 35px; left: 0; right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}
.timeline-item {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 180px;
    text-align: center;
    background: #f1f5f9; /* Matches bg-alt */
    padding-top: 10px;
}
.step-number {
    width: 50px; height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid #f1f5f9;
}

/* =========================================
   ARTICLE STYLES
   ========================================= */
.article-container { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; gap: 2rem; margin-bottom: 2rem; font-size: 0.9rem; color: #64748b; }
.article-meta i { margin-right: 0.5rem; color: var(--accent); }
.article-title { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid #e2e8f0; }
.article-content h2 { margin-top: 3rem; margin-bottom: 1.5rem; }
.article-content a { color: var(--accent); font-weight: 600; border-bottom: 1px dashed var(--accent); }
.article-content a:hover { border-bottom-style: solid; }

.callout-box {
    background: #fffbeb;
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}
.callout-box h4 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; color: #92400e; }
.callout-box p { margin: 0; color: #78350f; }

.checklist li {
    padding: 0.5rem 0;
    display: flex; align-items: center; gap: 0.75rem;
}
.checklist i { color: #10b981; }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: var(--transition); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.5rem; margin: 0; font-size: 0.95rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.stars { color: #fbbf24; margin-bottom: 1rem; }
.author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.avatar {
    width: 50px; height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.author strong { display: block; }
.author span { font-size: 0.85rem; color: #64748b; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.info-item { display: flex; gap: 1rem; margin: 1.5rem 0; align-items: flex-start; }
.info-item i { color: var(--accent); font-size: 1.25rem; margin-top: 0.25rem; }
.info-item a { font-weight: 600; display: block; margin-top: 0.25rem; }
.info-item p { margin: 0.25rem 0 0; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--dark); color: #94a3b8; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col .logo { color: white; margin-bottom: 1rem; display: inline-block; }
.footer-col h4 { color: white; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-size: 1rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); border-color: var(--accent); color: white; }
.copyright { text-align: center; padding: 1.5rem 0; font-size: 0.85rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { display: none; }
    .timeline { flex-direction: column; }
    .timeline-item { background: transparent; padding: 0; text-align: left; display: flex; align-items: center; gap: 1.5rem; }
    .step-number { margin: 0; flex-shrink: 0; }
}

@media (max-width: 768px) {
    .nav-links { 
        position: fixed; top: 0; right: -100%; 
        width: 80%; height: 100vh; 
        background: white; 
        flex-direction: column; 
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    .hero-content { text-align: center; }
    .hero-btns { justify-content: center; }
    .trust-indicators { justify-content: center; flex-wrap: wrap; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    h1 { font-size: 2.25rem; }
}