/* ================================================
   GET BACK PHYSIOTHERAPY — Main Stylesheet
   Colors: Teal/Cyan (#00AEAE primary), Dark Navy (#1A2B3C), White
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #00ADAD;
  --primary-dark: #008f8f;
  --primary-light: #e0f7f7;
  --navy: #1a2b3c;
  --navy-light: #243447;
  --white: #ffffff;
  --off-white: #f5fbfb;
  --gray-100: #f0f4f4;
  --gray-200: #e2ebeb;
  --gray-500: #7a9a9a;
  --gray-700: #3d5555;
  --text-dark: #1a2b3c;
  --text-body: #3d5555;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,173,173,0.08);
  --shadow-md: 0 8px 32px rgba(0,173,173,0.12);
  --shadow-lg: 0 20px 60px rgba(0,173,173,0.16);
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}


#navClose {
  display: none;
}


/* ---- Utilities ---- */
.container { max-width: 90%; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-primary { background: var(--primary); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,173,173,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,173,173,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-icon { font-size: 1rem; }

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.9); }
.top-bar a:hover { color: var(--primary); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar i { margin-right: 5px; color: var(--primary); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
  padding: 0px;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand img {
    height: 80px;
  width: auto;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .navbar-nav {
  flex-direction: row;
}
.navbar-nav .nav-item { position: relative; }
.navbar-nav .nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 1rem;;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.nav-item.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 999;
  animation: dropDown 0.2s ease;
  border-top: 3px solid var(--primary);
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  color: var(--text-body);
  transition: all var(--transition);
}
.nav-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 28px;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-toggler {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-nav { display: none; }
  .navbar-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 80px 20px 40px;
    overflow-y: auto;
    z-index: 998;
  }
  .navbar-nav.open .nav-link { padding: 12px 16px; font-size: 1rem; width: 100%; }
  .navbar-nav.open .nav-dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    margin-top: 4px;
    animation: none;
  }
  .navbar-nav.open .nav-item.has-dropdown.open .nav-dropdown { display: block; }
  .navbar-toggler { display: flex; align-items: center; }
  .navbar-close {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 999;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .navbar-close.show { display: flex; }
  .navbar-actions .btn { display: none; }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3d4a 55%, #0a4a4a 100%);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 100%;
  background: linear-gradient(135deg, #303538 0%, #0d3d4a54 55%, #0a4a4a0d 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,173,173,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 20px;
}
.hero-content { animation: fadeInUp 0.8s ease both; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,173,173,0.2);
  border: 1px solid rgba(0,173,173,0.4);
  color: #7de8e8;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.hero h1 span { color: var(--primary); }
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-image-wrap {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-image-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-svg-illustration {
  width: 100%;
  max-width: 360px;
}
.hero-floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { top: -20px; right: -10px; animation-delay: 0s; }
.hero-floating-card.card-2 { bottom: 40px; left: -20px; animation-delay: 1.5s; }
.hero-floating-card .fc-icon {
  width: 36px; height: 36px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-image-wrap { display: none; }
  .hero { min-height: auto; }
  .hero-stats { gap: 20px; }
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-choose { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 { margin-bottom: 20px; }
.why-text p { color: var(--text-body); margin-bottom: 24px; }
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.why-feature {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}
.why-feature:hover {
  background: var(--primary-light);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.why-feature i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.why-feature h4 { color: var(--text-dark); margin-bottom: 6px; }
.why-feature p { font-size: 1rem; margin: 0; color: var(--text-body); }
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.why-image-side { position: relative; }
.why-image-bg {
  background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-bg svg { width: 80%; height: 80%; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image-side { display: none; }
  .why-features { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 20px; padding: 20px; }
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section { background: var(--off-white); }
.services-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.service-tab {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--white);
  color: var(--text-body);
  transition: all var(--transition);
}
.service-tab:hover, .service-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card-icon::before {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -30px; right: -30px;
}
.service-card-icon i { font-size: 3rem; color: rgba(255,255,255,0.9); position: relative; }
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card-body p { font-size: 1rem;; color: var(--text-body); margin: 0 0 16px; }
.service-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ================================================
   TEAM SECTION
   ================================================ */
.team-section { background: var(--white); }
.team-section .section-header { margin-bottom: 50px; }
.team-slider-wrap { position: relative; overflow: hidden; }
.team-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.team-card {
  flex: 0 0 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.team-card-photo {
  background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.team-card-photo img { width: 100%; height: 300px; object-fit: cover; }
.team-card-photo svg { width: 100px; height: 100px; }
.team-avatar-placeholder {
  width: 90px; height: 90px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}
.team-specialties {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
}
.team-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.team-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: white;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-nav-btn:hover {
  background: var(--primary);
  color: white;
}

/* ================================================
   CONDITIONS SECTION
   ================================================ */
.conditions-section { background: var(--navy); }
.conditions-section h2 { color: var(--white); }
.conditions-section .section-label { color: var(--primary); }
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.conditions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  cursor: pointer;
}
.condition-item:hover {
  background: rgba(0,173,173,0.15);
  border-color: rgba(0,173,173,0.4);
  color: white;
}
.condition-item i { color: var(--primary); font-size: 0.9rem; flex-shrink: 0; }
.conditions-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.conditions-image img { width: 100%; height: 110vh; object-fit: cover; }
@media (max-width: 768px) {
  .conditions-grid { grid-template-columns: 1fr; }
  .conditions-image { display: none; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.author-tag { font-size: 0.78rem; color: var(--gray-500); }
@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ================================================
   CLINIC GALLERY
   ================================================ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item.large img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.gallery-item-inner img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item-inner {
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,173,173,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder-text {
  font-size: 1rem;
  color: var(--gray-500);
  text-align: center;
  padding: 20px;
}
.gallery-placeholder-text i { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 8px; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
}

/* ================================================
   WHAT TO EXPECT
   ================================================ */
.expect-section { background: var(--off-white); }
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.expect-steps { display: flex; flex-direction: column; gap: 24px; }
.expect-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.expect-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.step-content h4 { color: var(--text-dark); margin-bottom: 8px; }
.step-content p { margin: 0; font-size: 1rem;; color: var(--text-body); }
.expect-image {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius-lg);
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.expect-image::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.expect-image h3 { color: white; font-size: 1.5rem; margin-top: 20px; margin-bottom: 12px; }
.expect-image p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.expect-image .btn { margin-top: 24px; }
@media (max-width: 768px) {
  .expect-grid { grid-template-columns: 1fr; }
  .expect-image { height: auto; padding: 40px 24px; }
}






.booking-cta {
  background-image: url('../assets/servicesbg.jpg');");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
}








/* ================================================
   BLOG SECTION
   ================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-image {
  height: 230px;
  background: linear-gradient(135deg, var(--primary-light), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-image img{
  width: 100%;
}
.blog-card-image i { font-size: 3rem; color: var(--primary); }
.blog-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-body { padding: 24px; }
.blog-date { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 1rem; color: var(--text-body); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.read-more { font-size: 1rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }
@media (max-width: 991px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* ================================================
   BOOKING CTA
   ================================================ */
.booking-cta {
  /* background: linear-gradient(135deg, var(--navy) 0%, #0d3d4a 100%); */
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(0, 173, 173, 0.7) 0%, #2f2f2fc7 70%);
    z-index: auto;
}
.booking-cta .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-cta h2 { color: white; margin-bottom: 16px; }
.booking-cta p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.insurance-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: center;
}
.insurance-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}
.booking-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.booking-form-card h3 { margin-bottom: 24px; color: var(--text-dark); }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,173,173,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-control { appearance: none; cursor: pointer; }
@media (max-width: 768px) {
  .booking-cta .container { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 100px; margin-bottom: 16px; filter: brightness(1.1); border-radius: 20px;}
.footer-brand p { font-size: 1rem;; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.footer-col h5 {
  color: white;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-col ul{
  padding: 0px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 1rem;;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-hours {
  font-size: 1rem;
  line-height: 2;
}
.footer-hours span { color: white; font-weight: 500; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;;
}
.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--primary); }
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-top: 8px; }
.section-header p {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 16px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 16px auto 0; }

/* ================================================
   ANIMATIONS & SCROLL REVEALS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  border: none;
  font-size: 1rem;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}
.why-image-bg {
  width: 600px;
  height: 800px;
  overflow: hidden;
  cursor: pointer;
}

.why-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
