/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary: #6366f1; /* Indigo */
    --primary-dark: #4f46e5;
    --accent: #ec4899; /* Pink accent */
    --dark-bg: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-text: linear-gradient(to right, #818cf8, #f472b6);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-main);
    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; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 100px 0; }
.bg-darker { background: rgba(0,0,0,0.2); }

/* =========================================
   BACKGROUND ANIMATION
   ========================================= */
.bg-shapes {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -10%; left: -10%;
}

.shape-2 {
    width: 500px; height: 500px;
    background: var(--accent);
    bottom: 10%; right: -5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px; height: 300px;
    background: #8b5cf6;
    top: 40%; left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* =========================================
   GLASSMORPHISM UTILITIES
   ========================================= */
.glass-card, .glass-nav {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.glass-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

/* =========================================
   TYPOGRAPHY & BUTTONS
   ========================================= */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }

.sub-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.btn-primary, .btn-secondary, .btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-glow {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    padding: 10px 24px;
}

.btn-glow:hover { background: white; color: var(--dark-bg); }

.full-width { width: 100%; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
}

.logo i { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-glow-mobile) {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-glow-mobile)::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-links a:not(.btn-glow-mobile):hover::after { width: 100%; }

.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.desktop-only { display: inline-flex; }
.btn-glow-mobile { display: none; }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
}

.hero-content { max-width: 900px; }

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--primary); }

.floating-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
    width: 100%;
}

.stat-card {
    padding: 25px;
    text-align: center;
}

.stat-card span {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-card p { font-size: 0.9rem; color: var(--text-muted); margin-top: 5px; }

/* =========================================
   SERVICES GRID
   ========================================= */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { color: var(--text-muted); margin-top: 10px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.icon-box {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card .features { margin-top: 20px; }
.service-card .features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-card .features li i { color: var(--accent); font-size: 0.7rem; }

/* =========================================
   TIMELINE
   ========================================= */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 30px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item .number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    z-index: 2;
}

.timeline-item .content { padding: 25px; flex: 1; }

/* =========================================
   ARTICLE STYLES
   ========================================= */
.article-container { max-width: 900px; }
.article-meta { margin-bottom: 50px; border-bottom: 1px solid var(--glass-border); padding-bottom: 30px; }
.article-meta .category { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.article-meta .lead { font-size: 1.3rem; color: var(--text-muted); margin-top: 20px; font-style: italic; }

.article-content h2 { margin-top: 50px; margin-bottom: 20px; color: white; }
.article-content h3 { margin-top: 30px; margin-bottom: 15px; color: #cbd5e1; }
.article-content p { margin-bottom: 20px; color: #cbd5e1; font-size: 1.05rem; }
.article-content ul, .article-content ol { margin-bottom: 25px; padding-left: 25px; color: #cbd5e1; }
.article-content li { margin-bottom: 10px; position: relative; list-style: disc; }
.article-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--accent); }

.callout-box {
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--accent);
    background: rgba(236, 72, 153, 0.05);
}
.callout-box h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; color: var(--accent); }

.comparison-table { overflow-x: auto; margin: 30px 0; border-radius: 12px; border: 1px solid var(--glass-border); }
.comparison-table table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--glass-border); }
.comparison-table th { background: rgba(99, 102, 241, 0.1); color: var(--primary); font-weight: 600; }
.comparison-table tr:last-child td { border-bottom: none; }

.article-cta-box {
    text-align: center;
    padding: 50px;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.1));
}

/* FAQ Accordion */
.faq-section { margin-top: 40px; }
.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
}
.faq-item summary {
    padding: 20px;
    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 20px 20px; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card { padding: 30px; }
.stars { color: #fbbf24; margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; color: #cbd5e1; margin-bottom: 20px; }
.author { display: flex; align-items: center; gap: 15px; }
.initials {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.author strong { display: block; font-size: 0.95rem; }
.author span { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info, .contact-form { padding: 40px; }
.contact-info h2, .contact-form h3 { margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 30px; }

.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-item i {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(99,102,241,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.info-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 3px; }
.info-item a, .info-item span { font-size: 1.05rem; font-weight: 500; }
.info-item a:hover { color: var(--primary); }

.hours-box {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
}
.hours-box h4 { margin-bottom: 10px; font-size: 1rem; }
.hours-box li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text-muted); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(99,102,241,0.05);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo { font-size: 1.3rem; font-weight: 700; font-family: var(--font-display); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo i { color: var(--accent); }
.brand-col p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.social-icons a:hover { background: var(--primary); border-color: var(--primary); }

.footer-col h4 { margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact li { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.footer-contact li i { color: var(--primary); width: 16px; }

.copyright {
    border-top: 1px solid var(--glass-border);
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    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: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    .desktop-only { display: none; }
    .btn-glow-mobile { display: inline-flex; margin-top: 20px; }
    
    .hero { padding-top: 120px; min-height: auto; padding-bottom: 60px; }
    h1 { font-size: 2.2rem; }
    
    .floating-stats { grid-template-columns: 1fr; margin-top: 40px; }
    .timeline::before { left: 20px; }
    .timeline-item .number { width: 40px; height: 40px; font-size: 0.9rem; }
    .timeline-item { gap: 15px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-padding { padding: 60px 0; }
}