/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Raleway.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Raleway.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Raleway.woff2') format('woff2');
}


/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --color-teal: #00B4CC;
  --color-navy: #003366;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-dark: #4A4A4A;
  --font-primary: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none;
}

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

a {
  color: inherit;
}

/* ============================================================
   SHARED COMPONENTS
   ============================================================ */

section[id] {
  scroll-margin-top: 80px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  line-height: 1;
}

@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 204, 0.45);
  }

  .btn--outline:hover {
    background: rgba(0, 180, 204, 0.06);
    transform: translateY(-2px);
  }
}

.btn--primary {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  box-shadow: 0 4px 14px rgba(0, 180, 204, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__logo svg {
  width: 100%;
  height: 100%;
  /* Logo uses fill="#0ab6ba" (its native color) — differs from --color-teal: #00B4CC.
     Per brand guidelines, the logo SVG is a fixed asset and must never be recolored. */
}

.nav__wordmark {
  font-weight: 700;
  font-size: 17px;
  color: var(--color-navy);
  letter-spacing: 0.5px;
  text-transform: none;
}

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

.nav__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-gray-light);
  border-radius: 50px;
  padding: 8px 8px;
}

.nav__pill a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__pill a:hover {
  background: var(--color-white);
  color: var(--color-teal);
}

.nav__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-navy);
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .nav__cta:hover {
    background: var(--color-teal);
    transform: translateY(-1px);
  }
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 2px;
  transition: opacity 0.15s;
}

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

.hero {
  border-top: 5px solid var(--color-teal);
  padding: 96px 0;
  text-align: center;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__glow--tr {
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 204, 0.06) 0%, transparent 70%);
}

.hero__glow--bl {
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 180, 204, 0.04) 0%, transparent 70%);
}

.hero__watermark {
  position: absolute;
  right: 15%;
  bottom: -80px;
  width: 600px;
  height: 600px;
  background: url('favicon.svg') no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero__badge {
  display: inline-block;
  background: rgba(0, 180, 204, 0.08);
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 180, 204, 0.15);
}

.hero__headline {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__headline-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__headline-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  vertical-align: middle;
}

.hero__headline-sub {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--color-gray-dark);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero__sub {
  font-size: 18px;
  color: var(--color-gray-dark);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 20px;
}

.hero__phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.15s;
}

.hero__phone:hover {
  color: var(--color-teal);
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
}

.hero__stat-label {
  font-size: 11px;
  color: var(--color-gray-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.services {
  padding: 80px 0;
  background: #F8F9FA;
}

.services__pilot {
  max-width: 900px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, rgba(0, 180, 204, 0.08) 0%, rgba(0, 180, 204, 0.03) 100%);
  border: 1px solid rgba(0, 180, 204, 0.25);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
}

.services__pilot-badge {
  display: inline-block;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 16px;
  margin-bottom: 10px;
}

.services__pilot-copy {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.5;
  margin: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-white);
  border: 1px solid #e8e8e8;
  border-top: 4px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .service-card--featured:hover {
    box-shadow: 0 12px 32px rgba(0, 180, 204, 0.2);
  }
}

.service-card--featured {
  border: 2px solid var(--color-teal);
  border-top: 4px solid var(--color-teal);
  box-shadow: 0 4px 24px rgba(0, 180, 204, 0.12);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.service-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.service-card__price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.service-card__price-was {
  font-family: var(--font-mono);
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  line-height: 1;
}

.service-card__price {
  font-family: var(--font-mono);
  font-size: 40px;
  color: var(--color-navy);
  line-height: 1;
}

.service-card__details {
  list-style: none;
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.8;
  flex: 1;
}

.service-card__divider {
  width: 32px;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-bottom: 16px;
}

.service-card--featured .service-card__divider {
  background: var(--color-teal);
}

.service-card__cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal);
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  transition: color 0.15s;
}

.service-card__cta:hover {
  color: var(--color-navy);
}

