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

:root {
  --navy: #1a2744;
  --teal: #2a9d8f;
  --teal-dark: #21867a;
  --sand: #f5f0e8;
  --white: #ffffff;
  --gray-100: #f7f8fa;
  --gray-200: #e8eaef;
  --gray-400: #9498a2;
  --gray-600: #5c6170;
  --gray-800: #2d3142;
  --max-w: 1140px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(26,39,68,0.08);
  --shadow-lg: 0 8px 32px rgba(26,39,68,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }

/* === Utility === */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section { padding: 80px 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--sand .section__title,
.section--navy .section__title { color: inherit; }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center { text-align: center; }

/* === Header / Nav === */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--gray-800);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover,
.nav__link--active {
  background: var(--gray-100);
  color: var(--navy);
}
.nav__link--cta {
  background: var(--teal);
  color: var(--white);
}
.nav__link--cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* === Hero === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243356 100%);
  color: var(--white);
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42,157,143,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero__content { max-width: 540px; }

.hero__badge {
  display: inline-block;
  background: rgba(42,157,143,0.2);
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(42,157,143,0.35);
}
.btn--primary:hover { background: var(--teal-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: #243356; color: var(--white); }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
}

.hero__card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero__stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-bottom: none; }
.hero__stat-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.hero__stat-value { font-weight: 700; color: var(--teal); }

/* === Trust Bar === */
.trust {
  padding: 40px 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.trust__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust__icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

/* === Cards Grid === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === Services Page === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--teal);
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__list {
  list-style: none;
  padding: 0;
}

.service-card__list li {
  padding: 6px 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* === About Page === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about__value {
  padding: 20px;
  background: var(--sand);
  border-radius: var(--radius);
}

.about__value h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.about__value p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
}

.team-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card__bio {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info__label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-info__text {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--gray-100);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* === Testimonials === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial__stars {
  color: #f4c542;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial__author {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #1f8a7d 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-banner .btn--outline {
  border-color: rgba(255,255,255,0.5);
}

/* === Hours Table === */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.95rem;
}

.hours-table th {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 2px solid var(--gray-200);
}

.hours-table td {
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}

.hours-table tr:last-child td { border-bottom: none; }

/* === Footer === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

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

.footer__brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* === Page Header === */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #243356 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === Insurance Bar === */
.insurance {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

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

.insurance__chip {
  background: var(--gray-100);
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

/* === Map Placeholder === */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  margin-top: 32px;
  border: 2px dashed var(--gray-200);
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__content { max-width: 100%; margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__card { max-width: 340px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 700px) {
  .section { padding: 56px 0; }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav__toggle { display: block; }

  .nav__toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle--open span:nth-child(2) { opacity: 0; }
  .nav__toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust__inner { gap: 24px; }

  .cards,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .hero { padding: 64px 0 64px; }
}