/* ==========================================================================
   1. DESIGN SYSTEM & RESET
   ========================================================================== */
:root {
  /* Brand Colors */
  --primary: #4f7fe2;
  --primary-hover: #3b6ecd;
  --primary-light: rgba(79, 127, 226, 0.1);
  --dark: #1e293b;
  --dark-heading: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Kumbh Sans', sans-serif;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 40px -10px rgba(79, 127, 226, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  width: 100%;
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

/* Top Info Bar */
.top-bar {
  width: 100%;
  background: transparent;
}

.top-bar-inner {
  width: calc(100% - 30px);
  max-width: 1240px;
  height: 44px;
  margin: 0 auto;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  overflow: hidden;
}

.top-left {
  height: 100%;
  display: flex;
  align-items: center;
}

.top-item {
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.top-item i {
  font-size: 12px;
}

.top-social {
  height: 100%;
  display: flex;
  align-items: center;
}

.top-social a {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  transition: var(--transition);
}

.top-social a:hover {
  background: rgba(0, 0, 0, 0.12);
}

/* Main Navigation Bar */
.main-nav {
  width: 100%;
  height: 76px;
  background: var(--bg-white);
}

.nav-container {
  width: calc(100% - 30px);
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 48px;
  width: auto;
}

.navigation {
  height: 100%;
  display: flex;
  align-items: center;
}

.navigation > ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navigation > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.navigation > ul > li > a {
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-arrow {
  font-size: 10px;
  transition: var(--transition);
}

.dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.navigation > ul > li > a:hover,
.navigation > ul > li > a.active {
  color: var(--primary);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.dropdown-menu li a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.call-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.appointment-btn {
  height: 42px;
  padding: 0 22px;
  background: var(--dark-heading);
  color: #ffffff;
  display: flex;
  align-items: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.appointment-btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(79, 127, 226, 0.3);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--dark-heading);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   3. HERO SECTION & FLOATING CARDS
   ========================================================================== */
.therapy-hero-section {
  width: 100%;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.therapy-hero-container {
  max-width: 1240px;
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 20px 70px;
  position: relative;
}

.therapy-hero-left {
  width: 50%;
  z-index: 5;
}

.therapy-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.therapy-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  color: var(--dark-heading);
  line-height: 1.15;
  margin-bottom: 16px;
}

.therapy-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
}

.therapy-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(79, 127, 226, 0.28);
}

.therapy-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.therapy-hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
}

.therapy-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapy-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 12%, transparent 45%);
}

/* 3 Bottom Floating Cards */
.therapy-cards-wrapper {
  max-width: 1240px;
  margin: -35px auto 45px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 10;
}

.therapy-card {
  background: var(--bg-white);
  padding: 24px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.therapy-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.therapy-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.therapy-card-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--dark-heading);
  margin-bottom: 4px;
}

.therapy-card-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   4. ABOUT US SECTION
   ========================================================================== */
.vaidy-about-wrapper {
  padding: 85px 0;
  background: var(--bg-white);
}

.vaidy-custom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 55px;
}

.vaidy-left-col {
  flex: 1;
}

.vaidy-sub-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.vaidy-main-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-heading);
  margin-bottom: 18px;
}

.vaidy-desc {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
}

.vaidy-list {
  list-style: none;
  margin-bottom: 30px;
}

.vaidy-list li {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.vaidy-check {
  width: 22px;
  height: 22px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-right: 12px;
  flex-shrink: 0;
}

.vaidy-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(79, 127, 226, 0.28);
}

.vaidy-button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.vaidy-right-col {
  flex: 1;
}

.vaidy-img-holder {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.vaidy-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   5. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 85px 20px;
  background: var(--bg-light);
}

.services-container {
  max-width: 1240px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 45px;
}

.services-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.services-main-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-heading);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-content {
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark-heading);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--primary);
}

.service-link:hover {
  color: var(--primary-hover);
}

.services-dots,
.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary);
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   6. PHYSIO DISCIPLINES & PARTNERS BAR
   ========================================================================== */
.physio-section {
  width: 100%;
  background: var(--bg-white);
  overflow: hidden;
}

.physio-container {
  display: flex;
  align-items: center;
  min-height: 520px;
}

.physio-img-col {
  flex: 1;
  align-self: stretch;
  position: relative;
  min-height: 520px;
}

.physio-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: var(--primary);
}

.physio-content-col {
  flex: 1;
  padding: 60px 50px;
  max-width: 620px;
}

.physio-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.physio-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-heading);
  margin-bottom: 14px;
}

