/* ================================================================
   PRINTSHUBH.SHOP — Production Stylesheet
   File: /public_html/style.css
   Palette: Navy #0F172A · Blue #1D4ED8 · Amber #F59E0B · Green #047857
   ================================================================ */

:root {
  --c-navy: #0F172A;
  --c-navy-700: #1E293B;
  --c-blue: #1D4ED8;
  --c-blue-light: #DBEAFE;
  --c-green: #047857;
  --c-green-light: #DCFCE7;
  --c-amber: #F59E0B;
  --c-amber-light: #FEF3C7;
  --c-red: #DC2626;
  --c-red-light: #FEE2E2;
  --c-bg: #F8FAFC;
  --c-bg-warm: #FFFBF5;
  --c-card: #FFFFFF;
  --c-border: #E2E8F0;
  --c-border-strong: #CBD5E1;
  --c-text: #111827;
  --c-text-secondary: #334155;
  --c-muted: #64748B;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-xs: 0 1px 2px 0 rgba(15,23,42,.04);
  --shadow-sm: 0 1px 3px 0 rgba(15,23,42,.06), 0 1px 2px -1px rgba(15,23,42,.05);
  --shadow-md: 0 4px 8px -2px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 24px -8px rgba(15,23,42,.12), 0 6px 12px -6px rgba(15,23,42,.08);
  --shadow-xl: 0 24px 48px -12px rgba(15,23,42,.18);

  --font-sans: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-mr: 'Noto Sans Devanagari', 'Inter', sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 150ms;
  --dur: 250ms;
}

/* ========== RESET & BASE ========== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-mr);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--c-amber); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; padding: 0; }

input, select, textarea, button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) { .container { padding-inline: 1.5rem; } }

:focus-visible {
  outline: 3px solid rgba(29,78,216,.4);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========== NAVBAR ========== */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
  z-index: 100;
  transition: box-shadow var(--dur) var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: var(--c-navy);
  text-decoration: none;
}
.logo:hover { color: var(--c-navy); }

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-navy) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}

.logo-text { line-height: 1.15; }
.logo-name { font-weight: 700; font-size: 1.125rem; color: var(--c-navy); }
.logo-sub { font-size: .75rem; color: var(--c-muted); font-weight: 500; }

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--c-text-secondary);
  font-weight: 500;
  font-size: .9375rem;
  padding: .5rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--c-blue); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-amber);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover::after { width: 100%; }

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-navy) 100%);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.wa-icon { font-size: 1rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: .5rem;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease);
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 1rem;
  gap: 0;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--c-border);
}
.nav-links.open li { width: 100%; }
.nav-links.open a { display: block; padding: .75rem 0; }

/* ========== HERO ========== */

.hero {
  padding: 3rem 0 2.5rem;
  background:
    radial-gradient(ellipse at top right, rgba(245,158,11,.15) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(29,78,216,.08) 0%, transparent 60%),
    linear-gradient(180deg, #FFFBF5 0%, #FEF3C7 100%);
}
@media (min-width: 768px) { .hero { padding: 5rem 0 4rem; } }

.hero-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; align-items: center; gap: 3rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: rgba(15,23,42,.06);
  color: var(--c-navy);
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(15,23,42,.08);
}

.hero-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero-title .line1 {
  display: block;
  padding-bottom: 0.15em;
}
.hero-title .line2 {
  display: block;
  padding-top: 0.1em;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) { .hero-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.25rem; } }

.hero-desc {
  font-size: 1.0625rem;
  color: var(--c-text-secondary);
  margin-bottom: 1.75rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15,23,42,.08);
}

