/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --primary: #e65c00;
  --primary-dark: #c44d00;
  --primary-light: #ff8c42;
  --secondary: #1a1a2e;
  --accent-bg: #fff5ef;
  --green: #25D366;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(230,92,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 12px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float svg { width: 36px; height: 36px; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.50); }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 28px; }
.logo-main {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 20px 16px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}
.mob-cta {
  margin-top: 12px;
  background: var(--green);
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  border: none !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.82) 0%, rgba(230,92,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .hi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.65em;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  opacity: 0.92;
}
.accent { color: var(--primary-light); }
.hero-sub {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(230,92,0,0.40);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,92,0,0.50); }
.btn-secondary {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 18px 28px;
  width: fit-content;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 26px; font-weight: 800; line-height: 1; }
.stat span { font-size: 12px; opacity: 0.8; font-weight: 400; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.35); }

/* ===== SECTION HEADER ===== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head.light { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-bg);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.eyebrow-light {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.12);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-head h2, .section-head.light h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-head p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #fafafa; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.service-body { padding: 22px 22px 26px; }
.service-icon { font-size: 28px; margin-bottom: 8px; }
.service-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.service-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.65; }
.service-body ul { margin-bottom: 20px; }
.service-body ul li {
  font-size: 13px;
  color: #444;
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.service-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.service-btn {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary);
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.service-btn:hover { background: var(--primary); color: #fff; }
.service-card-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b2c 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-inner {
  text-align: center;
  color: #fff;
  padding: 36px 24px;
}
.cta-emoji { font-size: 48px; margin-bottom: 14px; }
.cta-inner h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { font-size: 14px; opacity: 0.88; margin-bottom: 24px; line-height: 1.65; }
.btn-primary-sm {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s;
}
.btn-primary-sm:hover { transform: translateY(-2px); }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d2d4e 100%);
  color: #fff;
  padding: 90px 0;
}
.how-it-works h2 { color: #fff; }
.accent-light { color: var(--primary-light); }
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  transition: background 0.2s;
}
.step:hover { background: rgba(255,255,255,0.14); }
.step-num { font-size: 48px; font-weight: 900; color: var(--primary-light); opacity: 0.25; line-height: 1; margin-bottom: 4px; }
.step-icon { font-size: 36px; margin-bottom: 12px; }
.step h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; opacity: 0.75; line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--primary-light); opacity: 0.7; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(230,92,0,0.35);
}
.about-badge-float strong { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.about-badge-float span { font-size: 11px; font-weight: 500; opacity: 0.9; }
.about-text .eyebrow { margin-bottom: 14px; }
.about-text h2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.about-text p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
}
.ap-icon { font-size: 22px; flex-shrink: 0; }
.about-point strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--secondary); }
.about-point p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--accent-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon { font-size: 42px; margin-bottom: 16px; }
.why-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== TRUST ===== */
.trust {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 90px 0;
}
.trust-inner { display: flex; flex-direction: column; gap: 48px; }
.trust-text { text-align: center; }
.trust-text h2 { color: #fff; font-size: clamp(22px, 3vw, 36px); font-weight: 800; }
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.12); }
.review-feature {
  background: rgba(230,92,0,0.15);
  border-color: rgba(230,92,0,0.35);
}
.stars { color: #fbbf24; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 14px; opacity: 0.85; line-height: 1.7; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; font-weight: 700; }
.reviewer span { font-size: 12px; opacity: 0.6; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--accent-bg); }
.faq-q.active { background: var(--accent-bg); color: var(--primary); }
.faq-arrow { font-size: 14px; flex-shrink: 0; transition: transform 0.3s; }
.faq-q.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-a.open { max-height: 200px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #c44d00 100%);
  color: #fff;
  padding: 90px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.contact-text h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.contact-text p { font-size: 16px; opacity: 0.85; margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: background 0.2s;
  cursor: pointer;
}
.contact-row:hover { background: rgba(255,255,255,0.2); }
.contact-row.no-link { cursor: default; }
.c-icon { font-size: 26px; flex-shrink: 0; }
.contact-row strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; opacity: 0.8; text-transform: uppercase; }
.contact-row span { font-size: 15px; font-weight: 600; }
.wa-card {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  text-align: center;
}
.wa-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.wa-top span { font-size: 28px; }
.wa-card p { font-size: 14px; opacity: 0.85; margin-bottom: 24px; line-height: 1.65; }
.btn-wa-big {
  display: block;
  background: var(--green);
  color: #fff;
  padding: 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa-big:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.50); }
.wa-note { font-size: 12px; opacity: 0.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 36px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-icon { font-size: 22px; }
.footer-brand .logo-main { font-size: 20px; font-weight: 800; color: var(--primary-light); }
.footer-tag { font-size: 13px; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-copy { font-size: 12px; opacity: 0.45; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img img { height: 360px; }
  .about-badge-float { right: 10px; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-row { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; width: 100%; }
  .stat-div { width: 60px; height: 1px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .contact-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
