:root {
  /* Enhanced Color Palette for Ganga Sec90 Gurgaon */
  --primary: #1e3a8a; /* Deep Navy Blue - Premium */
  --primary-light: #3b82f6; /* Bright Blue - Modern */
  --primary-ribbon: #2563eb; /* Electric Blue - Accent */
  --accent-blue: #0ea5e9; /* Sky Blue - Fresh */
  --accent-cyan: #06b6d4; /* Cyan - Tech */
  --accent-gold: #f59e0b; /* Gold - Luxury */
  --accent-emerald: #10b981; /* Emerald - Success */
  --surface: #ffffff;
  --surface-alt: #f8fafc; /* Light Gray */
  --surface-warm: #fef7ed; /* Warm White */
  --text: #0f172a; /* Dark Slate */
  --text-muted: #64748b; /* Medium Gray */
  --border: #e2e8f0;
  --text-white: #ffffff;
  /* Gradient Definitions */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #fbbf24 100%);
  --gradient-emerald: linear-gradient(135deg, var(--accent-emerald) 0%, #34d399 100%);
  /* Shadow Definitions */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.3);
}

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Fade in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

.hidden {
  display: none !important;
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 65%, var(--accent-cyan) 100%);
  color: #fff;
  padding: 2.5rem 0 4rem;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand i {
  font-size: 1.25rem;
  color: var(--accent-cyan);
}

nav ul {
  display: none;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 0;
  align-items: center;
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 65%, var(--accent-cyan) 100%);
  animation: gradientShift 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 65%, var(--accent-cyan) 100%);
  }
  25% {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-cyan) 65%, var(--primary) 100%);
  }
  50% {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 65%, var(--primary-light) 100%);
  }
  75% {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 65%, var(--primary-light) 100%);
  }
}
.hero-copy h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: textShine 3s ease-in-out 2s infinite;
}

@keyframes textShine {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  }
}
.hero-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.promo-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.promo-banner.visible {
  opacity: 1;
  transform: translateY(0);
  display: flex;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #f97316, #fb7185);
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.32);
  min-width: min-content;
}

.promo-content {
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.promo-content strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.promo-content span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: min-content;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.promo-link i {
  color: var(--accent-blue);
}

.promo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.3);
}

.promo-close {
  appearance: none;
  border: none;
  background: rgba(15, 23, 42, 0.18);
  color: rgba(255, 255, 255, 0.75);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 1;
}

.promo-close:hover {
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
}

.hero-media {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.meta-card {
  background: rgba(11, 31, 78, 0.35);
  border-radius: 16px;
  padding: 1.1rem;
  display: grid;
  gap: 0.4rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.meta-card:hover {
  transform: translateY(-2px);
  background: rgba(11, 31, 78, 0.45);
}

.meta-card span:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}

.meta-card span:last-child {
  font-size: 1.1rem;
  font-weight: 600;
}

main {
  flex: 1;
  padding: 2.5rem 0 4rem;
  display: grid;
  gap: 4rem;
  background: var(--surface);
}

main > section {
  animation: fadeInUp 0.8s ease-out;
}

main > section:nth-child(1) {
  animation-delay: 0.2s;
}

main > section:nth-child(2) {
  animation-delay: 0.4s;
}

main > section:nth-child(3) {
  animation-delay: 0.6s;
}

main > section:nth-child(4) {
  animation-delay: 0.8s;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-heading a {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface-alt);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 220px;
  animation: fadeInUp 0.6s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card.media-card {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: none;
}

.card.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 19, 43, 0.05) 0%, rgba(11, 19, 43, 0.65) 65%), var(--media, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.card.media-card:hover::before {
  transform: scale(1.06);
}

.card.media-card > * {
  position: relative;
  z-index: 1;
}

.card.media-card i,
.card.media-card span {
  color: rgba(255, 255, 255, 0.85);
}

.card i {
  font-size: 1.8rem;
  color: var(--accent-blue);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.card.media-card p {
  color: var(--text-white);
}

.card span {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.callback-form {
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.callback-form .form-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.callback-form .form-field {
  display: grid;
  gap: 0.4rem;
}

.callback-form label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}

.callback-form input,
.callback-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.98);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-form input:focus,
callback-form select:focus {
  border-color: rgba(14, 165, 233, 0.7);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.callback-form button {
  justify-content: center;
  width: 100%;
  min-height: 44px;
}

.callback-form .form-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.callback-container {
  display: grid;
  gap: 1.5rem;
}

.callback-thanks {
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
}

.callback-thanks i {
  font-size: 2rem;
  color: #34d399;
}

.callback-thanks h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.callback-thanks p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-group,
.contact-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-content {
  display: grid;
  gap: 1.5rem;
}

.contact-copy {
  display: grid;
  gap: 0.85rem;
}

.contact-copy h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
}

.contact-sidebar {
  display: grid;
  gap: 1.25rem;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-buttons {
  margin-bottom: 0;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.qr-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  text-align: center;
}

.qr-card .qr-target {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-card img {
  width: 100%;
  height: auto;
}

.cta-banner {
  background: linear-gradient(120deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  color: #fff;
  border-radius: 22px;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: #fff;
  color: var(--primary);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta i {
  font-size: 1.1rem;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.15);
}

.cta:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.45);
  outline-offset: 3px;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
}

footer .container {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 18px 30px rgba(15, 118, 110, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInFromBottom 0.6s ease-out 1s both, pulse 2s ease-in-out 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 30px rgba(15, 118, 110, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 22px 40px rgba(15, 118, 110, 0.35);
  }
}
.floating-whatsapp i {
  font-size: 1.2rem;
  animation: bounce 1.5s ease-in-out 4s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(15, 118, 110, 0.35);
}

.attention-nudge {
  position: fixed;
  inset: auto 24px 24px;
  z-index: 80;
  display: grid;
  gap: 0.9rem;
  align-items: center;
  width: min(100%, 340px);
  padding: 1.25rem 1.4rem;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.45));
  color: var(--text);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  transform: translateY(40px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  overflow: hidden;
}

.attention-nudge::before {
  content: "";
  position: absolute;
  inset: -60% -40% auto;
  height: 140%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 55%);
  pointer-events: none;
  transform: translateY(20%);
  transition: transform 0.6s ease;
}

.attention-nudge.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.attention-nudge.visible::before {
  transform: translateY(0);
}

.attention-copy {
  position: relative;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.attention-copy strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
}

.attention-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

.attention-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(37, 99, 235, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.attention-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.18);
}

.attention-link i {
  color: inherit;
  font-size: 1rem;
}

.attention-dismiss {
  appearance: none;
  border: none;
  background: rgba(148, 163, 184, 0.22);
  color: var(--text-muted);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 3px;
  right: 5px;
}

.attention-dismiss:hover {
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent-blue);
  transform: rotate(6deg);
}

