:root {
  --ink: #12261f;
  --ink-soft: #3d5249;
  --muted: #6b7f75;
  --paper: #f3f7f4;
  --paper-2: #e7f0ea;
  --surface: #ffffff;
  --line: rgba(18, 38, 31, 0.1);
  --line-strong: rgba(18, 38, 31, 0.16);
  --spruce: #0f5c4c;
  --spruce-deep: #0a3f35;
  --lagoon: #1a9e8f;
  --lagoon-bright: #20c4b0;
  --sunset: #e36b2c;
  --sunset-deep: #c4551d;
  --success: #1f8a5b;
  --danger: #d64545;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 6px 18px rgba(18, 38, 31, 0.06);
  --shadow-md: 0 16px 40px rgba(18, 38, 31, 0.1);
  --shadow-lg: 0 28px 60px rgba(18, 38, 31, 0.14);
  --ring: 0 0 0 4px rgba(26, 158, 143, 0.18);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1180px;
  --phone: "(888) 887-4484";
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(32, 196, 176, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(227, 107, 44, 0.12), transparent 50%),
    linear-gradient(180deg, #eef6f2 0%, var(--paper) 40%, #f7faf8 100%);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .btn, .nav-link, .logo, .deal-price, .btn-search, .support-cta-btn {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 247, 244, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  line-height: 1.1;
}

.logo i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--spruce), var(--lagoon));
  color: var(--white);
  font-size: 1rem;
  transform: none;
  box-shadow: 0 8px 18px rgba(15, 92, 76, 0.25);
}

.logo span {
  background: linear-gradient(120deg, var(--spruce-deep), var(--lagoon));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  margin-right: 18px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--spruce);
  background: rgba(15, 92, 76, 0.08);
}

.nav-cta { display: flex; align-items: center; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.nav-phone:hover {
  background: var(--spruce);
  transform: translateY(-1px);
}

.nav-phone a { color: inherit; }

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--lagoon-bright);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(32, 196, 176, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(32, 196, 176, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(32, 196, 176, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(32, 196, 176, 0); }
}

/* Instant support */
.instant-support {
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35));
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  margin-top: 50px;
}

.support-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 5px solid var(--white);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  background: var(--paper-2);
}

.support-headline {
  color: var(--ink);
  font-size: 1.7rem;
  margin: 20px 0 15px;
  font-weight: 800;
}

.support-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-deep) 100%);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  padding: 14px 42px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(227, 107, 44, 0.28);
}

.support-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: var(--white);
}

.support-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-weight: 600;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.support-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px 14px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.support-card:hover {
  border-color: rgba(26, 158, 143, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.support-card i {
  font-size: 1.4rem;
  color: var(--spruce);
  background: rgba(26, 158, 143, 0.12);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.support-card span {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 70px 20px 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(243, 247, 244, 0.94) 0%, rgba(243, 247, 244, 0.78) 42%, rgba(243, 247, 244, 0.35) 100%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  z-index: 0;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--ink);
  max-width: 14ch;
}

.hero h1 span {
  color: var(--sunset);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: rgba(227, 107, 44, 0.2);
  z-index: -1;
}

.hero p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease both;
}

.highlight-item:nth-child(2) { animation-delay: 0.1s; }
.highlight-item:nth-child(3) { animation-delay: 0.2s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.highlight-item i {
  color: var(--lagoon);
  font-size: 0.95rem;
}

.highlight-item strong {
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-search-side {
  flex: 1;
  max-width: 520px;
  width: 100%;
}

.search-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.search-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--paper-2);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.tab-btn {
  border: none;
  background: transparent;
  padding: 12px 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn.active {
  background: var(--white);
  color: var(--spruce);
  box-shadow: var(--shadow-sm);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.input-group { position: relative; }

.input-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 14px;
  color: var(--lagoon);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-wrapper input,
.input-wrapper select {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  border-radius: 12px;
  padding: 13px 14px 13px 40px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: 0.2s ease;
  appearance: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
  outline: none;
  border-color: var(--lagoon);
  background: var(--white);
  box-shadow: var(--ring);
}

.btn-search {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, var(--spruce) 0%, var(--lagoon) 100%);
  color: var(--white);
  padding: 16px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(15, 92, 76, 0.28);
  transition: 0.25s ease;
}

.btn-search:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.search-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
}

/* Autocomplete */
.autocomplete-items {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 260px;
  overflow: auto;
}

.autocomplete-item {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}

.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-active { background: rgba(26, 158, 143, 0.08); }
.ac-city { font-weight: 600; font-size: 0.9rem; }
.ac-code {
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--spruce);
  background: rgba(15, 92, 76, 0.08);
  padding: 4px 8px;
  border-radius: 8px;
}

/* Trust strip */
.trust-strip {
  padding: 40px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(15, 92, 76, 0.12), rgba(26, 158, 143, 0.18));
  color: var(--spruce);
  flex-shrink: 0;
  font-size: 1.15rem;
}

.trust-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-text p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sections shared */
.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.section-head h2 span { color: var(--lagoon); }

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.deals {
  padding: 60px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.deal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: 0.3s ease;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.deal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.deal-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.deal-info { padding: 18px; }

.deal-dest {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.deal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.deal-type {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.deal-price {
  color: var(--sunset);
  font-size: 1.25rem;
  font-weight: 800;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: 1.5px solid var(--spruce);
  color: var(--spruce);
  padding: 11px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
}

.deal-card:hover .btn-outline {
  background: var(--spruce);
  color: var(--white);
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(180deg, transparent, rgba(26, 158, 143, 0.06), transparent);
}

.testimonial-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--spruce), var(--lagoon));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
}

