/* ==========================================================================
   PawCare — Teal + Glassmorphism Preview
   ========================================================================== */

body {
  background: var(--color-bg-primary, #E6EAEA);
}

/* -----------------------------------------------------------------------
   Navigation — Glassmorphism
   ----------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

.nav__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.4s ease;
}

.nav.is-scrolled .nav__logo-text {
  color: var(--color-text-primary);
}

.nav__paw-icon { color: #ffffff; transition: color 0.4s ease; }
.nav.is-scrolled .nav__paw-icon { color: var(--color-accent); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__link:hover { color: #ffffff; }
.nav__link:hover::after { width: 6px; }

.nav.is-scrolled .nav__link { color: var(--color-text-secondary); }
.nav.is-scrolled .nav__link:hover { color: var(--color-accent); }
.nav.is-scrolled .nav__link::after { background: var(--color-accent); }

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

.nav__phone {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.4s ease;
}

.nav.is-scrolled .nav__phone { color: var(--color-text-secondary); }
.nav__phone:hover { color: #fff; }
.nav.is-scrolled .nav__phone:hover { color: var(--color-accent); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--theme-button-radius);
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.nav.is-scrolled .nav__cta {
  background: var(--color-text-primary);
  border-color: var(--color-text-primary);
  color: #ffffff;
}

.nav.is-scrolled .nav__cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
}

.nav.is-scrolled .nav__hamburger span { background-color: var(--color-text-primary); }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 155, 165, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav__overlay.is-open { display: flex; }
.nav__overlay .nav__link { font-size: 22px; color: #fff; padding: 8px 0; }
.nav__overlay .nav__cta { margin-top: 16px; font-size: 16px; padding: 14px 32px; background: #fff; color: var(--color-accent); border-color: #fff; }
.nav__overlay .nav__phone { font-size: 16px; margin-top: 8px; color: rgba(255,255,255,0.8); }

@media (max-width: 767px) {
  .nav { width: calc(100% - 32px); top: 12px; border-radius: 14px; }
  .nav__menu, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
}

/* -----------------------------------------------------------------------
   Theme Switcher
   ----------------------------------------------------------------------- */
.theme-switcher {
  position: absolute;
  top: 24px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 6px 14px 6px 16px;
  z-index: 10;
}

.theme-switcher__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-switcher__swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  outline: none;
}

.theme-switcher__swatch:hover {
  transform: scale(1.15);
}

.theme-switcher__swatch--active {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
  .theme-switcher {
    top: auto;
    bottom: 24px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* -----------------------------------------------------------------------
   Hero — Teal gradient with decorative circles
   ----------------------------------------------------------------------- */
.hero {
  background: linear-gradient(160deg, #1FC5C0 0%, #1A9BA5 35%, #147E87 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 80px var(--container-padding);
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content { flex: 1; max-width: 50%; }
.hero__media { flex: 1; max-width: 50%; position: relative; }

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.hero__heading em {
  color: #FFFFFF;
  font-style: normal;
  position: relative;
  display: inline;
  background: linear-gradient(135deg, #7EDFDB 0%, #B4F0ED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheading {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  max-width: 480px;
}

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

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #ffffff;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 60px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero__btn-primary svg {
  width: 20px;
  height: 20px;
}

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Hero image area with glass cards */
.hero__image-wrapper {
  width: 100%;
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1/1;
}

/* Floating glass cards on hero — matches stats glass style */
.hero__glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  color: #fff;
  font-family: var(--font-body);
  box-shadow: none;
  transition: background 0.3s ease;
}

.hero__glass-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero__glass-card--appointments {
  top: 10%;
  right: -20px;
  z-index: 2;
}

.hero__glass-card--diet {
  bottom: 15%;
  left: -30px;
  z-index: 2;
}

.hero__glass-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.hero__glass-icon svg { width: 20px; height: 20px; color: #fff; }
.hero__glass-label { font-size: 14px; font-weight: 600; }
.hero__glass-value { font-size: 12px; opacity: 0.7; }

/* Floating icon buttons on hero */
.hero__float-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--color-text-primary);
}

.hero__float-icon svg { width: 20px; height: 20px; }
.hero__float-icon--1 { top: 5%; right: -60px; }
.hero__float-icon--2 { top: 35%; right: -80px; }
.hero__float-icon--3 { bottom: 30%; right: -60px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  animation: hero-bounce 2s ease infinite;
}

.hero__scroll svg { width: 24px; height: 24px; }

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 767px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero__container { padding: 60px var(--container-padding); }
  .hero__grid { flex-direction: column-reverse; gap: 40px; }
  .hero__content, .hero__media { max-width: 100%; }
  .hero__heading { font-size: 36px; }
  .hero__subheading { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__btn-primary, .hero__btn-secondary { justify-content: center; }
  .hero__float-icon, .hero__glass-card { display: none; }
  .hero__scroll { display: none; }
}

@media (max-width: 1024px) {
  .hero__float-icon { display: none; }
  .hero__glass-card--appointments { right: 0; }
}

/* -----------------------------------------------------------------------
   Services — Glass cards on teal-tinted section
   ----------------------------------------------------------------------- */
.services {
  padding: 120px 0;
  background: linear-gradient(180deg, #F2F6F6 0%, #E8EFEF 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 155, 165, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 155, 165, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.services__header {
  text-align: center;
  margin-bottom: 72px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.services__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 12px;
  background: rgba(26, 155, 165, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.services__heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.services__subheading {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services__card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.services__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 155, 165, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(26, 155, 165, 0.12), 0 0 0 1px rgba(26, 155, 165, 0.08);
  border-color: rgba(26, 155, 165, 0.12);
}

.services__card:hover::after { opacity: 1; }

.services__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(26, 155, 165, 0.1), rgba(26, 155, 165, 0.04));
  border-radius: 14px;
  margin-bottom: 24px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services__card:hover .services__icon {
  background: linear-gradient(135deg, var(--color-accent), #1FC5C0);
  color: #ffffff;
  transform: scale(1.08) rotate(-2deg);
}

.services__title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.services__description {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__heading { font-size: 32px; }
  .services__card { padding: 28px; }
}

/* -----------------------------------------------------------------------
   Stats — Glassmorphism on teal
   ----------------------------------------------------------------------- */
.stats {
  background: linear-gradient(135deg, #1A9BA5 0%, #147E87 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.stats__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 20px;
  transition: all 0.3s ease;
}

.stats__item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.stats__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.stats__icon svg { width: 22px; height: 22px; }

.stats__number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 8px;
}

.stats__affix { font-family: var(--font-heading); }

.stats__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats__number { font-size: 36px; }
  .stats__item { padding: 24px 16px; }
}

/* -----------------------------------------------------------------------
   Testimonials — Animated Stack (shadcn-style)
   ----------------------------------------------------------------------- */
.at {
  padding: 120px 0;
  background: var(--color-bg-tertiary);
}

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

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

/* Image stack */
.at__images {
  display: flex;
  align-items: center;
  justify-content: center;
}

.at__img-stack {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
}

.at__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform-origin: bottom center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

/* Text side */
.at__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.at__name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px 0;
}

.at__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 32px 0;
}

.at__quote {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Nav buttons */
.at__nav {
  display: flex;
  gap: 12px;
  margin-top: 48px;
}

.at__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.at__btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.05);
}

.at__btn:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 767px) {
  .at__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .at__img-stack {
    max-width: 260px;
    margin: 0 auto;
  }

  .at__name { font-size: 24px; }
  .at__quote { font-size: 16px; }
}