.services__addon {
  max-width: 900px;
  margin: 24px auto 0;
  background: var(--color-gray-light);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services__addon-label {
  font-size: 15px;
  color: var(--color-gray-dark);
  font-weight: 600;
}

.services__addon-note {
  font-weight: 400;
  color: #888;
}

.services__addon-price-group {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.services__addon-price-was {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.services__addon-price {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--color-navy);
}

.services__notes {
  max-width: 900px;
  margin: 16px auto 0;
  text-align: center;
}

.services__notes p {
  font-size: 14px;
  color: #888;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 80px 0;
  background: var(--color-gray-light);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__headline {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 8px;
}

.about__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.about__badges {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge__icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(0, 180, 204, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
}

.trust-badge__icon-wrap svg {
  width: 24px;
  height: 24px;
}

.trust-badge__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.trust-badge__sub {
  font-size: 14px;
  color: var(--color-gray-dark);
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */

.before-after {
  padding: 80px 0;
  background: var(--color-white);
}

.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.photo-placeholder {
  background: var(--color-gray-light);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

.photo-label {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
}

.before-after__note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #aaa;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 80px 0;
  background: #F5FAFB;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--color-white);
  border-radius: 12px;
  border-top: 4px solid var(--color-teal);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-gray-dark);
  margin-bottom: 20px;
}

.review-card__reviewer {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.testimonials__note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: #aaa;
}

/* ============================================================
   BOOKING
   ============================================================ */

.booking {
  padding: 80px 0;
  background: var(--color-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 204, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking::after {
  content: '';
  position: absolute;
  left: 15%;
  bottom: -80px;
  width: 600px;
  height: 600px;
  background: url('favicon.svg') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
  filter: brightness(0) invert(1);
}

.booking__headline {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.booking__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.booking__placeholder {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-gray-light);
  border-radius: 12px;
  padding: 48px 32px;
  color: var(--color-gray-dark);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.booking__placeholder p + p {
  margin-top: 8px;
}

.booking__info {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer {
  border-top: 6px solid var(--color-teal);
  background: var(--color-white);
  padding: 56px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.footer__logo svg {
  width: 100%;
  height: 100%;
  /* Logo uses fill="#0ab6ba" (its native color) — differs from --color-teal: #00B4CC.
     Per brand guidelines, the logo SVG is a fixed asset and must never be recolored. */
}

.footer__tagline {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
  border-bottom: 1px solid transparent;
  display: inline-block;
  width: fit-content;
}

.footer__links a:hover {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

.footer__contact-phone {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}

.footer__google-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.15s;
}

.footer__google-link:hover {
  color: var(--color-navy);
}

.footer__contact-area {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.5;
}

.footer__contact-area + .footer__contact-area {
  margin-top: 4px;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #aaa;
  text-align: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
}

.fade-in.in-view {
  animation: fadeInUp 0.6s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
  }

  .fade-in.in-view {
    animation: none;
  }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */

.mobile-cta {
  display: none;
}

/* ============================================================
   RESPONSIVE — mobile (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Sticky mobile CTA */
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--color-teal);
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  .mobile-cta__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
  }

  .mobile-cta__phone {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
  }

  body {
    padding-bottom: 56px;
  }

  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid #eee;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__pill {
    flex-direction: column;
    background: none;
    padding: 0;
    gap: 0;
  }

  .nav__pill a {
    font-size: 16px;
    padding: 12px 0;
    border-radius: 0;
  }

  .nav__cta {
    text-align: center;
    width: 100%;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 56px 0;
  }

  .hero__headline {
    font-size: 32px;
  }

  .hero__headline-logo {
    width: 36px;
    height: 36px;
  }

  .hero__headline-brand {
    gap: 8px;
  }

  .hero__headline-sub {
    font-size: 18px;
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__phone {
    font-size: 18px;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-value {
    font-size: 22px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* Services */
  .services__pilot {
    max-width: 400px;
    padding: 18px 20px;
  }

  .services__pilot-copy {
    font-size: 13px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Before/After */
  .before-after__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Booking */
  .booking__headline {
    font-size: 28px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Typography */
  .section-title {
    font-size: 26px;
  }
}
