/* ================================================
   Columbus Children's Clinic — Playful Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ================================
   Design Tokens
   ================================ */
:root {
  --primary:        #0B9FD8;
  --primary-dark:   #0A82B4;
  --primary-light:  #E5F6FD;
  --primary-50:     #F0FAFF;

  --teal:           #00C9B8;
  --teal-light:     #E6FAFA;
  --coral:          #FF6B6B;
  --coral-light:    #FFF0F0;
  --yellow:         #FFD600;
  --yellow-light:   #FFFDE7;
  --green:          #4DC97A;
  --green-dark:     #38A35F;
  --green-light:    #EAFAF1;
  --purple:         #9B8FFF;
  --purple-light:   #F0EEFF;
  --orange:         #FF8C42;
  --orange-light:   #FFF3EA;

  --text-900: #0F172A;
  --text-800: #1E293B;
  --text-700: #334155;
  --text-600: #475569;
  --text-400: #94A3B8;

  --white:      #FFFFFF;
  --bg-light:   #F8FAFC;
  --border:     #E2E8F0;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --shadow-blue: 0 6px 24px rgba(11,159,216,0.35);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-2xl:  36px;
  --radius-full: 9999px;

  --nav-h:  80px;
  --max-w:  1200px;
  --ease:   0.25s ease;
}

/* ================================
   Reset & Base
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-900);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-600); line-height: 1.85; }

/* ================================
   Layout
   ================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section          { padding: 5rem 0; }
.section-alt      { background: var(--bg-light); }
.section-yellow   { background: var(--yellow-light); }
.section-teal     { background: var(--teal-light); }
.section-blue     { background: var(--primary-50); }
.section-purple   { background: var(--purple-light); }
.section-green    { background: var(--green-light); }

.section-header   { text-align: center; margin-bottom: 3rem; }
.section-header .tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
  background: var(--primary-light);
  color: var(--primary);
}
.section-header h2 { margin-bottom: 0.9rem; }
.section-header p  { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ================================
   Wave Dividers
   ================================ */
.wave { line-height: 0; display: block; }
.wave svg { display: block; width: 100%; }

/* ================================
   Navigation
   ================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--primary-light);
  transition: box-shadow var(--ease);
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(11,159,216,0.15); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(11,159,216,0.3);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.97rem;
  color: var(--text-900); line-height: 1.2;
}
.nav-logo-sub {
  font-size: 0.67rem; color: var(--text-400); letter-spacing: 0.06em; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 0.1rem; flex: 1; justify-content: center;
}
.nav-links a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem;
  color: var(--text-700); padding: 0.45rem 0.75rem; border-radius: var(--radius-full);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: var(--primary-light);
}

.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.92rem;
  color: white;
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border-radius: var(--radius-full); flex-shrink: 0;
  box-shadow: var(--shadow-blue);
  border: none;
}
.nav-phone:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-phone i { font-size: 0.82rem; }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2.5px;
  background: var(--primary); border-radius: 3px; transition: var(--ease);
}

.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white; border-bottom: 2px solid var(--primary-light);
  padding: 1.25rem 1.5rem 1.75rem; z-index: 999;
  box-shadow: var(--shadow-lg); flex-direction: column; gap: 0.35rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--text-700); padding: 0.7rem 1rem; border-radius: var(--radius-md);
}
.mobile-nav a:hover { color: var(--primary); background: var(--primary-light); }
.mobile-nav .mobile-phone {
  margin-top: 0.75rem; text-align: center; padding: 0.9rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: white; border-radius: var(--radius-lg);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* ================================
   Buttons
   ================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.85rem; border-radius: var(--radius-full);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem;
  transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); filter: brightness(1.05); }

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

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

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: white;
}
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
  color: white;
}
.btn-coral:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ================================
   Appointment Banner
   ================================ */
.appointment-banner {
  background: linear-gradient(90deg, var(--primary) 0%, var(--teal) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
  padding: 1.25rem 0;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.appointment-banner .container {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap; text-align: center;
}
.appointment-banner p {
  color: white; font-family: 'Nunito', sans-serif;
  font-weight: 600; font-size: 1rem; margin: 0;
}
.appointment-banner a {
  color: white; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1.15rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.22);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
}
.appointment-banner a:hover { background: white; color: var(--primary); }

/* ================================
   Hero Carousel
   ================================ */
.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 580px; max-height: 860px;
  margin-top: var(--nav-h);
}
.hero-swiper .swiper-slide { position: relative; overflow: hidden; }

