/* ===== VAISHNAVI SERVICES - MAIN STYLESHEET ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #111c35;
  --navy-light: #243460;
  --orange: #FF6B35;
  --orange-dark: #e85520;
  --orange-light: #ff8c5a;
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #f0f2f8;
  --gray-200: #e2e6f0;
  --gray-400: #9aa3bb;
  --gray-600: #5a6480;
  --gray-800: #2d3650;
  --text: #1a2744;
  --text-light: #5a6480;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(26,39,68,0.10);
  --shadow-lg: 0 10px 40px rgba(26,39,68,0.16);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(26,39,68,0.08);
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); }
.logo-tag { font-size: 11px; color: var(--text-light); font-weight: 500; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--gray-100); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

/* ===== HERO ===== */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a6e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.highlight { color: var(--orange); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 28px;
  width: fit-content;
}
.stat { text-align: center; padding: 0 24px; }
.stat-num { display: block; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); }
.stat-lbl { display: block; font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-desc { font-size: 17px; color: var(--text-light); max-width: 540px; margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  display: block;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--text-light); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.service-link { color: var(--orange); font-weight: 600; font-size: 14px; }
.service-card-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.service-card-cta h3, .service-card-cta p, .service-card-cta .service-link { color: var(--white); }
.service-card-cta .service-link { color: var(--orange-light); }
.service-card-cta:hover { border-color: var(--navy); }

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--orange); background: var(--white); box-shadow: var(--shadow); }
.why-icon { font-size: 32px; margin-bottom: 12px; }
.why-card h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--navy); color: var(--white); }
.how-section .section-title { color: var(--white); }
.how-section .section-desc { color: rgba(255,255,255,0.65); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--white);
  margin: 0 auto 16px;
}
.step h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: rgba(255,255,255,0.70); line-height: 1.5; }
.step-arrow { font-size: 28px; color: var(--orange); opacity: 0.5; margin-top: 40px; padding: 0 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0;
  color: var(--white);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-family: 'Poppins', sans-serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 8px; }
.cta-inner p { opacity: 0.85; font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BRANDS ===== */
.brands-section { background: var(--gray-50); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-chip {
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  transition: all var(--transition);
}
.brand-chip:hover { border-color: var(--orange); color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.80); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: var(--orange); }
.footer-logo span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 16px; color: var(--white); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.60); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--orange); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 110px 0 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.page-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; }

/* ===== SERVICE DETAIL ===== */
.service-detail { padding: 72px 0; border-bottom: 1px solid var(--gray-200); }
.service-detail:last-child { border-bottom: none; }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-icon { font-size: 80px; text-align: center; padding: 40px; background: var(--gray-50); border-radius: var(--radius-lg); border: 1px solid var(--gray-200); }
.service-detail h2 { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.service-detail p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 28px; }
.service-list li { padding: 8px 0; font-size: 15px; color: var(--gray-800); display: flex; gap: 10px; align-items: flex-start; }
.service-list li::before { content: "✓"; color: var(--orange); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h2 { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-item-text span, .contact-item-text a { color: var(--text-light); font-size: 15px; }
.contact-item-text a:hover { color: var(--orange); }
.contact-form-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-box h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #d4edda; border: 1px solid #b8ddc5; border-radius: 8px; padding: 16px; color: #155724; font-weight: 500; margin-top: 16px; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.about-visual { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-radius: var(--radius-lg); padding: 60px; text-align: center; color: var(--white); }
.about-visual .big-icon { font-size: 100px; margin-bottom: 16px; }
.about-visual h3 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.about-visual p { color: rgba(255,255,255,0.70); }
.about-text h2 { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-stat { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; text-align: center; }
.about-stat .num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--orange); }
.about-stat .lbl { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== LEGAL PAGES ===== */
.legal-section { padding: 72px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content strong { color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--gray-200); flex-direction: column; padding: 20px; box-shadow: var(--shadow); gap: 4px; }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 16px; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 80px; height: 1px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
