/* ================= COLOR SYSTEM ================= */
:root {
  --primary: #932d1f;
  --primary-dark: #7a2318;
  --accent: #fabd69;

  --text: #0f172a;
  --muted: #6b7280;
  --bg: #ffffff;

  --transition: 180ms ease;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}

.container {
  width: 75%;
  max-width: none;
  padding: 0;
  margin: auto;
}
/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ================= BRAND ================= */
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg,
      rgba(250, 189, 105, 0.35),
      rgba(147, 45, 31, 0.18));
  box-shadow: 0 8px 22px rgba(147, 45, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.brand-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

/* ================= NAV ================= */
.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-links a {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(147, 45, 31, 0.3);
}
/* ================= MOBILE TOGGLE ================= */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  position: relative;
  display: block;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  bottom: -6px;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-weight: 800;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu a:hover {
  background: rgba(250, 189, 105, 0.25);
}

.mobile-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("public/Kashi_Vishwanath_Temple.webp") center / cover no-repeat;
  transform: scale(1.08);
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.75rem;
}

.hero-title {
  margin-top: 1.2rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  margin-top: 1rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-points {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.hero-points div {
  display: flex;
  gap: 0.6rem;
  font-weight: 700;
}

.hero-points span {
  color: #fabd69;
  font-weight: 900;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* ================= BUTTONS ================= */
.btn-primary {
  padding: 1.1rem 2rem;
  border-radius: 12px;
  background: #8B2D21;
  /* Deep Red/Brown */
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(139, 45, 33, 0.4);
  font-size: 1.05rem;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: #721f14;
  transform: translateY(-2px);
}

.btn-call {
  padding: 1.1rem 2rem;
  border-radius: 12px;
  background: #22c55e;
  color: #fff;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-call:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* ================= HERO FORM ================= */
.hero-form-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
}

.hero-form-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.hero-form-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #374151;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #eef0f3;
  background: #fcfcfc;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(147, 45, 31, 0.2);
  background: #fff;
}

.btn-primary.full {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  padding: 1.2rem;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    order: -1;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-call {
    width: 100%;
    text-align: center;
  }
}


/* ================= SECTIONS ================= */
.section {
  padding: 2.6rem 0;
}

.section.alt {
  background: transparent;
}

.section-header {
  max-width: 40rem;
  margin: 0 auto 1.2rem;
  text-align: center;
}

.section-kicker {
  color: var(--brown-dark);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ================= CARDS / GRIDS ================= */
.routes-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.routes-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.route-card,
.why-card {
  padding: 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  border: 1px solid var(--border-soft);
}

/* ================= FOOTER ================= */
footer {
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
  margin-top: 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ================= MOBILE ================= */
@media (max-width: 1024px) {

  .routes-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    order: 1;
  }

  .hero-form-card {
    order: 2;
  }

  .hero {
    min-height: 380px;
    padding: 2rem 0;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .routes-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================= ABOUT HIGHLIGHTS ================= */
.about-highlights {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(147, 45, 31, 0.02);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  flex: 1;
  min-width: 200px;
}

.highlight-icon {
  font-size: 1.1rem;
  min-width: 1.5rem;
  text-align: center;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.highlight-text strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

.highlight-text span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Reduce image size */
.about-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-highlights {
    flex-direction: column;
    margin: 1rem 0;
  }

  .highlight-item {
    padding: 0.5rem;
    min-width: auto;
  }

  .about-photo img {
    height: 200px;
  }
}

/* ================= ENHANCED PACKAGES ================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(147, 45, 31, 0.15);
}

.package-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.package-icon {
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 45, 31, 0.1);
  border-radius: 50%;
}

.package-badge {
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.package-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.package-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.package-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.package-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-4px);
  }

  .package-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .package-btn {
    width: 100%;
    padding: 0.75rem;
  }
}

/* ================= ENHANCED WHY US ================= */
.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.why-feature {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all var(--transition);
  align-items: flex-start;
}

.why-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(147, 45, 31, 0.12);
}

.why-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 4.5rem;
  height: 4.5rem;
  background: #7a2318;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fabd69;
  box-shadow: 0 10px 30px rgba(122, 35, 24, 0.2);
}

.why-content {
  flex: 1;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.why-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat {
  font-size: 0.85rem;
  color: #7a2318;
  font-weight: 700;
  background: #fff1f0;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

/* Trust Indicators */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(147, 45, 31, 0.05), rgba(147, 45, 31, 0.02));
  border-radius: 12px;
  border: 1px solid rgba(147, 45, 31, 0.1);
}

.trust-item {
  text-align: center;
  padding: 1rem;
}

.trust-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .why-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-feature {
    padding: 1.25rem;
    gap: 1rem;
  }

  .icon-circle {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .why-title {
    font-size: 1rem;
  }

  .trust-indicators {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .trust-number {
    font-size: 1.5rem;
  }

  .trust-label {
    font-size: 0.8rem;
  }
}

/* ================= ENHANCED CONTACT SECTION ================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-content {
  padding: 2rem 0;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 45, 31, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.contact-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.contact-title span {
  color: var(--primary);
}

.contact-description {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.benefit-text strong {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}

.benefit-text span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(147, 45, 31, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  font-size: 1.25rem;
  width: 2rem;
  text-align: center;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-details strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.phone-link,
.email-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.phone-link:hover,
.email-link:hover {
  text-decoration: underline;
}

/* Enhanced Form Styles */
.contact-form-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.form-header p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.enhanced-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select {
  padding: 1rem 1.15rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all var(--transition);
  background: white;
  color: var(--text);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(147, 45, 31, 0.1);
}

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 45, 31, 0.3);
}

.button-icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.cta-button:hover .button-icon {
  transform: translateX(3px);
}

.form-assurance {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.check-icon {
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-assurance {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .contact-benefits {
    gap: 0.75rem;
  }

  .benefit-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
}

/* ================= POPUP FORM ================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
}

.popup-overlay.show .popup-form {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.popup-header {
  margin-bottom: 1.5rem;
}

.popup-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.popup-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.popup-form-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.popup-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.popup-form-group label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.95rem;
  background: white;
  color: var(--text);
  transition: all 0.2s ease;
  font-family: inherit;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(147, 45, 31, 0.1);
}

.popup-form-group input::placeholder,
.popup-form-group textarea::placeholder {
  color: #999;
}

.popup-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.popup-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  width: 100%;
}

.popup-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(147, 45, 31, 0.3);
}

.popup-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .popup-form {
    padding: 1.5rem;
    margin: 1rem;
    max-width: 350px;
  }

  .popup-header h3 {
    font-size: 1.25rem;
  }

  .popup-form-content {
    gap: 1rem;
  }
}

/* ================= POPUP THANK YOU MESSAGE ================= */
.popup-thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 0;
}

.thank-you-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-thank-you h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.popup-thank-you p {
  font-size: 1rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.thank-you-sub {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
}

.thank-you-contact {
  background: rgba(147, 45, 31, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  margin: 0.5rem 0;
}

.thank-you-contact p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.thank-you-contact strong {
  color: var(--primary);
}

.thank-you-close {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.thank-you-close:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(147, 45, 31, 0.3);
}

@media (max-width: 768px) {
  .thank-you-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }

  .popup-thank-you h3 {
    font-size: 1.5rem;
  }

  .popup-thank-you p {
    font-size: 0.9rem;
  }
}

/* ================= NEW CONTACT BOX STYLES ================= */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 45, 31, 0.15);
  border-color: rgba(147, 45, 31, 0.2);
}

.contact-item .icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-item a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.contact-item a.whatsapp-link {
  color: #25D366;
  /* WhatsApp Green */
}

/* WhatsApp Icon Specific Style */
.contact-item:last-child .icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 480px) {
  .contact-item {
    padding: 0.8rem;
  }

  .contact-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }

  .contact-item a {
    font-size: 1rem;
  }
}