/* ============================================================
   CreditFix India - Main Stylesheet
   Premium Corporate Credit Repair Website
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (THEME SYSTEM)
   ============================================================ */
:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-lighter: #dbeafe;
  --secondary: #f59e0b;
  --accent: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f0f7ff;
  --bg-section: #f8fafc;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;

  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 20px rgba(29,78,216,.12);
  --shadow-lg: 0 10px 40px rgba(29,78,216,.18);
  --shadow-xl: 0 20px 60px rgba(29,78,216,.22);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .15s ease;
  --transition-slow: all .6s cubic-bezier(.4,0,.2,1);

  --navbar-height: 80px;
  --topbar-height: 40px;
}

/* Green Theme */
.theme-green {
  --primary: #059669;
  --primary-dark: #064e3b;
  --primary-light: #10b981;
  --primary-lighter: #d1fae5;
  --bg-light: #f0fdf4;
}

/* Purple Theme */
.theme-purple {
  --primary: #7c3aed;
  --primary-dark: #4c1d95;
  --primary-light: #8b5cf6;
  --primary-lighter: #ede9fe;
  --bg-light: #f5f3ff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-dark);
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

input, textarea, select, button {
  font-family: var(--font-body);
  outline: none;
}

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

.mt-20 { margin-top: 20px; }
.highlight { color: var(--primary); }
.text-gold { color: #f59e0b; }
.text-red { color: #ef4444; }

/* ============================================================
   TOASTER NOTIFICATION SYSTEM
   ============================================================ */
.toaster-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--primary);
  animation: toastIn .4s cubic-bezier(.34,1.56,.64,1);
  position: relative;
  min-width: 300px;
}

.toast.success { border-left-color: var(--success); }
.toast.error { border-left-color: var(--danger); }
.toast.warning { border-left-color: var(--warning); }
.toast.info { border-left-color: var(--info); }

.toast-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }
.toast.info .toast-icon { color: var(--info); }

.toast-content { flex: 1; }
.toast-title { font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.toast-message { font-size: .875rem; color: var(--text-light); margin-top: 2px; }

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
  padding: 0;
  flex-shrink: 0;
}

.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  border-radius: 0 0 0 var(--radius);
  background: var(--primary);
  animation: toastProgress 4s linear forwards;
}
.toast.success .toast-progress { background: var(--success); }
.toast.error .toast-progress { background: var(--danger); }

@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes toastOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}
@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: white; }
.top-bar i { margin-right: 6px; color: var(--secondary); }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .75rem;
}

/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(29,78,216,.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(29,78,216,.3);
}

.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-name strong { color: var(--primary); }
.logo-tag { display: block; font-size: .7rem; color: var(--text-light); }

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--primary);
  background: var(--primary-lighter);
}

.main-nav > ul > li > a i { font-size: .7rem; transition: var(--transition); }
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }

.nav-partner-btn {
  background: var(--primary-lighter) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-medium);
  font-size: .875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown li a i { color: var(--primary); width: 16px; }
.dropdown li a:hover { background: var(--bg-light); color: var(--primary); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.theme-btn.active, .theme-btn:hover {
  border-color: var(--text-dark);
  transform: scale(1.2);
}

/* Login Dropdown */
.login-dropdown { position: relative; }

.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-login:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
}

.login-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  z-index: 100;
}

.login-dropdown:hover .login-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.login-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-medium);
  font-size: .875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.login-menu a i { color: var(--primary); width: 16px; }
.login-menu a:hover { background: var(--bg-light); color: var(--primary); }

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(29,78,216,.35);
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29,78,216,.4);
  color: white !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   MOBILE SIDEBAR
   ============================================================ */
.mobile-sidebar {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 50px rgba(0,0,0,.15);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.open { right: 0; }

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}

.close-sidebar {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-medium);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.close-sidebar:hover { background: var(--border); }

.sidebar-nav { padding: 16px; flex: 1; }

.sidebar-nav ul { display: flex; flex-direction: column; gap: 4px; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-medium);
  font-size: .95rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.sidebar-nav a i { width: 20px; color: var(--primary); }
.sidebar-nav a:hover { background: var(--bg-light); color: var(--primary); }

.sidebar-divider { height: 1px; background: var(--border); margin: 8px 0; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  color: white !important;
  margin-top: 8px;
}

.sidebar-cta i { color: white !important; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
}

.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(29,78,216,.6) 100%);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 40px 0;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.slide-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
  font-weight: 500;
}

.slide-services {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
}