.stat-pill {
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-size: .8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

/* Hero card (right) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--c-border);
}

.hero-card-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: linear-gradient(135deg, var(--c-amber) 0%, #D97706 100%);
  color: #fff;
  padding: .625rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.hero-card-badge strong { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; margin: 2px 0; }
.hero-card-badge small { display: block; font-size: .7rem; opacity: .9; }

.hero-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  margin-top: .5rem;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-steps li {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-navy) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: var(--shadow-sm);
}
.order-steps h4 { font-size: .9375rem; font-weight: 600; color: var(--c-navy); margin-bottom: 2px; }
.order-steps p { font-size: .8125rem; color: var(--c-muted); margin: 0; line-height: 1.5; }

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: all var(--dur) var(--ease);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(29,78,216,.4); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-navy) 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover:not(:disabled) {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: #fff;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-outline:hover:not(:disabled) {
  background: var(--c-navy);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--c-amber) 0%, #D97706 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: var(--shadow-md);
  font-weight: 700;
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: var(--c-border-strong);
  color: var(--c-muted);
  box-shadow: none;
  transform: none;
}

/* ========== STATS SECTION ========== */

.stats-section {
  padding: 2.5rem 0;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.stat-card {
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  transition: transform var(--dur) var(--ease);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .25rem;
}
@media (min-width: 768px) { .stat-num { font-size: 2.25rem; } }

.c-blue { color: var(--c-blue); }
.c-amber { color: var(--c-amber); }
.c-green { color: var(--c-green); }
.c-red { color: var(--c-red); }

.stat-label {
  font-size: .8125rem;
  color: var(--c-muted);
  font-weight: 500;
}

/* ========== SECTION HEADER ========== */

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: .8125rem;
  color: var(--c-blue);
  background: var(--c-blue-light);
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: .75rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: .5rem;
  line-height: 1.25;
}
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }

.section-header > p {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ========== SERVICES ========== */

.services { padding: 4rem 0; background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-amber);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--c-navy);
}

.service-card p {
  font-size: .9375rem;
  color: var(--c-text-secondary);
  flex-grow: 1;
  line-height: 1.65;
}

.service-link {
  color: var(--c-blue);
  font-weight: 600;
  font-size: .875rem;
  margin-top: auto;
}

/* ========== MAHARASHTRA INFO ========== */

.mh-info { padding: 4rem 0; background: #fff; }

.mh-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .mh-grid { grid-template-columns: 1.1fr 1fr; align-items: center; } }

.mh-content > h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-navy);
  margin: .5rem 0 1rem;
  line-height: 1.25;
}
@media (min-width: 768px) { .mh-content > h2 { font-size: 2.25rem; } }

.mh-content > p {
  color: var(--c-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.mh-features {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 1.5rem;
}
.mh-features li {
  font-size: .9375rem;
  color: var(--c-text);
  font-weight: 500;
}

.mh-coverage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .875rem;
}
@media (min-width: 480px) { .mh-coverage { grid-template-columns: repeat(3, 1fr); } }

.coverage-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--dur) var(--ease);
}
.coverage-item:hover {
  background: var(--c-amber-light);
  border-color: var(--c-amber);
  transform: translateY(-2px);
}
.coverage-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: .25rem;
}
.coverage-item span { font-size: .75rem; color: var(--c-muted); font-weight: 500; }

/* ========== VILLAGE MAP ========== */

.village-map-section { padding: 4rem 0; background: var(--c-bg); }

.map-search-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .search-box { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .search-box { grid-template-columns: repeat(3, 1fr) auto; } }

.search-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-size: .9375rem;
  background: #fff;
  color: var(--c-text);
  transition: border-color var(--dur-fast) var(--ease);
}
.search-input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(29,78,216,.15); }
.search-input:disabled { background: #F1F5F9; color: #94A3B8; cursor: not-allowed; }

.map-status {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.map-status.loading { background: var(--c-blue-light); color: var(--c-blue); }
.map-status.success { background: var(--c-green-light); color: var(--c-green); }
.map-status.error { background: var(--c-red-light); color: var(--c-red); }

.load-progress {
  height: 4px;
  background: var(--c-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
  display: none;
}
.load-progress.active { display: block; }
.load-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--c-blue), var(--c-amber));
  width: 0%;
  transition: width var(--dur) var(--ease);
}

#satelliteMap {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  background: var(--c-bg);
  margin-bottom: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) { #satelliteMap { height: 500px; } }

.map-tip {
  font-size: .875rem;
  color: var(--c-text-secondary);
  background: var(--c-amber-light);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--c-amber);
  line-height: 1.6;
}

