/* ==========================================================================
   Atlantic Air — Landing Page Styles
   ========================================================================== */

:root {
  --teal-900: #0a4d52;
  --teal-800: #0b585e;
  --teal-700: #0f6e74;
  --teal-600: #14818a;
  --teal-tint: #eaf4f4;

  --gold-500: #f2b632;
  --gold-600: #dfa321;

  --orange-500: #dd7a2c;
  --orange-600: #c2661e;

  --navy-900: #17324a;
  --navy-700: #2c4a63;

  --gray-100: #f7f7f5;
  --gray-200: #ececea;
  --gray-500: #6b7280;

  --white: #ffffff;

  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-script: 'Pacifico', cursive;

  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow-md: 0 10px 30px rgba(10, 40, 45, 0.15);
  --shadow-sm: 0 4px 14px rgba(10, 40, 45, 0.1);

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

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

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

.script-text {
  font-family: var(--font-script);
  font-weight: 400;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--orange-500);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--orange-600);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.site-header__logo img {
  height: 64px;
  width: auto;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.site-header__phone {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-align: right;
  text-decoration: none;
  color: var(--navy-900);
}

.site-header__phone small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  font-weight: 600;
  white-space: nowrap;
}

.site-header__phone strong {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  color: var(--teal-700);
  white-space: nowrap;
}

.site-header__cta .btn-primary {
  padding: clamp(10px, 1.6vw, 14px) clamp(16px, 3vw, 28px);
  font-size: clamp(0.85rem, 1.6vw, 1rem);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-700) 0%, var(--teal-800) 100%);
  color: var(--white);
  padding: 48px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold-500);
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  max-width: 46ch;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.hero__points svg {
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 3px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------- Google rating badge ---------- */
.google-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px 12px;
  margin-top: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.google-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.google-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4285f4, #ea4335, #fbbc05, #34a853);
}

.google-badge__icon svg {
  display: block;
}

.google-badge__body {
  display: flex;
  flex-direction: column;
  color: var(--navy-900);
}

.google-badge__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.google-badge__rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0;
}

.google-badge__score {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-600);
}

.google-badge__stars {
  color: var(--gold-500);
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.google-badge__link {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-decoration: underline;
}

.google-badge:hover .google-badge__link {
  color: var(--teal-700);
}

/* ---------- Lead form card ---------- */
.lead-card {
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow-md);
}

.lead-card__title {
  font-size: 1.4rem;
  color: var(--teal-700);
}

.lead-card__subtitle {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-100);
  color: var(--navy-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 12px 0 0;
  line-height: 1.4;
}

.form-disclaimer a {
  color: var(--teal-700);
  text-decoration: underline;
}

.form-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fdecea;
  color: #b3261e;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-bar__item svg {
  color: var(--teal-700);
}

.trust-bar__item strong {
  font-size: 1rem;
  color: var(--navy-900);
}

.trust-bar__item span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ---------- Section shell ---------- */
.section {
  padding: 64px 0;
}

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

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section__title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--teal-700);
}

.section__title .script-text {
  color: var(--orange-500);
  font-size: 1.15em;
}

.section__subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 6px;
}

.stat-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-700);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
}

.why-list svg {
  flex-shrink: 0;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  padding: 5px;
  width: 26px;
  height: 26px;
  margin-top: 1px;
}

/* ---------- Services strip ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-card svg {
  color: var(--teal-700);
  margin: 0 auto 10px;
}

.service-card span {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

/* ---------- Video testimonial ---------- */
.testimonial-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 40px;
}

.testimonial-video {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-900);
  display: block;
}

.testimonial-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(10, 20, 25, 0.25);
  transition: background 0.15s ease;
}

.testimonial-video__play:hover {
  background: rgba(10, 20, 25, 0.4);
}

.testimonial-video__play svg {
  width: 60px;
  height: 60px;
  color: var(--white);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.testimonial-video.is-playing .testimonial-video__play {
  display: none;
}

.testimonial-feature__quote {
  font-size: 1.15rem;
  color: var(--navy-700);
  margin: 10px 0 16px;
}

.testimonial-divider {
  text-align: center;
  font-size: 1.05rem;
  color: var(--teal-700);
  margin: 0 0 28px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  color: var(--gold-500);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.review-card__quote {
  color: var(--navy-700);
  font-size: 0.98rem;
  flex-grow: 1;
}

.review-card__author {
  font-weight: 700;
  color: var(--teal-700);
  font-size: 0.95rem;
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Offers ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.offer-card {
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  box-shadow: var(--shadow-md);
}

.offer-card--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-900);
}

.offer-card__value {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.offer-card__desc {
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.offer-card--gold .btn-outline {
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.offer-card--gold .btn-outline:hover {
  background: rgba(23, 50, 74, 0.08);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--teal-800), var(--teal-900));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.final-cta__title {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 20px;
  font-size: 0.9rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__logo img {
  height: 48px;
  margin-bottom: 12px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}

.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Thank you page ---------- */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  text-align: center;
  padding: 40px 20px;
}

.thankyou__card {
  max-width: 560px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
}

.thankyou__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  color: var(--gold-500);
}

.thankyou__logo-wrap {
  display: flex;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 22px;
  margin: 0 auto 24px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.thankyou__logo {
  height: 56px;
  margin: 0;
}

.thankyou h1 {
  color: var(--gold-500);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.thankyou p {
  font-size: 1.05rem;
}

.thankyou__phone {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.thankyou__actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    justify-content: center;
  }

  .google-badge {
    display: flex;
    width: max-content;
    max-width: 100%;
    margin: 22px auto 0;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-feature {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .site-header__bar {
    padding: 10px 16px;
  }

  .site-header__logo img {
    height: 48px;
  }

  .hero {
    padding: 32px 0 48px;
  }

  .google-badge {
    padding: 12px 16px 10px;
    gap: 10px;
  }

  .google-badge__icon svg {
    width: 28px;
    height: 28px;
  }

  .lead-card {
    padding: 22px 20px 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    width: 100%;
  }
}