/* -----------------------------------------------------------------------
   Team
   ----------------------------------------------------------------------- */
.team {
  padding: 100px 0;
  background: var(--color-bg-primary);
}

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

.team__header {
  text-align: center;
  margin-bottom: 56px;
}

.team__eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(26, 155, 165, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
}

.team__heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 12px 0;
}

.team__subheading {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.team__card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.team__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.team__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: grayscale(100%) brightness(1.05) contrast(1.05);
}

.team__card:hover .team__image {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1) contrast(1);
}

.team__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.team__placeholder svg { width: 64px; height: 64px; opacity: 0.3; }

.team__card-body { padding: 24px; }

.team__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px 0;
}

.team__role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.team__specialty {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(26, 155, 165, 0.08);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.team__bio {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 991px) {
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .team__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .team__heading { font-size: 32px; }
}

/* -----------------------------------------------------------------------
   CTA Banner — Teal gradient
   ----------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #1A9BA5 0%, #147E87 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-banner__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.cta-banner__subheading {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-banner__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cta-banner__phone { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-banner__phone-label { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.cta-banner__phone-number { font-size: 18px; font-weight: 600; color: #fff; text-decoration: none; }
.cta-banner__phone-number:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .cta-banner__heading { font-size: 30px; }
  .cta-banner__button { width: 100%; justify-content: center; }
}

/* -----------------------------------------------------------------------
   Footer — Dark with teal accents
   ----------------------------------------------------------------------- */
.footer {
  background: var(--color-text-primary, #1A2332);
  padding: 80px 0 40px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

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

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

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer__col-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px 0;
}

.footer__description { margin: 0 0 24px 0; }

.footer__social { display: flex; gap: 8px; }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.footer__social-link:hover { color: #fff; background: var(--color-accent); }
.footer__social-link svg { width: 18px; height: 18px; }

.footer__text { margin: 0 0 4px 0; }

.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s ease;
}

.footer__link:hover { color: var(--color-accent); }

.footer__hours { list-style: none; margin: 0; padding: 0; }

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__hours-item:last-child { border-bottom: none; }
.footer__hours-day { color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.footer__hours-time { color: rgba(255, 255, 255, 0.5); }

.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 2px; }

.footer__map {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.footer__map iframe { display: block; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright { margin: 0; color: rgba(255, 255, 255, 0.35); font-size: 13px; }

.footer__back-to-top {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer__back-to-top:hover { color: var(--color-accent); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}