/* ========== BLOGS ========== */

.blogs { padding: 4rem 0; background: #fff; }

.blogs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .blogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blogs-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-blue-light);
}

.blog-img {
  height: 140px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--c-navy);
}

.blog-body { padding: 1.25rem; }

.blog-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: 9999px;
  margin-bottom: .75rem;
}

.blog-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: .5rem;
  line-height: 1.35;
}

.blog-body p {
  font-size: .875rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--c-blue);
  font-weight: 600;
  font-size: .875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.blog-link:hover { color: var(--c-amber); }

/* ========== VIDEOS ========== */

.videos { padding: 4rem 0; background: var(--c-bg); }

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }

.video-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--c-bg);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info { padding: 1.25rem; }
.video-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: .25rem;
}
.video-info p { font-size: .875rem; color: var(--c-muted); margin: 0; }

/* ========== FAQ ========== */

.faq { padding: 4rem 0; background: #fff; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.open { border-color: var(--c-amber); }

.faq-q {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  line-height: 1.4;
}
.faq-q:hover { background: rgba(245,158,11,.05); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--c-amber);
  transition: transform var(--dur) var(--ease);
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.25rem 1.25rem; }
.faq-a p { font-size: .9375rem; color: var(--c-text-secondary); line-height: 1.7; margin: 0; }

/* ========== CONTACT ========== */

.contact { padding: 4rem 0; background: var(--c-bg); }

.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.contact-form-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-size: .9375rem;
  background: #fff;
  font-family: inherit;
  color: var(--c-text);
  transition: border-color var(--dur-fast) var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.contact-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--dur) var(--ease);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--c-amber-light);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-card h4 { font-size: .8125rem; color: var(--c-muted); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .03em; }
.info-card a, .info-card p { font-size: .9375rem; color: var(--c-text); font-weight: 500; margin: 0; }
.info-card a:hover { color: var(--c-blue); }

/* ========== FOOTER ========== */

.footer {
  background: var(--c-navy);
  color: #CBD5E1;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col p { color: #94A3B8; font-size: .875rem; line-height: 1.7; margin-top: .75rem; }

.footer-col .logo-name,
.footer-col h4 { color: #fff; }

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li,
.footer-col ul a {
  color: #94A3B8;
  font-size: .9375rem;
}
.footer-col ul a { transition: color var(--dur-fast) var(--ease); }
.footer-col ul a:hover { color: var(--c-amber); }

.footer-col .logo-sub { color: #94A3B8; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .8125rem;
  color: #94A3B8;
}
.footer-bottom p:last-child { margin-top: .5rem; }

/* ========== FLOATING WHATSAPP ========== */

.float-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.625rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-decoration: none;
  animation: ph-pulse 2.5s infinite;
}
.float-wa:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  animation: none;
}

@keyframes ph-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), var(--shadow-lg); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0), var(--shadow-lg); }
}

/* ========== MODAL ========== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
}
.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: ph-modal-in .25s var(--ease);
}

@keyframes ph-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  font-weight: 400;
  line-height: 1;
  z-index: 1;
}
.modal-close:hover { background: var(--c-red-light); color: var(--c-red); }

.modal-body { padding: 2rem; }
.modal-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-navy); margin-bottom: 1rem; }
.modal-body p { margin-bottom: 1rem; line-height: 1.7; color: var(--c-text-secondary); }
.modal-body ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.modal-body ul li { margin-bottom: .5rem; line-height: 1.6; color: var(--c-text-secondary); }

/* ========== TOAST ========== */

.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--c-navy);
  color: #fff;
  padding: .875rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 250;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success { background: var(--c-green); }
.toast.error { background: var(--c-red); }

/* ========== REDUCED MOTION ========== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .float-wa { animation: none; }
}

/* ========== PRINT ========== */

@media print {
  .navbar, .float-wa, .hero-cta, .modal-overlay, .toast { display: none !important; }
  body { background: #fff; }
}
