/* =====================================================
   LEGAL KAMKAZ – GLOBAL DESIGN SYSTEM
   India's #1 Legal & Compliance Platform
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@600;700;800&display=swap');

/* =====================================================
   CSS VARIABLES – DESIGN TOKENS
   ===================================================== */
:root {
  /* Brand Colors */
  --navy: #08091a;
  --navy-2: #0d1230;
  --navy-3: #111c44;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-dark: #1d4ed8;
  --cyan: #0891b2;
  --cyan-light: #06b6d4;
  --teal: #0d9488;
  --gold: #d97706;
  --gold-light: #f59e0b;
  --gold-bg: #fffbeb;

  /* Gradient */
  --grad-primary: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  --grad-dark: linear-gradient(135deg, #08091a 0%, #0d1230 50%, #111c44 100%);
  --grad-gold: linear-gradient(135deg, #d97706, #f59e0b);
  --grad-hero: linear-gradient(135deg, #080918 0%, #0c1535 40%, #0f2060 70%, #0c1a4a 100%);
  --grad-card: linear-gradient(135deg, rgba(37,99,235,.08) 0%, rgba(8,145,178,.05) 100%);

  /* Neutral */
  --white: #ffffff;
  --off-white: #f8f9ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --success: #059669;
  --success-bg: #ecfdf5;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --info: #2563eb;
  --info-bg: #eff6ff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Sizing */
  --container: 1200px;
  --container-lg: 1400px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.15);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.25);
  --shadow-gold: 0 8px 32px rgba(217,119,6,.2);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --transition: .25s var(--ease);
  --transition-slow: .4s var(--ease);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100%; width: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* =====================================================
   TYPOGRAPHY SYSTEM
   ===================================================== */
.display-xl { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
.display-md { font-family: var(--font-display); font-size: clamp(32px, 4vw, 54px); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
.h1 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.h2 { font-family: var(--font-heading); font-size: clamp(24px, 2.8vw, 36px); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; }
.h3 { font-family: var(--font-heading); font-size: clamp(18px, 2vw, 24px); font-weight: 700; line-height: 1.25; }
.h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 18px; line-height: 1.7; }
.body { font-size: 16px; line-height: 1.65; }
.body-sm { font-size: 14px; line-height: 1.6; }
.caption { font-size: 13px; line-height: 1.5; }
.overline { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* =====================================================
   LAYOUT
   ===================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: var(--container-lg); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4 { gap: 4px; } .gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-20 { gap: 20px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* =====================================================
   SECTION LABELS & HEADINGS
   ===================================================== */
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--info-bg); color: var(--blue); border: 1px solid rgba(37,99,235,.2);
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.label-tag.gold { background: var(--gold-bg); color: var(--gold); border-color: rgba(217,119,6,.2); }
.label-tag.teal { background: #f0fdf4; color: var(--teal); border-color: rgba(13,148,136,.2); }
.label-tag.white { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.2); }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(8,145,178,.08));
  border: 1px solid rgba(37,99,235,.15); color: var(--blue);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 18px;
}

.section-heading { margin-bottom: 16px; }
.section-heading .accent { color: var(--blue); position: relative; display: inline-block; }
.section-heading .accent-gold { color: var(--gold); }
.section-desc { color: var(--gray-500); max-width: 620px; }
.section-desc.center { margin: 0 auto; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--grad-primary); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--navy); color: var(--white); border-color: rgba(255,255,255,.08);
}
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }

.btn-gold {
  background: var(--grad-gold); color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(217,119,6,.3); }

.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }

.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-xs { padding: 6px 14px; font-size: 12px; }

/* =====================================================
   CARDS
   ===================================================== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  overflow: hidden; transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-glass {
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
}

.card-dark {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}

/* =====================================================
   BADGES & TAGS
   ===================================================== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.badge-blue { background: var(--info-bg); color: var(--blue); }
.badge-green { background: var(--success-bg); color: var(--success); }
.badge-gold { background: var(--gold-bg); color: var(--gold); }
.badge-red { background: var(--error-bg); color: var(--error); }
.badge-gray { background: var(--gray-100); color: var(--gray-600); }

/* =====================================================
   FORMS
   ===================================================== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; letter-spacing: .02em; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--gray-800);
  background: var(--white); outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-control-dark {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.form-control-dark:focus { border-color: var(--cyan-light); box-shadow: 0 0 0 3px rgba(6,182,212,.15); }
.form-control-dark::placeholder { color: rgba(255,255,255,.3); }

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: sticky; top: 0; z-index: 9998;
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.1); }

.topbar {
  background: var(--grad-dark); color: rgba(255,255,255,.8);
  padding: 9px 0; font-size: 13px;
}
.topbar a { color: rgba(255,255,255,.7); transition: var(--transition); }
.topbar a:hover { color: var(--cyan-light); }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 21px; font-weight: 800;
  color: var(--navy); letter-spacing: -.02em;
}
.nav-logo img { height: 44px; }
.nav-logo .brand { background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  transition: var(--transition); position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--info-bg); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; width: 240px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 9999;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--gray-700); font-weight: 500;
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--info-bg); color: var(--blue); }
.dropdown-item .di-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--info-bg); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* Mega Menu */
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: -200px; width: 720px;
  background: #ffffff !important; border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 24px; z-index: 9999;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; padding: 0 8px; }
