/* =============================================
   CheckIndia — Professional Light Theme
   ============================================= */

/* ── LIGHT THEME VARIABLES ── */
:root,
[data-theme="light"] {
    --primary:        #2563eb;
    --primary-dark:   #1d4ed8;
    --primary-light:  #3b82f6;
    --primary-xlight: #eff6ff;
    --accent:         #0ea5e9;
    --accent-dark:    #0284c7;
    --green:          #10b981;
    --orange:         #f59e0b;
    --danger:         #ef4444;

    --text:           #0f172a;
    --text-secondary: #475569;
    --text-light:     #94a3b8;

    --bg:             #ffffff;
    --bg-soft:        #f8faff;
    --bg-secondary:   #f1f5f9;
    --bg-card:        #ffffff;

    --border:         #e2e8f0;
    --border-light:   #f1f5f9;

    --shadow-xs:  0 1px 3px rgba(15,23,42,0.06);
    --shadow-sm:  0 2px 8px rgba(15,23,42,0.08);
    --shadow:     0 4px 20px rgba(15,23,42,0.08);
    --shadow-md:  0 8px 32px rgba(15,23,42,0.10);
    --shadow-lg:  0 16px 48px rgba(37,99,235,0.12);

    --navbar-bg:  rgba(255,255,255,0.96);
    --topbar-bg:  #f8faff;
    --topbar-text:#475569;
    --footer-bg:  #0f172a;
    --footer-text:#94a3b8;

    --radius:     10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --transition: 0.28s ease;
}

/* ── DARK THEME VARIABLES ── */
[data-theme="dark"] {
    --primary:        #3b82f6;
    --primary-dark:   #2563eb;
    --primary-light:  #60a5fa;
    --primary-xlight: #1e3a5f;
    --accent:         #38bdf8;
    --accent-dark:    #0ea5e9;
    --green:          #34d399;
    --orange:         #fbbf24;

    --text:           #f1f5f9;
    --text-secondary: #94a3b8;
    --text-light:     #64748b;

    --bg:             #0f172a;
    --bg-soft:        #111827;
    --bg-secondary:   #1e293b;
    --bg-card:        #1e293b;

    --border:         #334155;
    --border-light:   #1e293b;

    --shadow-xs:  0 1px 3px rgba(0,0,0,0.3);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
    --shadow:     0 4px 20px rgba(0,0,0,0.35);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.5);

    --navbar-bg:  rgba(15,23,42,0.97);
    --topbar-bg:  #0a0f1e;
    --topbar-text:#64748b;
    --footer-bg:  #060c18;
    --footer-text:#64748b;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    transition: background var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }
.section-sm  { padding: 64px 0; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--text); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.75; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-xlight);
    color: var(--primary);
    border: 1px solid rgba(37,99,235,0.15);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.section-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-primary  { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.btn-primary:hover  { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.4); }