.physio-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 26px;
}

.physio-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  gap: 12px;
}

.feature-icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--dark-heading);
  margin-bottom: 3px;
}

.feature-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.physio-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(79, 127, 226, 0.28);
}

.physio-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* Partners Strip */
.partners-bar {
  background-color: var(--dark-heading);
  padding: 30px 20px;
}

.partners-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.partner-item {
  color: #ffffff;
  opacity: 0.7;
  transition: var(--transition);
}

.partner-item:hover {
  opacity: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.dot-sm {
  font-size: 10px;
  margin-left: 2px;
  color: var(--primary);
}

/* ==========================================================================
   7. TESTIMONIALS SECTION
   ========================================================================== */
.testimonial-section {
  padding: 85px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.testimonial-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}

.testimonial-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-heading);
}

.testimonial-slider-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 25px;
}

.testimonial-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 25px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 300px;
  padding: 30px 25px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card.active {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--dark-heading);
}

.author-role {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
}

.quote-icon {
  font-size: 26px;
  color: var(--primary);
  opacity: 0.25;
}

/* ==========================================================================
   8. APPOINTMENT SECTION
   ========================================================================== */
.appointment-section {
  padding: 80px 20px;
  background: var(--bg-white);
}

.appointment-container {
  max-width: 1140px;
  margin: 0 auto;
}

.appointment-card {
  display: flex;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.appointment-info-box {
  flex: 0 0 38%;
  background: var(--primary);
  padding: 45px 35px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.info-address {
  font-size: 14.5px;
  line-height: 1.6;
  color: #f1f5f9;
  margin-bottom: 18px;
}

.info-timing p {
  font-size: 13.5px;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.info-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  object-fit: cover;
}

.contact-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.contact-label {
  font-size: 12px;
  color: #e2e8f0;
}

/* Appointment Form */
.appointment-form-box {
  flex: 0 0 62%;
  padding: 45px 40px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-heading);
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--dark);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-submit {
  background: var(--dark-heading);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary);
  box-shadow: 0 4px 14px rgba(79, 127, 226, 0.3);
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
.vaidy-footer {
  background-color: var(--dark-heading);
  color: var(--text-light);
  padding: 70px 0 0 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.1fr;
  gap: 35px;
  padding-bottom: 50px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--text-light);
  font-size: 14px;
}

.footer-links li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-icon {
  color: var(--primary);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-txt,
.contact-txt a {
  font-size: 14px;
  color: var(--text-light);
}

.contact-txt a:hover {
  color: var(--primary);
}

.newsletter-desc {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 11px 44px 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #ffffff;
  outline: none;
  font-size: 13.5px;
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 32px;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   10. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .therapy-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .physio-container {
    flex-direction: column;
  }
  .physio-img-col {
    width: 100%;
    min-height: 350px;
  }
  .physio-content-col {
    padding: 45px 25px;
    max-width: 100%;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-item.hide-sm {
    display: none;
  }
  
  /* Mobile Navigation Dropdown */
  .menu-toggle {
    display: flex;
  }

  .navigation {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: none;
    height: auto;
    padding: 20px 0;
  }

  .navigation.active {
    display: block;
  }

  .navigation > ul {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .navigation > ul > li {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation > ul > li > a {
    width: 100%;
    padding: 12px 25px;
    height: auto;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .appointment-btn {
    display: none;
  }

  /* Hero Section Mobile */
  .therapy-hero-container {
    flex-direction: column;
    padding: 20px 20px 40px;
  }
  .therapy-hero-right {
    position: relative;
    width: 100%;
    height: 260px;
    margin-top: 25px;
  }
  .therapy-hero-left {
    width: 100%;
  }
  .therapy-image-fade {
    display: none;
  }
  .therapy-cards-wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .vaidy-custom-container {
    flex-direction: column;
    gap: 35px;
  }
  .vaidy-img-holder {
    height: 340px;
  }

  .appointment-card {
    flex-direction: column;
  }
  .appointment-info-box,
  .appointment-form-box {
    flex: 0 0 100%;
    padding: 30px 20px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }
  .therapy-title,
  .vaidy-main-heading,
  .services-main-title,
  .physio-title,
  .testimonial-title {
    font-size: 26px;
    line-height: 1.25;
  }
  .services-grid,
  .physio-features-grid,
  .form-grid,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}






/* Floating Action Buttons */
.floating-actions-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.float-call {
    background-color: #0062b8;
}

.float-whatsapp {
    background-color: #25D366;
}