.mega-item { display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: var(--radius-sm); font-size: 13.5px; color: var(--gray-700); font-weight: 500; transition: var(--transition); }
.mega-item:hover { background: var(--info-bg); color: var(--blue); }

/* Mobile menu */
.menu-toggle { display: none; padding: 8px; border-radius: var(--radius-sm); color: var(--gray-600); transition: var(--transition); }
.menu-toggle:hover { background: var(--gray-100); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: var(--grad-hero); min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #2563eb, transparent); top: -200px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #0891b2, transparent); bottom: -100px; left: -100px; animation-delay: -4s; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #d97706, transparent); top: 40%; right: 30%; opacity: .15; animation-delay: -8s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(.95); }
}

.hero-grid {
  position: absolute; inset: 0; background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* =====================================================
   STATS
   ===================================================== */
.stat-counter {
  font-family: var(--font-heading); font-size: 42px; font-weight: 800;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; margin-top: 4px; }

/* =====================================================
   SERVICE CARDS
   ===================================================== */
.service-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-card); opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--info-bg); display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px; transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: var(--blue); transform: scale(1.1); }
.service-card:hover .service-icon-wrap .icon { filter: brightness(10); }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; }
.service-card .arrow-link {
  font-size: 13px; font-weight: 700; color: var(--blue);
  display: flex; align-items: center; gap: 5px; transition: var(--transition);
}
.service-card:hover .arrow-link { gap: 10px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: -10px; left: 24px;
  font-family: var(--font-display); font-size: 80px; color: var(--blue);
  opacity: .1; line-height: 1;
}
.star-rating { color: #f59e0b; font-size: 16px; letter-spacing: 1px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-primary); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white); flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--gray-800); }
.author-role { font-size: 13px; color: var(--gray-500); }

/* =====================================================
   PROCESS STEPS
   ===================================================== */
.process-step {
  display: flex; gap: 20px; padding: 24px 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; left: 23px; top: 68px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), transparent);
}
.step-badge {
  width: 46px; height: 46px; border-radius: var(--radius-full);
  background: var(--grad-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 16px; font-weight: 800;
  flex-shrink: 0; box-shadow: var(--shadow-blue);
}
.step-content h4 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.blog-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative; overflow: hidden;
}
.blog-body { padding: 22px; }
.blog-category { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.blog-title { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.4; }
.blog-title a:hover { color: var(--blue); }
.blog-excerpt { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--gray-400); }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 4px; transition: var(--transition); }
.blog-read-more:hover { gap: 8px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.7);
}
.footer-top { padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { height: 50px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links a:hover { color: var(--cyan-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.footer-contact-item h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.footer-contact-item p, .footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--cyan-light); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 15px; color: rgba(255,255,255,.6); transition: var(--transition); }
.social-link:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.float-actions {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn.wa { background: #25D366; }
.float-btn.ph { background: var(--grad-primary); }
.float-btn .tooltip-text {
  position: absolute; right: calc(100% + 10px); white-space: nowrap;
  background: var(--navy); color: var(--white); padding: 5px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 600; opacity: 0; transition: var(--transition);
  pointer-events: none;
}
.float-btn:hover .tooltip-text { opacity: 1; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 28px; left: 24px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--gray-200);
  color: var(--gray-600); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer; transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

/* =====================================================
   TRUST INDICATORS
   ===================================================== */
.trust-bar {
  background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); font-weight: 600; }
.trust-item .trust-icon { font-size: 18px; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb-wrap { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: var(--blue); font-weight: 600; }
.breadcrumb .sep { color: var(--gray-300); font-size: 12px; }
.breadcrumb .current { font-size: 13px; color: var(--gray-500); font-weight: 500; }

/* =====================================================
   ACCORDION / FAQ
   ===================================================== */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; gap: 16px;
}
.faq-q span { font-size: 16px; font-weight: 600; color: var(--gray-800); }
.faq-q .faq-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--info-bg); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); font-size: 16px; }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--grad-dark); padding: 80px 0;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 40px 40px; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); }
.page-hero .label-tag.white { margin-bottom: 14px; }

/* =====================================================
   CTA SECTIONS
   ===================================================== */
