/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    --primary: #d97706; /* Amber/Gold for premium feel */
    --primary-dark: #b45309;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

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

/* =========================================
   BACKGROUND SHAPES (NO IMAGES)
   ========================================= */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(217,119,6,0.2) 0%, rgba(255,255,255,0) 70%);
    top: -10%; left: -10%;
}

.shape-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(255,255,255,0) 70%);
    bottom: 10%; right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, rgba(255,255,255,0) 70%);
    top: 40%; left: 30%;
    animation-delay: -10s;
}

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

/* =========================================
   UTILITIES & COMPONENTS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.12);
    border-color: rgba(217,119,6,0.3);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(217,119,6,0.4);
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(217,119,6,0.6);
    transform: translateY(-2px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span { color: var(--primary); }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.glass-nav {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px; height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(217,119,6,0.1);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(217,119,6,0.2);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.hero-text {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.trust-item {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.trust-item .counter {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-display);
    margin-right: 5px;
}

/* Animations */
.animate-fade-in { animation: fadeIn 1s ease forwards; opacity: 0; }
.animate-slide-up { animation: slideUp 0.8s ease forwards; opacity: 0; transform: translateY(30px); }
.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
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-features li {
    font-size: 0.85rem;
    color: #475569;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* =========================================
   PROCESS TIMELINE
   ========================================= */
.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
}

.timeline-item {
    flex: 1 1 200px;
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(217,119,6,0.2);
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item h3, .timeline-item p {
    position: relative;
    z-index: 1;
}

.timeline-item h3 { margin-bottom: 10px; margin-top: 20px; }
.timeline-item p { font-size: 0.9rem; color: #64748b; }

/* =========================================
   ARTICLE SECTION
   ========================================= */
.article-container {
    max-width: 850px;
}

.glass-article {
    padding: 50px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.prose h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #334155;
}

.prose p {
    margin-bottom: 20px;
    color: #334155;
    font-size: 1.05rem;
}

.prose a {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
}

.prose a:hover { border-bottom-style: solid; }

.callout-box {
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
    border-left: 4px solid;
}

.tip-box {
    background: rgba(16,185,129,0.1);
    border-color: #10b981;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    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(--primary);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 25px 25px;
    color: #64748b;
    line-height: 1.6;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stars { color: var(--primary); margin-bottom: 15px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: #475569; }

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

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

.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: #94a3b8; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.info-item .icon { font-size: 1.3rem; }
.info-item address { font-style: normal; }

.map-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255,255,255,0.8);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark);
    color: #cbd5e1;
    padding: 80px 0 30px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.brand-col .logo { color: white; margin-bottom: 20px; display: inline-block; }
.brand-col p { font-size: 0.95rem; line-height: 1.7; opacity: 0.8; }

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { opacity: 0.7; font-size: 0.95rem; }
.footer-col ul a:hover { opacity: 1; color: var(--primary); }
.footer-col p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 8px; }

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .glass-article { padding: 30px 20px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-indicators { gap: 25px; }
}