.btn-accent   { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(14,165,233,0.3); }
.btn-accent:hover   { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn-green    { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.btn-green:hover    { background: #059669; color: #fff; transform: translateY(-2px); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover  { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }
.btn-white:hover    { background: var(--primary-xlight); color: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost    { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover    { background: rgba(255,255,255,0.22); color: #fff; }
.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--border);
    color: var(--topbar-text);
    font-size: 0.81rem;
    padding: 9px 0;
    transition: background var(--transition);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left a, .topbar-right a {
    color: var(--topbar-text);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.topbar-left a i { color: var(--primary); }
.topbar-left a:hover, .topbar-right a:hover { color: var(--primary); }
.topbar-right a { font-size: 0.82rem; }
.topbar-divider { width: 1px; height: 14px; background: var(--border); }

.theme-toggle {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    width: 30px; height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 0.8rem;
}
.theme-toggle:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
}
.nav-logo { font-size: 1.55rem; font-weight: 800; text-decoration: none; letter-spacing: -0.5px; display: flex; align-items: center; gap: 2px; }
.logo-icon { width: 32px; height: 32px; background: var(--primary); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; margin-right: 8px; }
.nav-logo-img { height: 44px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.logo-check { color: var(--primary); }
.logo-india { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block;
    padding: 8px 13px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: var(--primary-xlight); }
.nav-menu > li > a.active { font-weight: 600; }

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25) !important;
    font-weight: 600 !important;
    margin-left: 6px;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; box-shadow: 0 6px 18px rgba(37,99,235,0.35) !important; transform: translateY(-1px); }

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 268px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 0.87rem;
    border-radius: 8px;
    transition: all var(--transition);
}
.dropdown li a:hover { color: var(--primary); background: var(--primary-xlight); }
.dropdown li a i { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; background: var(--primary-xlight); color: var(--primary); border-radius: 6px; font-size: 0.75rem; flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* =============================================
   HERO / BANNER
   ============================================= */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-soft);
}
/* Light hero — two tone split */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(115deg, #dbeafe 0%, #eff6ff 40%, #f0fdf4 100%);
}
[data-theme="dark"] .hero-bg {
    background: linear-gradient(115deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
}
/* Decorative blobs */
.hero-blob-1 {
    position: absolute;
    top: -80px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.hero-blob-2 {
    position: absolute;
    bottom: -60px; left: 30%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
[data-theme="dark"] .hero-grid-pattern { opacity: 0.12; }

.hero-content {
    position: relative;
    z-index: 3;
    padding: 88px 0;
    max-width: 680px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-xlight);
    border: 1px solid rgba(37,99,235,0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-eyebrow .live-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--text); margin-bottom: 20px; }
.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    opacity: 0.4;
}
.hero-desc { color: var(--text-secondary); font-size: 1.08rem; margin-bottom: 36px; max-width: 540px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.83rem; font-weight: 500; }
.hero-trust-item i { color: var(--green); font-size: 0.95rem; }

/* Only hide blobs/grid when image is the bg — keep visual card visible */
.hero-has-image .hero-blob-1,
.hero-has-image .hero-blob-2,
.hero-has-image .hero-grid-pattern { display: none; }

/* Hero right card */
.hero-visual {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 46%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.hero-card-stack { position: relative; width: 100%; max-width: 380px; }
.hero-main-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
.hero-card-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.hero-stat-row { display: flex; gap: 16px; margin-bottom: 20px; }
.hero-mini-stat {
    flex: 1;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.hero-mini-stat .val { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-mini-stat .lbl { font-size: 0.72rem; color: var(--text-light); margin-top: 4px; }
.hero-check-list { display: flex; flex-direction: column; gap: 10px; }
.hero-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.hero-check-item .check-icon { width: 24px; height: 24px; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 0.7rem; flex-shrink: 0; }
.hero-float-badge {
    position: absolute;
    bottom: -16px; left: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
}
.hero-float-badge .badge-icon { width: 36px; height: 36px; background: #dcfce7; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1rem; }
.hero-float-badge strong { display: block; font-size: 0.88rem; color: var(--text); }
.hero-float-badge span { color: var(--text-light); font-size: 0.75rem; }

/* ── Hero background image mode ── */
.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-img-dark-overlay {
    display: none; /* removed — no dark overlay */
}
.hero-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
}
/* Text overrides when image banner is active */
.hero-has-image .hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 40px 44px;
    max-width: 620px;
}
/* keep normal text colors — no white text needed */
.text-white { color: var(--text) !important; }
.text-white-muted { color: var(--text-secondary) !important; }
.hero-eyebrow-light {
    background: var(--primary-xlight) !important;
    border-color: rgba(37,99,235,0.2) !important;
    color: var(--primary) !important;
}
.hero-eyebrow-light::before { background: var(--primary) !important; }
.hero-trust-light { border-top-color: var(--border) !important; }
.hero-trust-light .hero-trust-item { color: var(--text-secondary) !important; }
.hero-trust-light .hero-trust-item i { color: var(--green) !important; }

/* Dark mode — darken the glass card */
[data-theme="dark"] .hero-has-image .hero-content {
    background: rgba(15,23,42,0.82);
    border-color: rgba(255,255,255,0.1);
}

/* Hero Slider */
.hero-slider { position: relative; }
.hero-slide { display: none; }
.hero-slide.active { display: flex; align-items: center; min-height: 600px; }
.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; border: none; transition: all var(--transition); }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
}
.trust-bar-inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 500;
    border-right: 1px solid var(--border);
    flex: 1;
    justify-content: center;
    transition: background var(--transition);
    white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--primary-xlight); color: var(--primary); }
.trust-item i { color: var(--primary); font-size: 1rem; }

/* =============================================
   SERVICES
   ============================================= */
.services-section { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 20px; }
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(37,99,235,0.03), rgba(14,165,233,0.03));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37,99,235,0.25);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    background: var(--primary-xlight);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}
.service-card h3 { margin-bottom: 10px; font-size: 1rem; position: relative; z-index: 1; }
.service-card p { color: var(--text-secondary); font-size: 0.86rem; line-height: 1.7; position: relative; z-index: 1; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.83rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.service-link:hover { gap: 9px; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item {
    text-align: center;
    padding: 36px 24px;
    border-right: 1px solid var(--border);
    transition: background var(--transition);
    position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-xlight); }
.stat-icon {
    width: 52px; height: 52px;
    background: var(--primary-xlight);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.2rem;
    color: var(--primary);
}
.stat-item:hover .stat-icon { background: var(--primary); color: #fff; }
.stat-value { font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; letter-spacing: -1px; }
.stat-label { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; }

/* =============================================
   WHY US
   ============================================= */
.why-us-section { background: var(--bg-soft); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-us-img { position: relative; }
.why-us-img-main {
    border-radius: var(--radius-xl);
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-xlight) 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37,99,235,0.12);
    overflow: hidden;
    position: relative;
}
.why-us-img-main i { font-size: 5rem; color: rgba(37,99,235,0.15); }
.why-us-img-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 24px;
    opacity: 0.1;
    transform: rotate(20deg);
}
.why-us-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--primary);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.35);
}
.why-us-badge strong { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.why-us-badge span { font-size: 0.72rem; opacity: 0.85; letter-spacing: 0.5px; }

.why-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.why-feature:hover { border-color: rgba(37,99,235,0.25); box-shadow: var(--shadow-sm); }
.why-feature-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: var(--primary-xlight);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--primary);
}
.why-feature-text h4 { margin-bottom: 3px; font-size: 0.9rem; }
.why-feature-text p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.6; }