.cta-section {
  background: var(--grad-primary); padding: 80px 0;
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before { content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px; background: rgba(255,255,255,.04); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; background: rgba(255,255,255,.04); border-radius: 50%; }
.cta-section h2 { color: var(--white); font-family: var(--font-display); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { transform: translateX(-20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,.4); } 50% { box-shadow: 0 0 0 12px rgba(37,99,235,0); } }
@keyframes shimmer { to { background-position: 200% center; } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   HIGHLIGHTS
   ===================================================== */
.highlight-blue { background: var(--info-bg); border-left: 3px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; }
.highlight-gold { background: var(--gold-bg); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; }
.highlight-green { background: var(--success-bg); border-left: 3px solid var(--success); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 18px; }

/* =====================================================
   DIVIDERS
   ===================================================== */
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }
.divider-dark { border-top-color: rgba(255,255,255,.08); }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.text-dark { color: var(--gray-800); }
.fw-400 { font-weight: 400; } .fw-500 { font-weight: 500; } .fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; } .fw-800 { font-weight: 800; }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; } .mb-8 { margin-bottom: 8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; } .mb-20 { margin-bottom: 20px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-40 { margin-bottom: 40px; } .mb-48 { margin-bottom: 48px; }
.pt-0 { padding-top: 0; } .pb-0 { padding-bottom: 0; }
.max-600 { max-width: 600px; } .max-800 { max-width: 800px; }
.w-full { width: 100%; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--navy); }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mega-menu { display: none; }
  .nav-links .nav-item:hover .dropdown { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .display-xl { font-size: 38px; }
  .display-lg { font-size: 32px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .page-hero { padding: 50px 0; }
  .trust-bar-inner { gap: 20px; }
  .topbar { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .float-btn { width: 48px; height: 48px; font-size: 20px; }
}

/* =====================================================
   MOBILE MENU OVERLAY
   ===================================================== */
.mobile-nav {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 999; padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-nav-close { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 18px; font-weight: 600; color: rgba(255,255,255,.85); }
.mobile-nav-link:hover { color: var(--cyan-light); }
.mobile-nav-sub { padding: 8px 0 0 16px; }
.mobile-nav-sub a { display: block; padding: 10px 0; font-size: 15px; color: rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.04); }
.mobile-nav-sub a:hover { color: var(--cyan-light); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* =====================================================
   PRINT
   ===================================================== */
@media print { .site-header, .float-actions, .scroll-top, .mobile-nav { display: none; } }

/* =====================================================
   FOOTER RESPONSIVE FIX
   ===================================================== */
@media (max-width: 1100px) {
  .site-footer .footer-top > .container > div {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-top > .container > div {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-top > .container > div {
    grid-template-columns: 1fr !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   ADDITIONAL UTILITY FIXES
   ===================================================== */
.align-center { align-items: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
a.card { text-decoration: none; display: block; }
a.service-card { text-decoration: none; display: block; }

/* HERO FORM FIX */
select.hf-input option { background: #fff; color: #1f2937; }

/* BLOG CARD HOVER FIX */
a.blog-card { text-decoration: none; color: inherit; }

/* SERVICE GROUP CONTENTS FIX */
.svc-group.active { display: grid !important; }

/* =====================================================
   MOBILE OVERFLOW & LAYOUT CRITICAL FIXES
   ===================================================== */

/* Force no horizontal scroll on ALL elements */
*, *::before, *::after { max-width: 100%; }
img, video, iframe { max-width: 100%; }

/* Fix marquee overflow */
.marquee-bar { overflow: hidden !important; width: 100% !important; }
.marquee-track { max-width: none; }

/* Fix hero on small screens */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr !important; }
  .hero-form-col { display: none !important; }
  .hero-trust { flex-wrap: wrap; gap: 16px !important; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* Fix stats grid overflow */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-num { font-size: 28px !important; }
}

/* Fix CTA strip on mobile */
@media (max-width: 768px) {
  .cta-inner { grid-template-columns: 1fr !important; text-align: center; }
  .cta-inner > div { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .cta-inner .btn { width: 100% !important; justify-content: center; }
}

/* Fix why-grid on mobile */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .floating-badge { display: none; }
}

/* Fix process grid on mobile */
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr !important; }
  .process-grid::before { display: none !important; }
}

/* Fix testimonials on mobile */
@media (max-width: 600px) {
  .testi-track { grid-template-columns: 1fr !important; }
}

/* Fix blog grid on mobile */
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr !important; }
}

/* Fix industry grid on mobile */
@media (max-width: 360px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Fix services grid on mobile */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; }
}

/* Fix container padding on very small screens */
@media (max-width: 360px) {
  .container, .container-sm, .container-lg { padding: 0 12px !important; }
}

/* Fix hero trust numbers on mobile */
@media (max-width: 480px) {
  .hero-trust { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px !important; }
  .hero-trust > div[style*="width:1px"] { display: none !important; }
}

/* Fix float actions on mobile */
@media (max-width: 480px) {
  .float-actions { bottom: 16px; right: 12px; }
  .float-btn { width: 46px; height: 46px; font-size: 20px; }
}

/* Fix page hero on mobile */
@media (max-width: 768px) {
  .page-hero { padding: 40px 0 !important; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 48px) !important; }
}

/* Fix svc-layout on service detail page */
@media (max-width: 768px) {
  .svc-layout { grid-template-columns: 1fr !important; padding: 24px 0 !important; }
  .sidebar-consult { position: static !important; }
  .post-layout { grid-template-columns: 1fr !important; }
}

/* Fix contact grid */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .info-card { position: static !important; }
}

/* Fix grid-2 on mobile */
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr !important; }
  .hf-row { grid-template-columns: 1fr !important; }
}

