/* =====================================================
   MAHAVEER INVESTMENT — Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --navy-dark:   #0d1b3e;
  --navy:        #162d54;
  --navy-light:  #1e4080;
  --gold:        #c8892a;
  --gold-light:  #e8a94a;
  --gold-bg:     #fef8ed;
  --text:        #1f2937;
  --text-muted:  #6b7280;
  --bg:          #f9fafb;
  --white:       #ffffff;
  --border:      #e5e7eb;
  --green:       #25d366;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow:     0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.13);

  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.28s ease;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

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

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section helpers ---------- */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(200,137,42,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 11px; }

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

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,137,42,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
}
.btn-nav:hover { background: var(--gold-light); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 18px 24px;
  margin-top: 4px;
}
.btn-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.58);
  font-weight: 400;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #162d54 45%, #1a4080 80%, #0d1b3e 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(200,137,42,0.09) 0%, transparent 48%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 30%);
}
/* subtle grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 24px 90px;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.3);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(74,222,128,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-highlight {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-bar {
  width: 5px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}
.scroll-bar::after {
  content: '';
  display: block;
  width: 100%;
  height: 45%;
  background: var(--gold-light);
  border-radius: 3px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(130%); }
  100% { transform: translateY(-100%); }
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 40px 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

/* Visual panel */
.about-visual {
  position: relative;
  height: 480px;
}
.av-bg {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
}
.av-grid {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
}
.av-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: rgba(255,255,255,0.07);
  letter-spacing: 3px;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.av-card {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  white-space: nowrap;
}
.av-card i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.av-card-top { top: -14px; right: -14px; }
.av-card-top    i { background: rgba(200,137,42,0.12); color: var(--gold); }
.av-card-bottom { bottom: -14px; left: -14px; }
.av-card-bottom i { background: rgba(22,45,84,0.1); color: var(--navy); }

/* Text content */
.about-content p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 16px;
}
.about-content strong { color: var(--navy-dark); font-weight: 600; }

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.about-check i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

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

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

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::after { transform: scaleX(1); }

/* Dark featured card */
.svc-card-dark {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.svc-card-dark::after   { background: var(--gold-light); }
.svc-card-dark h3       { color: var(--white); }
.svc-card-dark p        { color: rgba(255,255,255,0.65); }
.svc-card-dark .svc-list li { color: rgba(255,255,255,0.8); }
.svc-card-dark .svc-list li::before { color: var(--gold-light); }

.svc-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.svc-icon-equity { background: rgba(200,137,42,0.10); color: var(--gold); }
.svc-icon-fo     { background: rgba(200,137,42,0.20); color: var(--gold-light); }
.svc-icon-mf     { background: rgba(22,45,84,0.08);  color: var(--navy); }
.svc-icon-bond   { background: rgba(16,185,129,0.10); color: #059669; }
.svc-icon-ipo    { background: rgba(99,102,241,0.10); color: #6366f1; }
.svc-icon-adv    { background: rgba(239,68,68,0.10);  color: #e11d48; }

.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 9px;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.svc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =====================================================
   WHY US
   ===================================================== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

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

.why-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card:hover h4,
.why-card:hover p { color: rgba(255,255,255,0.88); }
.why-card:hover .why-icon { background: rgba(200,137,42,0.2); }
.why-card:hover .why-icon i { color: var(--gold-light); }

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition);
}
.why-icon i { font-size: 22px; color: var(--gold); transition: all var(--transition); }

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  transition: all var(--transition);
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--transition);
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: rgba(200,137,42,0.35);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(200,137,42,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.contact-card a { color: var(--navy); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 26px;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,137,42,0.10);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }

.footer-links h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links ul li i { color: var(--gold); width: 14px; }
.footer-links ul a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

.disclaimer {
  font-size: 12px !important;
  line-height: 1.65;
}
.disclaimer strong { color: rgba(255,255,255,0.55); }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 998;
  transition: all var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.70); }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* =====================================================
   SCROLL FADE-IN
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-grid     { grid-template-columns: 1fr; gap: 0; }
  .about-visual   { display: none; }

  .contact-grid   { grid-template-columns: 1fr; gap: 36px; }
  .stat-divider   { display: none; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {
  .btn-nav     { display: none; }
  .hamburger   { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 28px; }
  .form-row       { grid-template-columns: 1fr; }
  .about-checks   { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
  .wa-tooltip { display: none; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .stats-grid { gap: 20px; }
}