.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }

.hero-slide-bg-1 {
  background-image: url('../images/hero/hero-1.jpg');
  background-color: #1A6FA0;
}
.hero-slide-bg-2 {
  background-image: url('../images/hero/hero-2.jpg');
  background-color: #0E6B5E;
}
.hero-slide-bg-3 {
  background-image: url('../images/hero/hero-3.jpg');
  background-color: #4A1D96;
}

.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,20,40,0.72) 0%, rgba(10,20,40,0.35) 55%, transparent 100%);
}

/* Floating bubbles decoration on hero */
.hero-slide-decor {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
}
.hero-slide-decor span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatBubble 8s ease-in-out infinite;
}
.hero-slide-decor span:nth-child(1) { width:80px; height:80px; background:var(--yellow); top:15%; right:20%; animation-delay:0s; }
.hero-slide-decor span:nth-child(2) { width:50px; height:50px; background:var(--coral); top:60%; right:12%; animation-delay:1.5s; }
.hero-slide-decor span:nth-child(3) { width:100px; height:100px; background:var(--teal); top:30%; right:8%; animation-delay:3s; }
.hero-slide-decor span:nth-child(4) { width:35px; height:35px; background:var(--green); top:75%; right:30%; animation-delay:2s; }

@keyframes floatBubble {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-20px) rotate(10deg); }
}

.hero-slide-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
  padding: 2rem 1.5rem;
  max-width: var(--max-w); margin: 0 auto;
}
.hero-slide-text { max-width: 620px; color: white; }
.hero-slide-text .tag {
  display: inline-block;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(8px);
  color: white; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.4rem 1.1rem; border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hero-slide-text h1 { color: white; margin-bottom: 1.1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-slide-text p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.35); color: white;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: rgba(255,255,255,0.32); }
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 1rem; font-weight: 800; }
.hero-swiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5); opacity: 1; width: 10px; height: 10px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: white; width: 30px; border-radius: 5px;
}

/* ================================
   Stats Bar
   ================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 0; position: relative;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; text-align: center;
}
.stat-item { color: white; }
.stat-num {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 2.6rem; line-height: 1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.9rem; opacity: 0.88; font-family: 'Nunito', sans-serif; font-weight: 600; }

/* ================================
   Awards Section
   ================================ */
.awards-section { position: relative; }
.awards-swiper { padding: 1rem 3.5rem 3.2rem; }

.award-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem 2rem; text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255,214,0,0.25);
  transition: all 0.3s ease; height: auto;
  position: relative; overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--orange) 100%);
}
.award-card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-xl); }

.award-img {
  width: 150px; height: 150px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
}
.award-icon {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem; color: white;
  box-shadow: 0 6px 24px rgba(255,140,66,0.45);
}
.award-year {
  font-family: 'Nunito', sans-serif; font-weight: 900;
  font-size: 1.6rem; color: var(--orange); margin-bottom: 0.4rem;
}
.award-title {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--text-900); margin-bottom: 0.4rem;
}
.award-org { font-size: 0.88rem; color: var(--text-600); }

/* ================================
   Services Preview
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem;
}
.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 2px solid var(--border);
  transition: all 0.25s ease; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  transition: var(--ease);
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), var(--teal)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--green)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--orange)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), var(--primary)); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 66px; height: 66px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.6rem;
  transition: var(--ease);
}
.service-card:nth-child(1) .service-icon { background: var(--primary-light);  color: var(--primary); }
.service-card:nth-child(2) .service-icon { background: var(--teal-light);    color: var(--teal); }
.service-card:nth-child(3) .service-icon { background: var(--coral-light);   color: var(--coral); }
.service-card:nth-child(4) .service-icon { background: var(--purple-light);  color: var(--purple); }
.service-card:nth-child(5) .service-icon { background: var(--green-light);   color: var(--green); }
.service-card:nth-child(6) .service-icon { background: var(--orange-light);  color: var(--orange); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--text-900); margin-bottom: 0.45rem; }
.service-card p  { font-size: 0.88rem; color: var(--text-600); }

/* ================================
   Staff Carousel
   ================================ */