/* Fix EMI/Tax calculator grid */
@media (max-width: 600px) {
  .emi-grid, .calc-wrap { grid-template-columns: 1fr !important; }
  .slab-btns { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Ensure all sections don't overflow */
section, .section, .hero, .stats-section, .marquee-bar, footer {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Scrollable tabs on mobile */
.services-tabs::-webkit-scrollbar { display: none; }
.services-tabs { -ms-overflow-style: none; scrollbar-width: none; }

/* Service cards - fix mobile */
@media (max-width: 480px) {
  .service-card { padding: 20px; }
  .service-icon-wrap { width: 46px; height: 46px; font-size: 22px; }
}

/* Industry grid mobile fix */
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
  .industry-card { padding: 14px 8px; }
  .industry-icon { font-size: 28px; margin-bottom: 6px; }
  .industry-name { font-size: 11px; }
}

/* Fix testimonial card on mobile */
@media (max-width: 480px) {
  .testimonial-card { padding: 20px; }
}

/* Fix CTA buttons full width on mobile */
@media (max-width: 600px) {
  .cta-section .btn, .cta-strip .btn { width: 100% !important; }
}

/* Fix topbar on mobile */
@media (max-width: 768px) {
  .topbar { display: none !important; }
}

/* =====================================================
   MEGA MENU & DROPDOWN - OVERLAP FIX
   ===================================================== */

/* Ensure header always on top */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9998 !important;
  isolation: isolate;
}

/* Mega menu fully above everything */
.mega-menu {
  position: absolute !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  isolation: isolate;
  pointer-events: auto;
}

.dropdown {
  position: absolute !important;
  z-index: 9999 !important;
  background: #ffffff !important;
  isolation: isolate;
}

/* Nav item needs relative positioning */
.nav-item {
  position: relative;
  isolation: isolate;
}

/* Hero section should be BELOW header */
.hero,
.page-hero,
.svc-hero {
  position: relative;
  z-index: 1 !important;
}

/* Hero orbs should not bleed through */
.hero-bg,
.hero-orb,
.hero-grid {
  z-index: 0 !important;
  pointer-events: none;
}

/* Mobile nav overlay should be top */
.mobile-nav {
  z-index: 99999 !important;
}


/* =====================================================
   MEGA MENU OVERLAP - FINAL DEFINITIVE FIX
   ===================================================== */

/* Site header - always on top */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  transform: translateZ(0);
}

/* Topbar inside header */
.topbar { position: relative; z-index: 99999 !important; }

/* Navbar inside header */
.navbar { position: relative; z-index: 99999 !important; }

/* Nav items with dropdowns */
.nav-item {
  position: relative !important;
  z-index: 99999 !important;
}

/* Mega menu - solid white, above everything */
.mega-menu {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: -200px !important;
  width: 720px !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 20px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.15) !important;
  padding: 24px !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
  transition: all 0.2s ease !important;
  pointer-events: none !important;
}

/* Show mega menu on hover */
.nav-item:hover > .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

/* Dropdown (small) */
.dropdown {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  width: 240px !important;
  background: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
  padding: 8px !important;
  z-index: 999999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition: all 0.2s ease !important;
}

.nav-item:hover > .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* Hero and page content should be BELOW header */
.hero { z-index: 1 !important; position: relative !important; }
.page-hero { z-index: 1 !important; position: relative !important; }
.svc-hero { z-index: 1 !important; position: relative !important; }

/* All hero background elements behind content */
.hero-bg, .hero-orb, .hero-grid { z-index: 0 !important; pointer-events: none !important; }
.hero > .container { position: relative !important; z-index: 2 !important; }

/* Mobile nav on top of everything */
.mobile-nav { z-index: 9999999 !important; }

@media (max-width: 1024px) {
  .mega-menu { display: none !important; }
}

/* ─── LK-CONTAINER (used by new components.js) ─── */
.lk-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media(max-width:480px){ .lk-container { padding: 0 14px; } }
