/* ==========================================================================
   Gopal Suthar & Associates — Design System
   ========================================================================== */

:root {
  /* Brand colors */
  --navy: #0b2540;
  --navy-dark: #071729;
  --navy-light: #123a63;
  --gold: #c69a3e;
  --gold-light: #e0bd6b;
  --gold-dark: #a17f2e;

  /* Neutrals */
  --cream: #faf8f4;
  --white: #ffffff;
  --ink: #1a2230;
  --gray-700: #445064;
  --gray-500: #6b7488;
  --gray-300: #d9dde4;
  --gray-100: #f0f1f4;

  /* Feedback */
  --success: #1e7d4f;
  --whatsapp: #25d366;

  /* Type */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --max-width: 1160px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 37, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 37, 64, 0.10);
  --shadow-lg: 0 16px 40px rgba(11, 37, 64, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { color: var(--gray-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--cream);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(198, 154, 62, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-navy .eyebrow {
  color: var(--gold-light);
  background: rgba(198, 154, 62, 0.18);
}

.section-head {
  max-width: 640px;
  margin: 0 0 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p { margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fb959; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-300);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.brand-text .name { font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.brand-text .tag { font-size: 0.72rem; color: var(--gray-500); letter-spacing: 0.04em; }
.brand { flex-shrink: 0; }
.brand-mark { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-call-mobile { display: none; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,154,62,0.25), transparent 70%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 88px;
}
.hero h1 { color: var(--white); max-width: 780px; }
.hero .lede {
  margin-top: 20px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(198,154,62,0.12);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.team-card { text-align: center; }
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.team-card h3 { margin-bottom: 4px; }
.team-role { color: var(--gold-dark); font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }

/* ---------- Pricing tables ---------- */
.price-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-500);
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin: 18px 0 32px;
}

.pricing-block { margin-bottom: 56px; }
.pricing-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gray-300);
  padding-bottom: 12px;
}
.pricing-block-head h3 { color: var(--navy); }
.pricing-block-head span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white);
}
table.price-table th {
  font-family: var(--font-heading);
  background: var(--navy);
  color: var(--white);
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 20px;
}
table.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.95rem;
  color: var(--ink);
}
table.price-table tr:last-child td { border-bottom: none; }
table.price-table tr:nth-child(even) td { background: var(--gray-100); }
table.price-table td.price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
table.price-table td.custom-quote {
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 24px 24px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border-top: 4px solid var(--gold);
}
.form-panel h3 { margin-bottom: 6px; }
.form-panel .form-sub { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 96px; }

.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 14px; }
.form-status { font-size: 0.9rem; margin-top: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--success); }

/* ---------- Urgency banner ---------- */
.urgency-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy-dark);
  padding: 14px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}
.urgency-banner a { text-decoration: underline; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: 1.6rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ---------- Credibility strip ---------- */
.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.credibility-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 220px;
}
.credibility-item .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy);
}
.credibility-item .num span { color: var(--gold-dark); }
.credibility-item .label { font-size: 0.85rem; color: var(--gray-500); }

/* ---------- Two-column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); margin-top: 14px; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.15s ease; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

.contact-info-list { margin-top: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(198,154,62,0.12);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.92rem; color: var(--gray-700); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav-phone-wrap { display: none; }
  .nav-links { gap: 18px; }
  .brand-text .tag { display: none; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone-wrap { display: none; }
  .nav-cta > a.btn { display: none; }
  .nav-toggle { display: flex; }
  .brand-text .name { font-size: 0.92rem; }
  .nav-call-mobile {
    display: block;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-300);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-dark);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
  }
  .section { padding: 52px 0; }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .credibility-strip { flex-direction: column; gap: 20px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
