/* =========================================
   EXCLUSIVE DETAILERS - MODERN SAAS THEME
   Glassmorphism + Gradient Accents
   ========================================= */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #06b6d4;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --glass-blur: blur(16px);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    --radius-lg: 20px;
    --radius-md: 12px;
    --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', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Background Ambient Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Buttons */
.btn-glow {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-main);
    color: white; font-weight: 600; border-radius: 50px;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
    border: none; cursor: pointer; font-size: 1rem;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(99,102,241,0.5); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-main); font-weight: 600; border-radius: 50px;
    transition: var(--transition); font-size: 1rem;
}
.btn-outline:hover { border-color: var(--primary); background: rgba(99,102,241,0.1); }

/* Glass Card Base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Navigation */
.glass-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4rem; font-weight: 800; color: white; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: white; }
.nav-cta { padding: 10px 24px !important; font-size: 0.9rem !important; }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; }

/* Hero */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 140px 0 80px; position: relative; text-align: center;
}
.hero-content { max-width: 900px; margin: 0 auto; }
.badge {
    display: inline-block; padding: 8px 20px;
    background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--accent); margin-bottom: 24px;
}
.hero-subtitle { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.trust-indicators { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.trust-item { font-size: 1.1rem; font-weight: 600; color: var(--text-muted); }
.trust-item .counter { color: white; font-size: 1.5rem; margin-right: 4px; }

/* Sections */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { font-size: 1.15rem; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { color: white; }

/* Article */
.article-container { max-width: 850px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; margin-bottom: 32px; font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.article-section h2 { margin-top: 48px; color: white; }
.article-section h3 { margin-top: 32px; color: var(--accent); }
.article-section p { font-size: 1.1rem; line-height: 1.9; }
.article-section a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-section a:hover { color: white; }

/* FAQ */
.faq-grid { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
    padding: 24px 32px; cursor: pointer; font-weight: 600; font-size: 1.1rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    color: white; transition: var(--transition);
}
.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[open] summary { background: rgba(99,102,241,0.1); }
.faq-item p { padding: 0 32px 24px; margin: 0; font-size: 1rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.reviewer { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.initials {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-main); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: white;
}
.info strong { display: block; color: white; }
.info span { font-size: 0.85rem; color: var(--text-muted); }

/* Contact */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-details { display: grid; gap: 20px; margin: 32px 0; }
.contact-item .label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 4px; font-weight: 700; }
.contact-item a, .contact-item span { font-size: 1.1rem; color: white; }
.contact-item a:hover { color: var(--accent); }
.map-btn { width: 100%; margin-top: 16px; }
.contact-form h3 { margin-bottom: 24px; color: white; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-light);
    border-radius: var(--radius-md); color: white; font-size: 1rem;
    transition: var(--transition); font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: rgba(99,102,241,0.05);
}
.submit-btn { width: 100%; }

/* Footer */
.site-footer { padding: 80px 0 0; border-top: 1px solid var(--border-light); margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.85rem; margin: 0; }

/* Animations */
.animate-fade-in { animation: fadeIn 0.8s 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); } }

/* Scroll Reveal Class (added via JS) */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    h1 { font-size: 2rem; }
    .section { padding: 60px 0; }
    .glass-card { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-indicators { gap: 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-glow, .btn-outline { width: 100%; }
}