/* =============================================
   PROCESS
   ============================================= */
.process-section { background: var(--bg-card); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.process-steps::before {
    content: '';
    position: absolute;
    top: 42px; left: 13%; right: 13%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    opacity: 0.25;
    z-index: 0;
}
.process-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}
.process-step:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-num {
    width: 68px; height: 68px;
    background: var(--primary-xlight);
    border: 2px solid rgba(37,99,235,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    transition: all var(--transition);
}
.process-step:hover .process-num { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { color: var(--text-secondary); font-size: 0.83rem; line-height: 1.6; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.2); }
.testimonial-quote { font-size: 2.8rem; color: var(--primary); opacity: 0.15; line-height: 1; margin-bottom: -10px; font-family: Georgia, serif; }
.testimonial-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial-role { color: var(--text-light); font-size: 0.78rem; }
.testimonial-stars { color: var(--orange); font-size: 0.78rem; margin-top: 2px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: var(--primary-xlight);
    border-top: 1px solid rgba(37,99,235,0.12);
    border-bottom: 1px solid rgba(37,99,235,0.12);
    padding: 88px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
[data-theme="dark"] .cta-section {
    background: var(--bg-secondary);
    border-color: var(--border);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: var(--text); margin-bottom: 16px; }
.cta-section p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.75; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon {
    width: 46px; height: 46px;
    background: var(--primary-xlight);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem; flex-shrink: 0;
}
.contact-detail-text label { font-size: 0.75rem; color: var(--text-light); display: block; margin-bottom: 2px; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600; }
.contact-detail-text span, .contact-detail-text a { color: var(--text); font-weight: 500; font-size: 0.9rem; }

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 118px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.form-msg.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-msg.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { font-size: 1.4rem; font-weight: 800; text-decoration: none; display: inline-block; margin-bottom: 14px; }
.footer-about p { font-size: 0.86rem; line-height: 1.8; max-width: 280px; color: var(--footer-text); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--footer-text); font-size: 0.82rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--footer-text); font-size: 0.84rem; transition: all var(--transition); display: inline-flex; align-items: center; gap: 5px; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.84rem; align-items: flex-start; }
.footer-contact li i { color: var(--primary-light); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: var(--footer-text); }
.footer-contact li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 84px; right: 24px;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,0.55); color: #fff; }
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: #25d366;
    border-radius: 50%;
    animation: wa-pulse 2.2s infinite;
    z-index: -1;
}
.wa-tooltip {
    position: absolute;
    right: 66px;
    background: #1a1a2e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a2e;
    border-right: 0;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 42px; height: 42px;
    background: var(--primary);
    color: #fff; border: none;
    border-radius: 10px;
    font-size: 0.85rem; cursor: pointer;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
    display: flex; align-items: center; justify-content: center;
    z-index: 998; opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); box-shadow: 0 4px 14px rgba(14,165,233,0.35); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
    background: var(--primary-xlight);
    border-bottom: 1px solid rgba(37,99,235,0.12);
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-light) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}
[data-theme="dark"] .page-hero { background: var(--bg-secondary); border-color: var(--border); }
.page-hero h1 { color: var(--text); position: relative; z-index: 1; }
.breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 10px; font-size: 0.84rem;
    position: relative; z-index: 1;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .current { color: var(--primary); font-weight: 600; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse    { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.6} }
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.7);opacity:0} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.animate-up { animation: fadeInUp 0.55s ease forwards; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-img { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps { grid-template-columns: repeat(2,1fr); }
    .process-steps::before { display: none; }
}
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .trust-bar-inner { flex-wrap: nowrap; overflow-x: auto; }
    .trust-item { border-right: 1px solid var(--border); flex-shrink: 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 66px; left: 0; right: 0;
        background: var(--navbar-bg);
        flex-direction: column;
        padding: 12px;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 0;
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 11px 14px; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; background: transparent; }
    .hero-content { padding: 56px 0; }
    .hero-trust { gap: 16px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); border-top: none !important; }
    .stat-item:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 18px; }
    .section-pad { padding: 60px 0; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .cta-btns  { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
}
