:root {
  --teal: #007c8a;
  --teal-dark: #005f68;
  --teal-light: #e7f7f8;
  --gold: #f6b63d;
  --text: #1f2933;
  --muted: #65717d;
  --border: #e6e9ee;
  --bg: #f9fafb;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.navbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover { color: var(--teal); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,124,138,.95), rgba(0,82,91,.95)),
    radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 35%);
  color: var(--white);
}
.hero-content { position: relative; padding: 80px 20px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: -1px;
}
.hero-subtitle { font-size: clamp(1.1rem, 3vw, 1.55rem); font-weight: 700; margin: 0 0 18px; }
.hero-location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin: 0 0 34px;
}
.hero-location svg { width: 20px; height: 20px; }
.hero-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.veteran { margin-top: 28px; font-weight: 700; }

.section { padding: 76px 20px; }
.container { max-width: 1120px; margin: 0 auto; }
.narrow { max-width: 760px; }
h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 20px;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin: -8px auto 42px;
}
.about-section { background: var(--white); }
.about-section p { font-size: 1.08rem; color: #3c4651; margin: 18px 0; }

.cards { display: grid; gap: 24px; }
.four, .contact-grid { grid-template-columns: repeat(4, 1fr); }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
}
.card svg { width: 46px; height: 46px; color: var(--teal); stroke-width: 1.8; margin-bottom: 14px; }
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0; }
.service-card { min-height: 150px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.need-help {
  margin-top: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
}
.need-help h3 { margin: 0 0 8px; }
.need-help p { margin: 0; color: var(--muted); }

.booking-section, .reviews-section { background: var(--white); }
.booking-card { padding: 44px 34px; }
.booking-card > svg { width: 58px; height: 58px; }
.include-box {
  background: #9bd7dd;
  color: #17464c;
  border-radius: 8px;
  text-align: left;
  padding: 20px 24px;
  max-width: 380px;
  margin: 26px auto 30px;
}
.include-box strong { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.include-box svg { width: 18px; height: 18px; margin: 0; color: #17464c; }
.include-box ul { margin: 0; padding-left: 20px; }
.include-box li { margin: 7px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.12); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-light { background: var(--white); color: var(--teal-dark); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }

.review-card { text-align: left; }
.stars { color: var(--gold); font-size: 1.35rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { color: #4a5561; font-style: italic; min-height: 96px; }
.review-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; color: var(--muted); font-size: .95rem; }
.review-footer span:first-child { color: var(--text); font-weight: 700; }
.google-review { max-width: 720px; margin: 34px auto 0; }
.google-review small { display: block; margin-top: 16px; color: var(--muted); }

.contact-card a { color: var(--teal); font-weight: 700; overflow-wrap: anywhere; }
.contact-card p { margin-top: 8px; }
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
}
.footer p { margin: 4px 0; }

@media (max-width: 900px) {
  .four, .services-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .logo-img { height: 82px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; border-top: 1px solid var(--border); }
  .four, .services-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .section { padding: 58px 18px; }
}


.review-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal-light);
}

.google-review p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
