/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Touch-friendly interactions for mobile */
button, a, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    button, .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

:root {
    --primary-color: #FF7A00;
    --text-color: #2C3E50;
    --text-light: #666666;
    --radius-lg: 12px;
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 30px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Wide screen optimization */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .nav-container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .hero-container {
        max-width: 1600px;
        padding: 0 40px;
    }
    
    .testimonials .container {
        max-width: 1600px;
    }
    
    .services-grid {
        justify-content: center;
        max-width: 1800px;
    }
    
    .service-card {
        width: 400px !important;
        min-width: 400px;
        flex: 0 0 400px;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #F1F1F1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 50px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-gaman {
    font-size: 20px;
    font-weight: 700;
    color: #FF7A00;
    letter-spacing: -0.5px;
}

.logo-rehab {
    font-size: 12px;
    font-weight: 500;
    color: #00C896;
    margin-top: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: #FF7A00;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7A00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-book-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
    white-space: nowrap;
    letter-spacing: 0.3px;
    outline: none;
}

.header-book-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.header-book-btn:active {
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: transparent;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Active Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding-top: 66px;
    margin-top: 0;
    background: #fff6e5;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 550px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.12);
    color: #1B8A42;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.trust-badge i {
    font-size: 16px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    color: #FF7A00;
}

.hero-description {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.brand-name {
    font-weight: 600;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333333;
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-item i {
    color: #00C896;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #f97316;
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #f97316;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-item:nth-child(1) h3 {
    color: #FF7A00;
}

.stat-item:nth-child(2) h3 {
    color: #00C896;
}

.stat-item:nth-child(3) h3 {
    color: #1a1a1a;
}

.stat-item p {
    color: #333333;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    width: 100%;
    display: block;
}

.image-carousel {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 580px;
    background: white;
    min-width: 300px;
    width: 100%;
}

/* Video Controls */
.video-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.play-pause-btn,
.mute-toggle-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn:hover,
.mute-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.play-pause-btn {
    background: rgba(74, 144, 226, 0.9);
}

.play-pause-btn:hover {
    background: rgba(74, 144, 226, 1);
}

/* Carousel Controls */

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}

.carousel-slide.prev {
    transform: translateX(-100%);
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img,
.carousel-slide:hover video {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: 16px;
    color: #333;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slide-icon {
    background: #10b981;
    color: white;
    padding: 8px;
    border-radius: 8px;
    min-width: 26px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide-icon i {
    font-size: 14px;
}

.slide-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a202c;
    line-height: 1.2;
}

.slide-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.3;
}

.carousel-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 9px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #f97316;
    border-color: #f97316;
    transform: scale(1.1);
}

.dot:hover {
    background: rgba(255, 122, 0, 0.7);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 37px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #f97316;
    transform: scale(1.05);
}

/* Book Appointment Modal */
.appointment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    position: relative;
    padding: 20px;
    padding-bottom: 0;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #333;
}

.modal-tabs {
    display: flex;
    background: #F1F5F9;
    margin: 0 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 12px 8px;
    border: none;
    background: transparent;
    color: #94A3B8;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.tab-btn.active {
    background: #FF7A00;
    color: white;
}

.tab-btn:hover:not(.active) {
    background: #E2E8F0;
    color: #64748B;
}

.tab-content {
    display: none;
    padding: 30px;
    background: #FEF3C7;
}