.staff-swiper { padding: 1rem 3.5rem 3.5rem; }

.staff-card {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md);
  border: 2px solid var(--border); transition: all 0.3s ease;
}
.staff-card:hover { transform: translateY(-10px) rotate(0.4deg); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }

.staff-card-img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.staff-card-img-placeholder {
  width: 100%; height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.staff-card:nth-child(1) .staff-card-img-placeholder { background: linear-gradient(135deg, var(--primary-light), #DBEAFE); color: var(--primary); }
.staff-card:nth-child(2) .staff-card-img-placeholder { background: linear-gradient(135deg, var(--teal-light), #CCFBF1);    color: var(--teal); }
.staff-card:nth-child(3) .staff-card-img-placeholder { background: linear-gradient(135deg, var(--coral-light), #FFE4E6);   color: var(--coral); }
.staff-card:nth-child(4) .staff-card-img-placeholder { background: linear-gradient(135deg, var(--green-light), #DCFCE7);   color: var(--green); }

.staff-card-top-bar {
  height: 6px;
}
.staff-card:nth-child(1) .staff-card-top-bar { background: linear-gradient(90deg, var(--primary), var(--teal)); }
.staff-card:nth-child(2) .staff-card-top-bar { background: linear-gradient(90deg, var(--teal), var(--green)); }
.staff-card:nth-child(3) .staff-card-top-bar { background: linear-gradient(90deg, var(--coral), var(--purple)); }
.staff-card:nth-child(4) .staff-card-top-bar { background: linear-gradient(90deg, var(--green), var(--yellow)); }

.staff-card-body  { padding: 1.75rem; }
.staff-card-body h3 { font-size: 1.2rem; color: var(--text-900); margin-bottom: 0.2rem; }
.staff-card-role  { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--primary); margin-bottom: 0.9rem; }
.staff-card-body p { font-size: 0.92rem; line-height: 1.75; color: var(--text-600); }

/* ================================
   Testimonials
   ================================ */
.testimonials-swiper { padding: 1rem 3.5rem 3.5rem; }

.testimonial-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem; box-shadow: var(--shadow-md);
  border: 2px solid var(--border); transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.testimonial-card:nth-child(1)::before,
.testimonial-card:nth-child(4)::before { background: linear-gradient(90deg, var(--primary), var(--teal)); }
.testimonial-card:nth-child(2)::before,
.testimonial-card:nth-child(5)::before { background: linear-gradient(90deg, var(--coral), var(--orange)); }
.testimonial-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--yellow); font-size: 1.05rem; }

.testimonial-text {
  font-size: 0.97rem; color: var(--text-700);
  line-height: 1.85; font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-text::before {
  content: '\201C';
  font-size: 3.5rem; color: var(--primary); font-family: Georgia, serif;
  line-height: 0; vertical-align: -0.85rem; margin-right: 0.15rem; opacity: 0.3;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  color: white; flex-shrink: 0;
}
.testimonial-info h4   { font-size: 0.92rem; color: var(--text-900); margin-bottom: 0.1rem; }
.testimonial-info span { font-size: 0.78rem; color: var(--text-400); }

.google-reviews-cta   { text-align: center; margin-top: 2.5rem; }
.google-reviews-cta p { margin-bottom: 1rem; font-size: 1rem; }
.btn-google {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: white; border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--text-800); box-shadow: var(--shadow-sm);
}
.btn-google:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.google-g {
  width: 22px; height: 22px; font-weight: 700; font-size: 0.9rem; border-radius: 50%;
  background: linear-gradient(135deg, #EA4335 0%, #FBBC05 33%, #34A853 66%, #4285F4 100%);
  color: white; display: flex; align-items: center; justify-content: center;
  font-style: normal; flex-shrink: 0;
}

/* ================================
   Location Section
   ================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 440px; border: 3px solid white; }
.map-container iframe { width: 100%; height: 100%; border: none; }

.location-info { display: flex; flex-direction: column; gap: 1.5rem; }
.location-info h2 { margin-bottom: 0.25rem; }

.info-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; border: 2px solid var(--border);
}
.info-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.info-card-icon {
  width: 42px; height: 42px;
  background: var(--primary-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem; flex-shrink: 0;
}
.info-card-header h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem; }

.hours-list { display: flex; flex-direction: column; gap: 0.45rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; padding: 0.3rem 0; border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day    { font-weight: 700; color: var(--text-800); }
.hours-row .time   { color: var(--text-600); }
.hours-row .closed { color: var(--text-400); font-style: italic; }

.phone-big {
  display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg); color: white;
  font-family: 'Nunito', sans-serif;
  box-shadow: var(--shadow-blue);
}
.phone-big i { font-size: 1.5rem; }
.phone-big-text { display: flex; flex-direction: column; }
.phone-big-text span:first-child { font-size: 0.78rem; opacity: 0.85; font-weight: 600; }
.phone-big-text a { font-size: 1.55rem; font-weight: 900; color: white; }
.phone-big-text a:hover { opacity: 0.85; }

/* ================================
   CTA Section
   ================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 60%, var(--green) 100%);
  padding: 5rem 0; text-align: center; color: white;
}
.cta-section h2  { color: white; margin-bottom: 1rem; }
.cta-section > .container > p {
  color: rgba(255,255,255,0.88); font-size: 1.1rem;
  margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ================================
   Fun Decorative Elements
   ================================ */
.fun-shapes {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.fun-shapes .shape {
  position: absolute; border-radius: 50%; opacity: 0.06;
  animation: floatSlow 10s ease-in-out infinite;
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-25px) scale(1.05); }
}
.shape-1 { width:200px; height:200px; background:var(--yellow); top:-60px; right:8%; animation-delay:0s; }
.shape-2 { width:120px; height:120px; background:var(--coral);  bottom:20px; right:18%; animation-delay:2s; }
.shape-3 { width:80px;  height:80px;  background:var(--teal);   top:40%; right:3%; animation-delay:4s; }
.shape-4 { width:60px;  height:60px;  background:var(--green);  bottom:10%; left:5%; animation-delay:1s; }

/* ================================
   Page Hero (inner pages)
   ================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 60%, #00BFA5 100%);
  padding: 5rem 0 4rem; margin-top: var(--nav-h);
  text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero h1 { color: white; margin-bottom: 0.9rem; position: relative; z-index: 1; }
.page-hero p  { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.875rem; margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.breadcrumb a      { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover{ color: white; }
.breadcrumb span   { color: rgba(255,255,255,0.45); }
.breadcrumb .cur   { color: rgba(255,255,255,0.95); }

/* ================================
   Staff Page Full Grid
   ================================ */
.staff-grid-full {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 2rem;
}

/* ================================
   Services Full Page
   ================================ */
.services-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2rem;
}
.service-item {
  background: white; border-radius: var(--radius-lg);
  padding: 2rem; border: 2px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all 0.25s ease;
  position: relative; overflow: hidden;
}
.service-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.service-item:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), var(--teal)); }
.service-item:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--green)); }
.service-item:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--orange)); }
.service-item:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), var(--primary)); }
.service-item:nth-child(5)::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.service-item:nth-child(6)::before { background: linear-gradient(90deg, var(--orange), var(--yellow)); }
.service-item:nth-child(7)::before { background: linear-gradient(90deg, var(--primary), var(--purple)); }
.service-item:nth-child(8)::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.service-item:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.service-item-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-item h3     { font-size: 1.1rem; }
.service-item p      { font-size: 0.93rem; color: var(--text-600); line-height: 1.75; }