.slide-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(29,78,216,.5);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(29,78,216,.6);
  color: white !important;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.4);
  color: white !important;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: white;
  color: white !important;
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.slider-prev, .slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,.3);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: white;
  width: 24px;
  border-radius: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 0;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-content span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.ticker-content i { color: var(--secondary); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 70px 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-bottom-color: var(--primary);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(29,78,216,.3);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  display: inline;
}

.stat-label {
  font-size: .95rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   SECTION HEADER (SHARED)
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-lighter);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Section underline decoration */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  padding: 30px;
}

.about-img-main {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.credit-score-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.2);
}

.gauge-svg { width: 200px; height: 120px; }

.score-text-large {
  font-size: 36px;
  font-weight: 900;
  fill: white;
  font-family: 'Outfit', sans-serif;
}

.score-text-small {
  font-size: 11px;
  fill: #10b981;
  font-weight: 700;
  letter-spacing: 2px;
}

.gauge-fill {
  transition: stroke-dashoffset 2s ease;
}

.score-label {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 16px;
}

.about-badge-1, .about-badge-2 {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.about-badge-1 { top: 10px; right: 0; }
.about-badge-1 i { color: var(--success); }
.about-badge-2 { bottom: 10px; left: 0; }
.about-badge-2 i { color: var(--warning); }

.about-content .section-badge { display: inline-flex; margin-bottom: 12px; }

.about-desc {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 14px;
}

.about-feature strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feature p { color: var(--text-light); font-size: .875rem; }

.about-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(29,78,216,.3);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29,78,216,.4);
  color: white !important;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--primary);
  color: white !important;
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(29,78,216,.3);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.service-card-featured {
  background: white;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 24px 30px;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  color: white;
}

.service-icon-lg {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.service-card-header h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.service-card-header p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: var(--transition);
}

.service-feature-item i { color: var(--primary); font-size: .85rem; }

.service-feature-item:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.service-card-cta { display: flex; gap: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-works-section {
  padding: 100px 0;
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-lighter);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: -20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: white;
  box-shadow: 0 10px 30px rgba(29,78,216,.3);
  position: relative;
  z-index: 2;
}

.step-connector {
  position: absolute;
  top: 110px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
  z-index: 1;
}

.process-step:last-child .step-connector { display: none; }

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================================
   SCORE CHECKER & EMI CALCULATOR
   ============================================================ */
.score-checker-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.score-checker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.score-ranges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}

.score-range {
  display: flex;
  align-items: center;
  gap: 14px;
}

.range-color {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.range-info strong {
  display: block;
  font-size: .95rem;
  color: var(--text-dark);
}

.range-info span {
  font-size: .85rem;
  color: var(--text-light);
}

/* EMI Calculator */
.calculator-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.calculator-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--primary-dark);
}

.calculator-card h3 i { color: var(--primary); }

.calc-field { margin-bottom: 20px; }

.calc-field label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.calc-field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--primary-lighter);
  outline: none;
  cursor: pointer;
}

.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(29,78,216,.4);
}

.range-value {
  text-align: right;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 6px;
}

.calc-result {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.result-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-item span { color: var(--text-medium); font-size: .9rem; }
.result-item strong {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 700;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 16px;
}

.cta-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 36px; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: var(--primary) !important;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  color: var(--primary) !important;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: white !important;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  color: white !important;
  transform: translateY(-3px);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section {
  padding: 100px 0;
  background: white;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.strength-card:hover::before { transform: scaleX(1); }

.strength-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-lighter);
}

.strength-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-lighter);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}

.strength-card:hover .strength-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
}

.strength-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.strength-card p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-bottom-color: var(--primary);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--text-medium);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testimonial-author strong {
  display: block;
  font-size: .9rem;
  color: var(--text-dark);
}

.testimonial-author span {
  display: block;
  font-size: .8rem;
  color: var(--text-light);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--primary-lighter); }
.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question i {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-question { color: var(--primary); background: var(--primary-lighter); }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 16px 20px 20px;
  color: var(--text-medium);
  font-size: .9rem;
  line-height: 1.75;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-lighter);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 { font-size: .95rem; margin-bottom: 4px; color: var(--text-dark); }
.contact-item p { font-size: .9rem; color: var(--text-medium); }
.contact-item a { color: var(--primary); }

/* Contact Form */
.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-section);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(29,78,216,.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); }

.footer-top { padding: 80px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.footer-logo .logo-name { color: white; }
.footer-logo .logo-tag { color: rgba(255,255,255,.5); }

.footer-about {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  color: rgba(255,255,255,.75);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: .8rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-col ul a i { font-size: .7rem; color: var(--primary-light); }
.footer-col ul a:hover { color: white; padding-left: 4px; }

.footer-contact-info { margin-top: 28px; }
.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}

.footer-contact-info i { color: var(--primary-light); width: 16px; }
.footer-contact-info a { color: rgba(255,255,255,.7); }
.footer-contact-info a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
}