.tab-content.active {
    display: block;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #FF7A00;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.appointment-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-width: none;
        margin: 20px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .modal-tabs {
        margin: 0 15px;
    }
    
    .tab-btn {
        font-size: 10px;
        padding: 10px 6px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Services Section */
/* Consultation Tab Styles */
/* Services Section */
.services-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.services-section .section-description {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Header Styling */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.8rem;
}

.section-header p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.brand-highlight {
  color: #FF7A00;
}

.brand-orange {
  color: #FF7A00 !important;
}

.brand-green {
  color: #00C896 !important;
}

.highlight {
  color: #FF7A00;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: #333;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

/* Consultation Tab Styles */
.consultation-tab-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-tab-large {
  max-width: none;
  width: 100%;
}

.consultation-tab {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  width: 100%;
  text-align: center;
  border: 1px solid #f0f0f0;
}

.consultation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.consultation-description {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-btn {
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.consultation-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 0.75rem;
  }
  
  .consultation-tab {
    padding: 1.5rem 1rem;
  }
  
  .consultation-title {
    font-size: 1.2rem;
  }
  
  .consultation-description {
    font-size: 1rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card {
  width: 100%;
  max-width: 320px;
  background: white;
  padding: 0;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  height: auto;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.02);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d3748;
  margin: 1.5rem 1.5rem 0.75rem;
  line-height: 1.3;
}

.service-description {
  margin: 0 1.5rem 1rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.service-features {
  margin: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features strong {
  font-weight: 600;
  color: #2d3748;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.service-feature {
  color: #f97316;
  font-size: 0.9rem;
  padding-left: 0;
  position: relative;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 0 1rem;
  }
  
  .service-card {
    max-width: 300px;
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
  
  .service-card {
    max-width: 100%;
  }
  
  .service-image {
    height: 180px;
  }
  
  .service-title {
    font-size: 1.1rem;
    margin: 1.25rem 1.25rem 0.5rem;
  }
  
  .service-description {
    margin: 0 1.25rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .service-features {
    margin: 0 1.25rem 1.25rem;
  }
  
  /* Testimonial mobile adjustments */
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonials-header {
    margin-bottom: 40px;
  }
  
  .header-badge {
    padding: 15px 30px;
  }
  
  .header-badge h2 {
    font-size: 24px;
  }
  
  .featured-testimonial {
    height: 680px;
    margin: 0 auto 40px;
    max-width: 95%;
  }
  
  .testimonial-carousel-container {
    height: 680px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
    height: 680px;
    width: calc(100% / 6);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  
  .testimonial-content {
    height: auto;
    min-height: 600px;
  }
  
  .testimonial-quote {
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    max-height: 250px;
    overflow: hidden;
  }
  
  .google-badge {
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .rating-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .patient-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .treatment-details {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
  }
  
  .testimonial-navigation {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .testimonial-dots .dot {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }
}

/* Doctors Section */
.doctors-section {
  padding: 5rem 1rem;
  background-color: white;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.doctor-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.doctor-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
  display: block;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.doctor-content {
  padding: 1.5rem;
}

.doctor-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.doctor-specialty {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.doctor-description {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.doctor-credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.credential {
  padding: 0.25rem 0.75rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-color);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  min-height: 100vh;
}

.testimonials-background {
  position: fixed;
  inset: 0;
  background-image: url('images/Gaman Rehab testimonial Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
  /* Ensure the background stays behind content */
}

.testimonials-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #F8F9FA;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-image {
    height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center top;
}

/* Specific positioning for Dr. Nanda Kishore's image */
.dr-nanda-image img {
    object-position: center 15%;
    object-fit: cover;
    transform: scale(1.1);
}

.team-card:hover .dr-nanda-image img {
    transform: scale(1.15);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 12px;
    line-height: 1.2;
}

.credentials {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.degree, .specialization {
    background: #FF7A00;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.specialization {
    background: #4CAF50;
}

.team-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #FF7A00;
    margin-bottom: 15px;
    line-height: 1.3;
}

.team-content p {
    color: #444;
    line-height: 1.5;
    font-size: 15px;
    margin-top: auto;
}

.team-excellence {
    text-align: center;
}

.team-excellence h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.excellence-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: #FFF8F0;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #F5F0E8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.1);
}

/* All cards have the same beige/cream background to match the screenshot */
.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3),
.stat-card:nth-child(4) {
    background: #FFF8F0;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* All stat numbers are orange to match the screenshot */
.stat-card:nth-child(1) h3,
.stat-card:nth-child(2) h3,
.stat-card:nth-child(3) h3,
.stat-card:nth-child(4) h3 {
    color: #FF7A00;
}

.stat-card p {
    color: #444;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.85), rgba(255, 255, 255, 0.8)),
                url('images/Gaman Rehab testimonial Background.png') center/cover fixed;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonials-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Gaman Rehab testimonial Background.png') center/cover;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

/* Header Section */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-badge {
    display: inline-block;
    background: #FFF8F0;
    padding: 20px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 3px solid #FF7A00;
    box-shadow: 0 4px 20px rgba(255, 122, 0, 0.15);
}

.header-badge h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(248, 249, 250, 0.95);
    padding: 25px 40px;
    border-radius: 20px;
    border: 2px solid #28a745;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
}

.header-description p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Featured Testimonial Card */
.featured-testimonial {
    margin-bottom: 60px;
}

/* Featured Testimonial Card */
.featured-testimonial {
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    height: 680px; /* Fixed height to match image */
}

.testimonial-carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 600%; /* 6 testimonials * 100% */
    height: 680px; /* Fixed height for consistent cards */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: calc(100% / 6); /* Each card takes 1/6 of container width */
    flex-shrink: 0;
    margin: 0;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 600px; /* Fixed height to match image */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden; /* Hide overflow for clean appearance */
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 520px; /* Fixed height for content */
    justify-content: flex-start; /* Align content from the top */
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rating-circle {
    width: 64px;
    height: 64px;
    background: #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.google-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
}

.google-info i {
    color: #4285F4;
    font-size: 16px;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    text-align: left;
    color: #444;
    overflow: auto; /* Allow scrolling */
    max-height: 260px; /* Limit height */
    scrollbar-width: thin;
    scrollbar-color: #FF7A00 #f8f9fa;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

.testimonial-quote::-webkit-scrollbar {
    width: 5px;
}

.testimonial-quote::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.testimonial-quote::-webkit-scrollbar-thumb {
    background: #FF7A00;
    border-radius: 10px;
}

.patient-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.patient-info .patient-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.patient-info .review-date {
    font-size: 13px;
    color: #555;
}

.treatment-tag {
    background: #FF7A00;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: auto; /* Push to the bottom */
}

.detail-item {
    text-align: left;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.detail-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.testimonial-card-large .testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF7A00, #FF9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-card-large .testimonial-info h4 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.testimonial-card-large .testimonial-condition {
    font-size: 16px;
    color: #FF7A00;
    font-weight: 500;
}

.testimonial-card-large .testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-card-large .testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-card-large .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
    text-align: left;
}

.testimonial-card-large .testimonial-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-detail-item {
    text-align: center;
}

.testimonial-detail-item .label {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.testimonial-detail-item .value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #FF7A00;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background: #FF7A00;
    color: white;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #FF7A00;
    transform: scale(1.3);
}

.testimonial-dots .dot:hover {
    background: rgba(255, 122, 0, 0.7);
}

/* Success Metrics */
.success-metrics {
    margin-bottom: 80px;
}

.metrics-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.metrics-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 32px;
    font-weight: 700;
    color: #FF7A00;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

/* Recovery CTA */
.recovery-cta {
    margin-bottom: 40px;
}

.cta-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 25px;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.cta-container h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.cta-container p {
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #FF7A00;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #e66900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A00, #FF9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-card .google-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
}

.testimonial-card .google-verified .google-icon {
    width: 16px;
    height: 16px;
}

.testimonial-card .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testimonial-card .author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.testimonial-card .author-info .review-source {
    font-size: 12px;
    color: #333;
}

.testimonial-card .treatment-tag {
    background: #FF7A00;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.testimonial-card .testimonial-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-card .detail-item {
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.testimonial-card .detail-item .label {
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-card .detail-item .value {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

/* Testimonials Carousel - Legacy styles for compatibility */
.testimonials-carousel {
    margin-bottom: 60px;
}

.testimonials-container {
    display: flex;
    overflow: hidden;
    gap: 30px;
    scroll-behavior: smooth;
    margin-bottom: 40px;
}

.testimonial-card {
    min-width: 350px;
    min-height: 380px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A00, #FF9500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-condition {
    font-size: 14px;
    color: #FF7A00;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.testimonial-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #333;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.testimonial-duration {
    font-weight: 500;
}

.read-more {
    color: #FF7A00;
    font-weight: 500;
    text-decoration: none;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #FF7A00;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: #E56600;
    transform: scale(1.1);
}

.testimonial-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FF7A00;
    transform: scale(1.2);
}

/* Testimonial Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.testimonial-modal.active {
    display: flex;
}

.testimonial-modal .modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin: 20px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.close-modal:hover {
    color: #333;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF7A00, #FF9500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.modal-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.condition-info {
    font-size: 14px;
    color: #FF7A00;
    font-weight: 500;
    margin-top: 5px;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating i {
    color: #FFD700;
    font-size: 18px;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.patient-details {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    margin-bottom: 10px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
}

.value {
    color: #444;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285F4;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background: #3367D6;
    transform: translateY(-2px);
}

.value {
    color: #444;
}

.read-more-btn {
    background: #FF7A00;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #E56600;
    transform: translateY(-2px);
}

.success-metrics {
    margin-bottom: 30px;
}

.success-metrics h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.metric-card:nth-child(2) .metric-icon {
    background: #4CAF50;
}

.metric-card:nth-child(3) .metric-icon {
    background: #2196F3;
}

.metric-card:nth-child(4) .metric-icon {
    background: #E91E63;
}

.metric-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.metric-card p {
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.metric-number {
    font-size: 36px;
    font-weight: 700;
    color: #FF7A00;
    margin-bottom: 5px;
}

.metric-card:nth-child(2) .metric-number {
    color: #4CAF50;
}

.metric-card:nth-child(3) .metric-number {
    color: #2196F3;
}

.metric-card:nth-child(4) .metric-number {
    color: #E91E63;
}

.metric-card span {
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.recovery-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Styles for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .container {
        padding: 0 20px;
    }
    
    .header-badge {
        padding: 15px 30px;
    }
    
    .header-badge h2 {
        font-size: 24px;
    }
    
    .header-description {
        padding: 20px 25px;
    }
    
    .header-description p {
        font-size: 16px;
    }
    
    /* These styles will be overridden by mobile-fixes.css */
    .testimonial-card {
        padding: 25px;
        min-height: 450px;
    }
    
    .featured-testimonial {
        min-height: 500px;
    }
    
    .testimonial-carousel-container {
        min-height: 500px;
    }
    
    .treatment-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-container {
        padding: 30px 25px;
    }
    
    .cta-container h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    /* These styles will be overridden by mobile-fixes.css */
    .testimonial-card {
        padding: 20px 15px;
        min-height: 400px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* These will be overridden by the enhanced navigation styles in mobile-fixes.css */
    .testimonial-navigation {
        gap: 15px;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .testimonial-dots {
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    background: #E3F3FE;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-video {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #000;
    height: 300px;
    width: 100%;
    max-width: 450px;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 122, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.video-play-btn:hover {
    background: #FF7A00;
    transform: translate(-50%, -50%) scale(1.1);
}

.about-info {
    padding-left: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
}

.info-section {
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.info-section .highlight {
    color: #FF7A00;
}

.info-section p {
    color: #444;
    line-height: 1.5;
    font-size: 14px;
    text-align: left;
}

.core-values {
    margin-bottom: 60px;
}

.core-values h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: #FF7A00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.value-card:nth-child(2) .value-icon {
    background: #FF7A00;
}

.value-card:nth-child(3) .value-icon {
    background: #FF7A00;
}

.value-card:nth-child(4) .value-icon {
    background: #FF7A00;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.value-card p {
    color: #444;
    line-height: 1.4;
    font-size: 13px;
    text-align: center;
    flex-grow: 1;
}

.facilities {
    text-align: center;
}

.facilities-header {
    text-align: center;
    margin-bottom: 40px;
}

.facilities-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.facilities-header .highlight {
    color: #FF7A00;
}

.facilities-header p {
    color: #444;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.6;
}

.facilities-gallery {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.gallery-main {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background: #f8f9fa;
    width: 100%;
}

.gallery-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 400px;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img,
.gallery-slide video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-slide:hover img,
.gallery-slide:hover video {
    transform: scale(1.01);
}

.gallery-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e1e5e9;
    color: #444;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: #FF7A00;
    color: white;
    border-color: #FF7A00;
    transform: scale(1.1);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.prev-nav {
    margin-right: auto;
}

.next-nav {
    margin-left: auto;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #FF7A00;
    transform: scale(1.3);
}

/* Video overlay for gallery */
.gallery-slide .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1; /* Show by default */
    transition: opacity 0.3s ease;
}

.gallery-slide:hover .video-overlay {
    /* Keep opacity 1 by default, will be changed by JS when video plays */
    opacity: 1;
}

.gallery-slide .play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 122, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    backdrop-filter: blur(8px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.gallery-slide .play-button:hover {
    background: #FF7A00;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.4);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fafafa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #FF7A00;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    background: #FF7A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-card:nth-child(2) .contact-icon {
    background: #4CAF50;
}

.contact-card:nth-child(3) .contact-icon {
    background: #2196F3;
}

.contact-card:nth-child(4) .contact-icon {
    background: #E91E63;
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #FF7A00;
    margin-bottom: 6px;
    margin-top: 0;
}

.contact-card p {
    color: #444;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 12px;
    flex-grow: 1;
    margin-top: 0;
}

.contact-link {
    display: inline-block;
    background: #FF7A00;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.contact-link:hover {
    background: #E56600;
    transform: translateY(-1px);
}

.contact-form-section {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-form-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF7A00;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.contact-alternative {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-link:hover {
    color: #1DA851;
}

.map-section {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo .logo-gaman {
    font-size: 18px;
    font-weight: 700;
    color: #FF7A00;
}

.footer-logo .logo-rehab {
    font-size: 11px;
    font-weight: 500;
    color: #00C896;
    margin-top: -2px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section .contact-info p {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.footer-section .contact-info p strong {
    display: block;
    margin-bottom: 5px;
    color: white;
    font-weight: 500;
}

.footer-section .contact-info a {
    color: #FF7A00;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section .contact-info a:hover {
    color: #FFA94D;
}

.footer-section .contact-info .whatsapp-footer {
    color: #FF7A00;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #FF7A00;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #FF7A00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #E56600;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

.contact-info a {
    color: #FF7A00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #E56600;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
    font-size: 14px;
}

.footer-bottom .brand-orange {
    color: #FF7A00;
    font-weight: 600;
}

.footer-bottom .brand-green {
    color: #00C896;
    font-weight: 600;
}

.footer-bottom a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #FF7A00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    
    .service-card {
        width: 100%;
        height: 320px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 450px;
    }
    
    .team-card {
        min-height: 480px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-image {
        height: 280px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .tab-btn {
        font-size: 10px;
        padding: 10px 5px;
    }
}

/* Medium screens */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }
    
    .book-appointment-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image {
        width: 100%;
        display: block;
    }
    
    .image-carousel {
        height: 520px;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .logo-gaman {
        font-size: 16px;
    }
    
    .logo-rehab {
        font-size: 11px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        width: 100%;
        height: 100vh;
        text-align: left;
        transition: all 0.3s ease;
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 0 50px;
        z-index: 1000;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 5px 0;
        width: 100%;
        text-align: left;
        padding-left: 30px;
    }

    .nav-link {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 25px;
        display: block;
        width: auto;
        border-radius: 8px;
        margin: 0;
        transition: all 0.3s ease;
        text-align: left;
    }

    .nav-link:hover {
        background: rgba(249, 115, 22, 0.1);
        color: #f97316;
    }

    .nav-link::after {
        display: none;
    }

    .header-book-btn {
        display: block;
        padding: 8px 15px;
        font-size: 12px;
        margin-right: 50px; /* Make space for hamburger menu */
        background: #f97316;
        color: white;
        border: none;
        border-radius: 8px;
    }
    
    .mobile-only {
        display: none; /* Hide on desktop */
    }
    
    .mobile-book-btn {
        display: block;
        width: 80%;
        max-width: 200px;
        background: linear-gradient(135deg, #FF7A00, #FF9500);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
        cursor: pointer;
        margin: 20px auto;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        min-height: 600px;
        padding: 2rem 1.25rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-features {
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 2.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 100%;
        display: block;
    }
    
    .image-carousel {
        height: 380px;
        min-width: 250px;
    }
    
    .carousel-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.6s ease-in-out;
    }
    
    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0);
    }
    
    .carousel-slide.prev {
        transform: translateX(-100%);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        padding: 0 20px;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 350px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin: 1.25rem 1.25rem 0.75rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin: 0 1.25rem 1rem;
    }
    
    .service-features {
        margin: 0 1.25rem 1.25rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .excellence-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
        min-height: 300px;
    }

    .testimonial-card .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .testimonial-card .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        -webkit-line-clamp: 8;
        line-clamp: 8;
    }

    .testimonial-card .testimonial-details {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-tabs {
        flex-direction: column;
        margin: 0 10px;
    }
    
    .tab-btn {
        padding: 15px 10px;
        font-size: 12px;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Testimonials mobile styles */
    .testimonial-card {
        min-width: 300px;
        min-height: 350px;
        padding: 20px;
        margin: 0 10px;
    }

    .testimonial-header {
        gap: 10px;
        margin-bottom: 15px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .testimonial-info h4 {
        font-size: 16px;
    }

    .testimonial-condition {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 13px;
        -webkit-line-clamp: 5;
    }

    .testimonials-navigation {
        gap: 15px;
        margin-top: 20px;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .testimonial-modal-content {
        width: 95%;
        max-width: 90%;
        margin: 10px;
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .modal-testimonial {
        font-size: 14px;
    }

    .modal-patient-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* New Testimonials Mobile Styles */
    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-header p {
        font-size: 16px;
    }

    .testimonial-card-large {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .testimonial-card-large .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-card-large .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .testimonial-card-large .testimonial-info h4 {
        font-size: 20px;
    }

    .testimonial-card-large .testimonial-condition {
        font-size: 14px;
    }

    .testimonial-card-large .testimonial-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metrics-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .success-metrics h3 {
        font-size: 24px;
    }

    /* Updated Testimonials Mobile */
    .testimonials-header h2 {
        font-size: 32px;
    }

    .testimonial-card-display {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .testimonial-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .metric-stat {
        padding: 20px 15px;
    }

    .metric-number {
        font-size: 28px;
    }

    .metric-label {
        font-size: 12px;
    }

    .recovery-cta {
        padding: 30px 25px;
        margin: 0 20px;
    }

    .recovery-cta h3 {
        font-size: 22px;
    }

    .recovery-cta p {
        font-size: 15px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Services Mobile Styles */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 320px;
        padding: 20px;
        margin: 0;
    }
    
    .service-image {
        height: 140px;
        margin-bottom: 15px;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-features {
        font-size: 13px;
    }
    
    .service-feature {
        margin-bottom: 5px;
        padding-left: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Core Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        min-height: 220px;
        padding: 25px 20px;
    }
}

/* Medium screens - 768px to 1024px handled above */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }

    .service-card {
        height: 340px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .value-card {
        min-height: 250px;
    }
}

/* Additional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-card,
.metric-card,
.value-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FF7A00;
    border-radius: 4px;
}

/* Medium Mobile Screens - Additional Services Responsiveness */
@media (max-width: 640px) and (min-width: 481px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        padding: 25px;
    }
    
    .service-image {
        height: 160px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
}

/* Testimonials Responsive Design */
@media (max-width: 768px) {
    .featured-testimonial {
        height: 450px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-quote {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .google-badge {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .rating-circle {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo img {
        height: 32px;
    }
    
    .logo-gaman {
        font-size: 14px;
    }
    
    .logo-rehab {
        font-size: 10px;
    }
    
    .hero-container {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .stat-item p {
        font-size: 0.8rem;
    }
    
    .image-carousel {
        height: 300px;
    }
    
    .services-grid {
        padding: 0 15px;
    }
    
    .featured-testimonial {
        height: 400px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-quote {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .patient-details {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .patient-name {
        font-size: 16px;
    }
    
    .treatment-details {
        gap: 8px;
    }
    
    .detail-item {
        padding: 8px;
    }
}

::-webkit-scrollbar-thumb:hover {
    background: #E56600;
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .about-info {
        padding-left: 0;
        height: auto;
        padding: 0 20px;
    }
    
    .video-container {
        height: 250px;
        margin: 0 20px;
    }
    
    .info-section {
        margin-bottom: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 15px;
        min-height: 240px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .value-card h3 {
        font-size: 16px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    .gallery-container {
        position: relative;
        gap: 0;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .prev-nav {
        left: 10px;
    }
    
    .next-nav {
        right: 10px;
    }
    
    .gallery-slide {
        height: 300px;
    }
    
    .gallery-slide img,
    .gallery-slide video {
        height: 300px;
        object-fit: cover;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-card {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .core-values h2, .facilities h2 {
        font-size: 28px;
    }
    
    .info-section h3 {
        font-size: 20px;
    }
    
    .info-section p {
        font-size: 14px;
    }
    
    .gallery-slide img {
        height: 250px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .facilities-gallery {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Contact Section Mobile Responsiveness */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-form-section {
        max-width: 100%;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-section {
        margin-top: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-section {
        margin-top: 40px;
        border-radius: 15px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .map-section iframe {
        height: 300px;
        min-height: 300px;
        border-radius: 15px;
        pointer-events: auto;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .contact-card {
        padding: 15px;
        text-align: center;
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-card p {
        font-size: 14px;
    }
    
    .contact-form-section h3 {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    .contact-submit-btn {
        padding: 15px;
        font-size: 16px;
    }
    
    .map-section {
        margin: 30px -20px 0 -20px; /* Full width on mobile */
        border-radius: 0;
    }
    
    .map-section iframe {
        height: 250px;
        min-height: 250px;
    }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section:first-child {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section ul {
        padding-left: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .contact-info {
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .contact-info i {
        margin-right: 5px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-logo .logo-gaman {
        font-size: 16px;
    }
    
    .footer-logo .logo-rehab {
        font-size: 10px;
    }
    
    .footer-section h3 {
        font-size: 15px;
    }
    
    .footer-section p,
    .footer-section ul li a,
    .contact-info p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}