.author-info h4 { font-size: 0.95rem; }
.author-info p { font-size: 0.8rem; color: var(--muted); }
.rating { color: #e8a317; font-size: 0.75rem; margin-top: 4px; }

/* Features */
.features {
  padding: 70px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.feature-card {
  text-align: center;
  padding: 34px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature-card i {
  font-size: 1.8rem;
  color: var(--lagoon);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.features-cta { text-align: center; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--spruce);
  transform: translateY(-2px);
  color: var(--white);
}

/* SEO */
.seo-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 70px;
}

.seo-section h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.seo-section h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--spruce);
}

.seo-section p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 60px 20px 90px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col p { font-size: 0.95rem; line-height: 1.7; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-col a:hover { color: var(--lagoon-bright); }
.footer-col a i { margin-right: 8px; font-size: 0.7rem; }

.footer-phone {
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}

.disclaimer {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile sticky */
.mobile-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: rgba(18, 38, 31, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.mobile-sticky.visible { transform: translateY(0); }

.sticky-text {
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-family: var(--font-display);
}

.sticky-text small {
  font-family: var(--font-body);
  font-weight: 600;
  opacity: 0.7;
  font-size: 0.75rem;
}

.sticky-btn {
  background: linear-gradient(135deg, var(--success), #167a50);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.sticky-btn:hover { color: var(--white); filter: brightness(1.08); }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 28, 22, 0.72);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.modal-content::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--spruce), var(--lagoon));
}

.modal-content.promo-content::before {
  background: linear-gradient(90deg, var(--sunset), var(--danger));
}

@keyframes slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.loader {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(15, 92, 76, 0.12);
  border-top-color: var(--lagoon);
  border-radius: 50%;
  margin: 18px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.success-icon {
  font-size: 3.2rem;
  color: var(--success);
  margin-bottom: 12px;
}

.timer-box {
  background: rgba(26, 158, 143, 0.08);
  color: var(--spruce);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  margin: 18px 0;
  border: 1px solid rgba(26, 158, 143, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  color: var(--muted);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(90deg);
}

.promo-badge {
  background: linear-gradient(135deg, var(--sunset), var(--danger));
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.promo-content .timer-box {
  background: rgba(227, 107, 44, 0.08);
  color: var(--sunset-deep);
  border-color: rgba(227, 107, 44, 0.2);
}

.btn-call-now {
  width: 100%;
  background: linear-gradient(135deg, var(--success), #167a50);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
}

.btn-call-now:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  color: var(--white);
}

.modal-subtext {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  font-weight: 600;
}

.modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.modal-content p { color: var(--ink-soft); }

/* Policy / inner pages */
.page-hero {
  padding: 70px 20px 50px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 92, 76, 0.92), rgba(26, 158, 143, 0.85)),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.page-hero p { opacity: 0.9; }

.content-wrap {
  max-width: 900px;
  margin: -28px auto 60px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.policy-card h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  color: var(--spruce);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.policy-card h2:first-child { margin-top: 0; }

.policy-card p,
.policy-card li {
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.policy-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.alert-banner {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-deep));
  color: var(--white);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 28px rgba(227, 107, 44, 0.25);
}

.alert-banner a {
  color: var(--white);
  border-bottom: 2px dashed rgba(255,255,255,0.5);
  font-weight: 800;
}

.alert-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0;
  list-style: none;
  padding: 0;
}

.region-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  margin: 0;
}

.region-list strong {
  display: block;
  color: var(--spruce);
  margin-bottom: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.contact-panel h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-panel p {
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 700;
}

.contact-link i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(26, 158, 143, 0.12);
  color: var(--spruce);
}

.contact-link:hover {
  border-color: var(--lagoon);
  transform: translateY(-2px);
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-bottom: 14px;
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.about-stat {
  text-align: center;
  padding: 18px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid var(--line);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--spruce);
}

.about-stat span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 78px; }
  .hero-container { flex-direction: column; gap: 36px; }
  .hero-text-side { align-items: center; text-align: center; }
  .hero h1 { max-width: none; }
  .hero p { max-width: 42ch; }
  .hero-highlights { justify-content: center; }
  .hero-search-side { max-width: 600px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .trust-grid,
  .deals-grid,
  .features-grid,
  .testimonial-grid,
  .about-stats { grid-template-columns: 1fr; }
  .hero { padding: 50px 20px 70px; }
  .instant-support { padding: 40px 15px 20px; margin-top: 45px; }
  .support-avatar { width: 80px; height: 80px; top: -40px; border-width: 4px; }
  .support-headline { font-size: 1.3rem; }
  .support-cta-btn { font-size: 1.45rem; padding: 12px 28px; }
  .policy-card { padding: 28px 20px; }
}

@media (max-width: 576px) {
  .search-grid { grid-template-columns: 1fr; }
  .nav-phone { font-size: 0.92rem; padding: 9px 14px; }
  .hero h1 { font-size: 2.1rem; }
  .search-box { padding: 22px 18px; }
}
