/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

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

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; }
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn):hover { color: var(--accent); }

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

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

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

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

.hero-content { max-width: 800px; position: relative; z-index: 2; }
.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(6, 182, 212, 0.15);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }
.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 60px; }

.trust-indicators { display: flex; gap: 20px; flex-wrap: wrap; }
.stat-card {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}
.stat-card i { color: var(--accent); font-size: 1.2rem; }

/* Animation Classes */
.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(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.icon-box {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.features li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.features i { color: var(--accent); font-size: 0.8rem; }

/* =========================================
   STATS & PROCESS
   ========================================= */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item { text-align: center; padding: 40px 20px; }
.counter { font-size: 3rem; font-weight: 800; font-family: var(--font-heading); background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-item p { margin-top: 10px; color: var(--text-muted); font-weight: 500; }

.timeline { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 40px; }
.timeline-item { flex: 1 1 200px; max-width: 220px; text-align: center; position: relative; }
.number {
    font-size: 4rem; font-weight: 900; opacity: 0.1;
    font-family: var(--font-heading);
    line-height: 1; margin-bottom: -20px;
    position: relative; z-index: 0;
}
.timeline-item h3 { position: relative; z-index: 1; margin-bottom: 10px; color: var(--accent); }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); }

/* =========================================
   ARTICLE SECTION
   ========================================= */
.article-container { max-width: 800px; margin: 0 auto; }
.article-section h1 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.article-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--glass-border); }
.article-meta i { margin-right: 6px; color: var(--accent); }

.article-section h2 { font-family: var(--font-heading); font-size: 1.8rem; margin: 50px 0 20px; color: white; }
.article-section h3 { font-size: 1.3rem; margin: 30px 0 15px; color: var(--accent); }
.article-section p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.05rem; }
.intro { font-size: 1.2rem !important; color: var(--text-main) !important; font-weight: 500; }

/* =========================================
   FAQ & TESTIMONIALS
   ========================================= */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 20px; }
.faq-item { padding: 25px 30px; cursor: pointer; transition: 0.3s; }
.faq-item[open] { border-color: var(--accent); }
summary { font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: 0.3s; }
details[open] summary::after { content: '-'; transform: rotate(180deg); }
.faq-item p { margin-top: 15px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { padding: 35px; }
.stars { color: #fbbf24; margin-bottom: 15px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card > p { font-style: italic; margin-bottom: 25px; color: var(--text-main); }
.client { display: flex; align-items: center; gap: 15px; }
.avatar {
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.client strong { display: block; font-size: 0.95rem; }
.client span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   CONTACT & FOOTER
   ========================================= */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { padding: 50px; display: flex; flex-direction: column; gap: 25px; }
.contact-info h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; font-size: 1.05rem; }
.info-item i { color: var(--accent); margin-top: 5px; width: 20px; text-align: center; }
.map-btn { margin-top: 20px; justify-content: center; }

.contact-form { padding: 50px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group select {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px; color: white;
    font-size: 1rem; outline: none; transition: 0.3s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group select option { background: var(--dark); }

.footer { background: rgba(0,0,0,0.3); padding: 80px 0 40px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 20px; }
.footer h4 { font-size: 1rem; margin-bottom: 20px; color: var(--accent); }