/* ================================
   New Patients
   ================================ */
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-item  { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: white; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.25rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(11,159,216,0.35);
}
.step-body h4 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.step-body p  { font-size: 0.93rem; color: var(--text-600); }

.insurance-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 1rem; }
.insurance-badge {
  background: white; border: 2px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem; text-align: center;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text-700);
  box-shadow: var(--shadow-sm); transition: all 0.2s ease;
}
.insurance-badge:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.checklist { display: flex; flex-direction: column; gap: 0.65rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-700); }
.checklist li i { color: var(--green); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ================================
   About Page
   ================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 500px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem; color: var(--primary);
}
.about-content .tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.82rem;
  padding: 0.35rem 1rem; border-radius: var(--radius-full); margin-bottom: 1rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 0.9rem; line-height: 1.85; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 0.7rem; }
.value-item i { color: var(--green); font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.value-item p { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text-800); margin: 0; }

/* ================================
   Contact Page
   ================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-form {
  background: white; border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg); border: 2px solid var(--border);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.9rem; color: var(--text-800); margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--border); border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif; font-size: 0.93rem; color: var(--text-800);
  background: white; outline: none; transition: var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,159,216,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: white; border-radius: var(--radius-lg);
  padding: 1.5rem; border: 2px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-card-icon {
  width: 46px; height: 46px;
  background: var(--primary-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.15rem; flex-shrink: 0;
}
.contact-info-card h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.97rem; margin-bottom: 0.3rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.93rem; color: var(--text-600); }
.contact-info-card a:hover { color: var(--primary); }

/* ================================
   Testimonials Full Page
   ================================ */