.contact-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.18);
  color: #d1fae5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.urgency-badge i {
  color: inherit;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.trust-badges i {
  color: #fde68a;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease-out;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: rotate(90deg) scale(1.1);
}

.modal-close i {
  font-size: 1.1rem;
  color: #666;
  transition: color 0.3s ease;
}

.modal-close:hover i {
  color: #333;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}

/* Modal Form Styles */
.modal-content .callback-form {
  background: transparent;
  border: none;
  padding: 0;
  gap: 1.5rem;
}

.modal-content .callback-form .form-field {
  gap: 0.5rem;
}

.modal-content .callback-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

.modal-content .callback-form input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  background: #fafafa;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  animation: fadeInUp 0.5s ease-out;
}

.modal-content .callback-form .form-field:nth-child(1) input {
  animation-delay: 0.1s;
}

.modal-content .callback-form .form-field:nth-child(2) input {
  animation-delay: 0.2s;
}

.modal-content .callback-form .form-field:nth-child(3) input {
  animation-delay: 0.3s;
}

.modal-content .callback-form .cta-row {
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

.modal-content .callback-form input:focus {
  border-color: var(--accent-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

.modal-content .callback-form input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.modal-content .callback-form .cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.modal-content .callback-form .cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.85em;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.modal-content .callback-form .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.modal-content .callback-form .cta.secondary {
  background: var(--accent-blue);
  color: #fff;
  border: 2px solid var(--accent-blue);
}

.modal-content .callback-form .cta.secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(11, 31, 78, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-copy {
    width: 100%;
  }
  .hero-actions {
    flex-direction: row;
    gap: 0.75rem;
  }
  .hero-actions .cta {
    width: 50%;
    justify-content: center;
  }
  .hero-media {
    width: 100%;
  }
  .hero-media img {
    max-width: 100%;
    width: 100%;
  }
  .promo-banner {
    width: 100%;
  }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .meta-card {
    width: 33.33%;
    padding: 0.75rem;
  }
  .promo-actions {
    flex-direction: column;
  }
  .promo-link,
  .contact-buttons .cta {
    width: 100%;
    justify-content: center;
  }
  .contact-buttons {
    justify-content: center;
  }
  .attention-nudge {
    inset: auto 12px 12px;
    width: auto;
    padding: 1.1rem;
  }
  .attention-actions {
    justify-content: center;
  }
  .contact-urgency {
    flex-direction: column;
    text-align: center;
  }
  .trust-badges {
    justify-content: center;
  }
  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }
  .modal-content .callback-form .cta-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .modal-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .modal-header h2 {
    font-size: 1.6rem;
  }
  .modal-header p {
    font-size: 0.95rem;
  }
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  nav ul {
    display: flex;
  }
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
  .promo-banner {
    flex-direction: row;
    align-items: center;
  }
  .promo-actions {
    flex-direction: row;
    align-items: center;
  }
  .cta-banner {
    padding: 3rem;
    gap: 2.5rem;
  }
  .contact-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-copy {
    grid-column: span 2;
  }
}
@media (min-width: 1180px) {
  .hero {
    grid-template-columns: minmax(75%, 1fr) minmax(25%, 1fr);
  }
  .contact-content {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) 1fr;
    align-items: start;
  }
  .contact-copy {
    grid-column: auto;
    text-align: left;
    align-self: center;
  }
}