:root {
  --blue-dark: #002d72;
  --blue: #0057b8;
  --blue-light: #3399ff;
  --yellow: #ffcc00;
  --red: #e01f26;
  --gray-bg: #eef2f7;
  --white: #ffffff;
  --text: #222222;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--gray-bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: "Times New Roman", Times, serif;
}

a { color: var(--blue); }

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

/* ---------- Header / Nav ---------- */

.site-header {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 60%, var(--blue-dark) 100%);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header__brand {
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.5);
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  padding: 6px 4px;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover {
  border-bottom: 3px solid var(--yellow);
  color: var(--yellow);
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(135deg, var(--blue-dark), var(--blue) 50%, var(--blue-light));
  color: var(--white);
  text-align: center;
  padding: 60px 20px 50px;
}

.hero__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  margin-bottom: 24px;
  border: 2px dashed var(--blue-dark);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 16px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.hero__line {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero__ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__icons {
  font-size: 2.2rem;
  display: flex;
  gap: 24px;
  justify-content: center;
  filter: drop-shadow(2px 3px 3px rgba(0,0,0,0.4));
}

/* ---------- CTA buttons ---------- */

.cta {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
}

.cta--primary {
  background: linear-gradient(180deg, #ffdb4d, var(--yellow));
  color: var(--blue-dark);
  box-shadow: 0 5px 0 #cc9900, 0 8px 14px rgba(0,0,0,0.35);
}

.cta--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #cc9900, 0 5px 10px rgba(0,0,0,0.35);
}

.cta--secondary {
  background: linear-gradient(180deg, #ff5f5f, var(--red));
  color: var(--white);
  box-shadow: 0 5px 0 #a3151a, 0 8px 14px rgba(0,0,0,0.35);
}

.cta--secondary:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #a3151a, 0 5px 10px rgba(0,0,0,0.35);
}


/* ---------- Sections (shared) ---------- */

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--blue-dark);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
  margin: 0 0 12px;
}

.divider {
  height: 6px;
  width: 140px;
  margin: 0 auto 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
}

.lede {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
}

/* ---------- About ---------- */

.about__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

.about__card {
  margin: 0;
}

.about__bio {
  text-align: left;
  max-width: none;
  margin: 0;
}

@media (max-width: 600px) {
  .about__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about__bio {
    text-align: center;
  }
}

/* ---------- Team ---------- */

.team__card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  padding: 18px;
  text-align: center;
  border: 3px solid var(--blue-light);
}

.team__card img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 4px solid var(--yellow);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.team__card h3 {
  margin: 0 0 4px;
  color: var(--blue-dark);
}

.team__role {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  font-style: italic;
}

/* ---------- Services ---------- */

.services__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

.services__icon-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  border: 3px solid var(--blue-light);
  padding: 16px;
}

.services__icon-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(1px 3px 3px rgba(0,0,0,0.3));
}

.services__bio {
  text-align: left;
  max-width: none;
  margin: 0;
}

@media (max-width: 600px) {
  .services__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .services__icon-card {
    max-width: 220px;
  }

  .services__bio {
    text-align: center;
  }
}

/* ---------- Reviews ---------- */

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

.reviews__card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  padding: 24px;
  border: 1px solid #ddd;
}

.reviews__stars {
  color: var(--yellow);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.reviews__quote {
  font-style: italic;
  margin: 0 0 16px;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: var(--blue-dark);
}

.avatar {
  background: var(--gray-bg);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue-light);
}

/* ---------- Contact ---------- */

.contact__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  padding: 16px;
  border: 3px solid var(--blue-light);
}

.contact-form iframe {
  display: block;
  border: none;
}

.contact-details__card {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.contact-details__card p {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.contact-details__card a {
  color: var(--yellow);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 26px 20px;
}

.site-footer p { margin: 0 0 6px; }

.site-footer__tag {
  color: #b8cbe8;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .site-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

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