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

:root {
  --color-primary: #00aca2;
  --color-primary-dark: #008f87;
  --color-primary-light: #e0f7f5;
  --color-accent: #de2068;
  --color-accent-light: #fff0f5;
  --color-yellow: #ffc843;
  --color-yellow-light: #fff8e7;
  --color-blue: #4a90d9;
  --color-blue-light: #eef4fc;
  --color-text: #2d3748;
  --color-text-light: #5a6577;
  --color-white: #fff;
  --color-bg: #fafcfd;
  --color-bg-alt: #f0f9f8;
  --color-border: #d8eeeb;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(0,172,162,0.08);
  --shadow-lg: 0 12px 40px rgba(0,172,162,0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1rem; }

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ===== FLOATING SHAPES (decorative) ===== */
.blob-bg {
  position: relative;
}

.blob-bg::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--color-yellow);
  opacity: 0.07;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: blobFloat 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.blob-bg::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: var(--color-accent);
  opacity: 0.05;
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: blobFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: rgba(255,255,255,0.95);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item a {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

.top-bar-item a:hover {
  color: var(--color-yellow);
}

.top-bar-icon {
  font-size: 0.9rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,172,162,0.1);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 160px;
  width: auto;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-links a.active {
  color: var(--color-white);
  background: var(--color-primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #00aca2 0%, #008f87 40%, #006b64 100%);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Playful floating circles */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,200,67,0.12);
  border-radius: 50%;
  animation: heroFloat1 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: rgba(222,32,104,0.08);
  border-radius: 50%;
  animation: heroFloat2 10s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.05); }
}

@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -25px) scale(1.08); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  font-size: 3rem;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,200,67,0.2);
  border: 1px solid rgba(255,200,67,0.4);
  color: var(--color-yellow);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,200,67,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,200,67,0); }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.hero-slide .container {
  position: relative;
  z-index: 1;
}

.hero-slide-content h1 {
  color: var(--color-white);
  font-size: 4rem;
  max-width: 600px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s, background 0.35s, box-shadow 0.35s;
}

.hero-slide.active .hero-slide-content .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Ken Burns zoom effect on active slide */
.hero-slide.active {
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  0% { background-size: 100%; }
  100% { background-size: 110%; }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }
  .hero-slide {
    padding-bottom: 3rem;
  }
  .hero-slide-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-content h1 {
    font-size: 2rem;
  }
}

/* ===== FULLSCREEN HERO ===== */
.hero-fullscreen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 5rem 0;
  position: relative;
}

.hero-fullscreen::before,
.hero-fullscreen::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
  z-index: 0;
}

.hero-fullscreen .container {
  position: relative;
  z-index: 1;
}

.hero-fullscreen h1 {
  font-size: 4rem;
  max-width: 600px;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #c41a5b;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222,32,104,0.4);
}

@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 60vh;
    padding-bottom: 3rem;
  }
  .hero-fullscreen h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-fullscreen h1 {
    font-size: 2rem;
  }
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  animation: heroImageIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes heroImageIn {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-text-animate {
  animation: heroTextIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image img {
    height: 280px;
  }
}

/* ===== FULL-WIDTH IMAGE BANNER ===== */
.image-banner {
  width: 100%;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #c41a5b;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(222,32,104,0.35);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-yellow);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,200,67,0.35);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .card-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-yellow), var(--color-accent));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: transform var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Alternating icon colors for playfulness */
.card:nth-child(3n+1) .card-icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.card:nth-child(3n+2) .card-icon {
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.card:nth-child(3n+3) .card-icon {
  background: var(--color-yellow-light);
  color: #d4a017;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== TEAM CARDS ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.team-card-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--color-bg-alt);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card-photo {
  transform: scale(1.04);
}

.team-card-img-wrap {
  overflow: hidden;
}

.team-card-body {
  padding: 2rem;
}

.team-card-body h3 {
  margin-bottom: 0.25rem;
}

.team-card-body .credentials {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.team-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ===== STAFF GRID ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  transition: all var(--transition);
}

.staff-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.staff-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-blue-light));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  transition: transform var(--transition);
}

.staff-card:hover .staff-avatar {
  transform: scale(1.08);
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  transition: transform var(--transition);
}

.stat-item:hover h3 {
  transform: scale(1.08);
}

.stat-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #006b64 100%);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255,200,67,0.08);
  border-radius: 50%;
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.08; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 0.04; }
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.92;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ===== CONTACT INFO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: all var(--transition);
}

.contact-info-list li:hover .contact-icon {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(-10deg) scale(1.05);
}

.contact-info-list h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-info-list p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-primary-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

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

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.hours-table tr:hover {
  background: var(--color-primary-light);
}

.hours-table td {
  padding: 0.85rem 0.5rem;
  font-size: 0.95rem;
  border-radius: 8px;
}

.hours-table td:first-child {
  font-weight: 600;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-light);
}

.hours-table .closed {
  color: var(--color-accent);
  font-weight: 600;
}

/* ===== DPC PAGE ===== */
.dpc-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.dpc-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dpc-feature:hover {
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.dpc-feature .feature-icon {
  width: 52px;
  height: 52px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.dpc-feature:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.dpc-feature h4 {
  margin-bottom: 0.25rem;
}

.dpc-feature p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== POLICIES ===== */
.policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  transition: all var(--transition);
}

.policy-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-primary-light);
  transform: translateX(4px);
}

.policy-item-info h4 {
  margin-bottom: 0.25rem;
}

.policy-item-info p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin: 0;
}

.policy-item .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--color-text-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #1a2a3a 0%, #0f1923 100%);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-yellow), var(--color-accent), var(--color-primary));
  background-size: 200% 100%;
  animation: rainbowBar 4s linear infinite;
}

@keyframes rainbowBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  max-width: 300px;
}

.site-footer h4 {
  color: var(--color-yellow);
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.4;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #006b64 100%);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,200,67,0.1);
  border-radius: 50%;
  animation: heroFloat1 8s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(222,32,104,0.06);
  border-radius: 50%;
  animation: heroFloat2 10s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.92;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 2.25rem; }
  .section { padding: 3.5rem 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    border-bottom: 2px solid var(--color-primary-light);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border-bottom: none;
    font-size: 0.95rem;
  }

  .nav-links a.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
  }

  .top-bar {
    display: none;
  }

  .logo {
    height: 80px;
  }

  .mobile-toggle {
    display: block;
  }

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

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

  .team-card-photo {
    height: 250px;
  }

  /* Disable animations on mobile for performance */
  .fade-in, .fade-in-left, .fade-in-right, .scale-in {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr; }
  .logo { height: 65px; }
}