.testimonials-full-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.75rem;
}
.review-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 60%, var(--green) 100%);
  border-radius: var(--radius-xl); padding: 3rem 2.5rem; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.review-cta-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.review-cta-box h3 { color: white; margin-bottom: 0.75rem; font-size: 1.5rem; }
.review-cta-box p  { color: rgba(255,255,255,0.88); margin-bottom: 2rem; }

/* ================================
   Swiper Shared Overrides
   ================================ */
.awards-swiper .swiper-pagination-bullet,
.staff-swiper .swiper-pagination-bullet,
.testimonials-swiper .swiper-pagination-bullet { background: var(--primary); opacity: 0.3; }
.awards-swiper .swiper-pagination-bullet-active,
.staff-swiper .swiper-pagination-bullet-active,
.testimonials-swiper .swiper-pagination-bullet-active { opacity: 1; }

.awards-swiper .swiper-button-next,
.awards-swiper .swiper-button-prev,
.staff-swiper .swiper-button-next,
.staff-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  width: 42px; height: 42px; background: white;
  border-radius: 50%; box-shadow: var(--shadow-md);
  color: var(--primary); border: 2px solid var(--border);
}
.awards-swiper .swiper-button-next:hover,
.awards-swiper .swiper-button-prev:hover,
.staff-swiper .swiper-button-next:hover,
.staff-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white; border-color: transparent;
}
.awards-swiper .swiper-button-next::after,
.awards-swiper .swiper-button-prev::after,
.staff-swiper .swiper-button-next::after,
.staff-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after { font-size: 0.82rem; font-weight: 800; }

/* ================================
   Footer
   ================================ */
footer { background: #0D1B2A; color: rgba(255,255,255,0.72); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand .nav-logo  { margin-bottom: 1.25rem; }
.footer-brand .nav-logo-icon { background: linear-gradient(135deg, var(--primary), var(--teal)); }
.footer-brand .nav-logo-name { color: white; }
.footer-brand .nav-logo-sub  { color: rgba(255,255,255,0.42); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.95rem;
}
.footer-social a:hover { background: linear-gradient(135deg, var(--primary), var(--teal)); color: white; }
.footer-col h5 {
  font-family: 'Nunito', sans-serif; font-weight: 800; color: white; margin-bottom: 1.25rem;
  font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: white; padding-left: 0.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contact-item i { color: var(--teal); margin-top: 0.12rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.42); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.83rem; color: rgba(255,255,255,0.42); }
.footer-bottom-links a:hover { color: white; }

/* ================================
   Scroll to Top
   ================================ */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-blue); z-index: 100;
  opacity: 0; visibility: hidden; transition: var(--ease);
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover   { transform: translateY(-4px); }

/* ================================
   Animations
   ================================ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.55s ease forwards; }

/* ================================
   Responsive
   ================================ */
@media (max-width:1024px) {
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-grid    { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  :root { --nav-h: 70px; }
  .nav-links, .nav-phone { display: none; }
  .mobile-menu-btn { display: flex; }
  .section { padding: 3.5rem 0; }
  .hero-swiper { height: 80vh; min-height: 500px; max-height: 700px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .announcements-grid { grid-template-columns: 1fr !important; }
  .awards-swiper, .staff-swiper, .testimonials-swiper { padding: 1rem 0.5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-slide-decor { display: none; }
}
@media (max-width:480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .appointment-banner .container { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