.footer-bottom a { color: var(--primary-light); }

.footer-disclaimer {
  font-size: .75rem !important;
  margin-top: 8px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 28px;
  z-index: 9000;
  box-shadow: 0 6px 25px rgba(37,211,102,.5);
  animation: whatsappPulse 2.5s infinite;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: white !important;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-dark);
  color: white;
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--bg-dark);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9000;
  box-shadow: 0 4px 15px rgba(29,78,216,.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   BADGE UTILITIES (for dashboards)
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
}

.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #cffafe; color: #155e75; }
.badge-primary { background: var(--primary-lighter); color: var(--primary-dark); }
.badge-secondary { background: #f1f5f9; color: #475569; }

/* ============================================================
   ANIMATE ON SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-up {
  animation: fadeUp .8s ease forwards;
}

.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FORM PAGES (Auth / Dashboard shared styles)
   ============================================================ */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  width: 100%;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.auth-left {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.auth-left h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.auth-left p { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 28px; }

.auth-features { list-style: none; }
.auth-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}

.auth-features li i { color: var(--secondary); }

.auth-right {
  padding: 50px 44px;
  overflow-y: auto;
}

.auth-header { margin-bottom: 32px; }

.auth-header .logo { margin-bottom: 24px; }

.auth-header h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.auth-header p { color: var(--text-light); }

.auth-footer {
  text-align: center;
  margin-top: 24px;
  font-size: .875rem;
  color: var(--text-light);
}

.auth-footer a { color: var(--primary); font-weight: 600; }

/* ============================================================
   DASHBOARD LAYOUT
   ============================================================ */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.dashboard-sidebar {
  width: 260px;
  background: var(--primary-dark);
  color: white;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transition: width .3s ease;
}

.dashboard-sidebar.collapsed { width: 70px; }

.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-menu {
  flex: 1;
  padding: 16px 10px;
}

.sidebar-menu ul { display: flex; flex-direction: column; gap: 4px; }

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  font-size: .9rem;
  transition: var(--transition);
}

.sidebar-menu a i { width: 20px; font-size: 16px; flex-shrink: 0; }
.sidebar-menu a:hover { background: rgba(255,255,255,.1); color: white; }
.sidebar-menu a.active {
  background: rgba(255,255,255,.15);
  color: white;
  font-weight: 600;
}

.sidebar-section-title {
  padding: 12px 16px 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.dashboard-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--bg-section);
  overflow-x: hidden;
}

.dashboard-topbar {
  background: white;
  padding: 0 30px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.dashboard-content { padding: 30px; flex: 1; }

.dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.dashboard-subtitle { color: var(--text-light); font-size: .9rem; }

/* Dashboard Stats Cards */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dash-stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.dash-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dash-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dash-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1;
}

.dash-stat-label {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 3px;
}

/* Table Styles */
.data-table-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-table-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.data-table-header h3 { font-size: 1.1rem; }

.data-table { width: 100%; border-collapse: collapse; }

.data-table th {
  background: var(--bg-section);
  padding: 14px 16px;
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: .9rem;
  color: var(--text-medium);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-section); }

/* ============================================================
   FILE UPLOAD
   ============================================================ */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-section);
}

.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--primary);
  background: var(--primary-lighter);
}

.file-upload-area i {
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.file-upload-area p { color: var(--text-medium); font-size: .9rem; }
.file-upload-area small { color: var(--text-light); font-size: .8rem; }

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .score-checker-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .auth-container { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .top-bar-right { display: none; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .theme-switcher { display: none; }

  .hero-slider { height: 80vh; min-height: 500px; }
  .slide-title { font-size: 1.8rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 24px 16px; }

  .section-title { font-size: 1.6rem; }
  .process-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .service-features-grid { grid-template-columns: 1fr; }
  .service-card-featured { padding: 24px; }

  .score-checker-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 60px 0; }
  .cta-content h2 { font-size: 1.6rem; }
  .cta-actions { flex-direction: column; align-items: center; }

  .scroll-indicator { display: none; }

  .dashboard-sidebar { position: fixed; left: -260px; z-index: 999; }
  .dashboard-sidebar.open { left: 0; }
  .dashboard-content { padding: 20px; }
  .dash-stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .auth-right { padding: 30px 24px; }
  .slide-actions { flex-direction: column; }
  .about-ctas { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .slide-title { font-size: 1.5rem; }
  .btn-hero-primary, .btn-hero-secondary { padding: 12px 24px; font-size: .9rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
  .back-to-top { right: 80px; }
  .dash-stats-grid { grid-template-columns: 1fr; }
}
