/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2c5aa0;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Adjust positioning for multiple dropdowns */
.dropdown:nth-child(3) .dropdown-menu {
  left: -50%;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #e74c3c;
  padding-left: 2rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.book-now {
  background: #e74c3c;
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.book-now:hover {
  background: #c0392b;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(44, 90, 160, 0.85) 0%,
      rgba(74, 144, 226, 0.75) 100%
    ),
    url("https://www.rehablondonclinic.com/images/rehab-london-clinic-banner.jpg")
      center/cover;
  color: white;
  padding: 140px 0 100px;
  margin-top: 80px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-text .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.4;
}

.hero-location {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.location-icon {
  width: 20px;
  height: 20px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #e74c3c;
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  color: #333;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.trust-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

.quick-contact {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.quick-contact p {
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.phone-number {
  font-size: 1.3rem;
  font-weight: bold;
  color: #e74c3c;
  text-decoration: none;
}

.phone-number:hover {
  color: #c0392b;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  max-width: none;
  width: 100%;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  margin: 0 auto 2rem auto;
  text-align: justify;
}

.services-description {
  margin-bottom: 3rem;
  text-align: left;
}

.services-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.services-description p:last-child {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
}

.service-link:hover {
  text-decoration: underline;
}

/* Conditions We Treat Section */
.conditions {
  padding: 80px 0;
  background: white;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.condition-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #e74c3c;
}

.condition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 76, 60, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.condition-card:hover::before {
  left: 100%;
}

.condition-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.condition-card:hover .condition-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.condition-content {
  flex: 1;
}

.condition-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #2c5aa0;
  font-weight: 600;
  transition: color 0.3s ease;
}

.condition-card:hover .condition-content h3 {
  color: #e74c3c;
}

.condition-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.condition-arrow {
  font-size: 1.5rem;
  color: #ccc;
  font-weight: 300;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.condition-card:hover .condition-arrow {
  color: #e74c3c;
  transform: translateX(5px);
  opacity: 1;
}

.conditions-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.conditions-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Why Choose Us */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-description {
  margin-bottom: 3rem;
  text-align: left;
}

.why-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.why-description p:last-child {
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.why-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(231, 76, 60, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #f8f9fa;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: #e74c3c;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
  color: white;
  transform: scale(1.05);
}

.testimonial-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.testimonial-card.featured .testimonial-content p,
.testimonial-card.featured .author-info span {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .author-info h4 {
  color: white;
}

.testimonial-card.featured .testimonial-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
  letter-spacing: 2px;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  left: -5px;
  top: -10px;
  font-size: 3rem;
  color: #e74c3c;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #2c5aa0;
  font-weight: 600;
}

.author-info span {
  font-size: 0.9rem;
  color: #666;
}

.testimonial-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #e74c3c;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0 3rem;
  padding: 3rem;
  background: #f8f9fa;
  border-radius: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
}

.testimonials-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Location Section */
.location {
  background: linear-gradient(
      135deg,
      rgba(44, 90, 160, 0.85) 0%,
      rgba(74, 144, 226, 0.8) 100%
    ),
    url("https://www.rehablondonclinic.com/images/rehab-london-clinic-location.jpg")
      center/cover;
  color: white;
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 90, 160, 0.1);
  pointer-events: none;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.location-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.location-details {
  font-size: 1.1rem;
  line-height: 1.8;
}

.location-details strong {
  display: block;
  margin-top: 1rem;
}

.map-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-container {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.transport-links {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
}

.transport-links strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.transport-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.transport-links li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  opacity: 0.95;
}

.transport-links li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

/* Contact CTA - Enhanced with Glassmorphism */
.contact-cta {
  background: #e74c3c;
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-booking {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-booking h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-booking p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary.large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: 50px;
  background: white;
  color: #e74c3c;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary.large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

.contact-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-divider span {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-details strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details span {
  font-size: 0.95rem;
  opacity: 0.9;
}

.opening-hours-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  z-index: 3;
  text-align: center;
}

.hours-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hours-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.hours-details {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #4a90e2;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
}

.company-info {
  border-top: 1px solid #555;
  padding-top: 2rem;
  margin-top: 2rem;
}

.company-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.company-info p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 1rem;
    display: block;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin: 0.5rem 0;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    color: #666;
  }

  .dropdown-menu a:hover {
    background: #e9ecef;
    padding-left: 1.5rem;
  }

  .book-now {
    margin: 1rem;
    display: inline-block;
  }

  /* Mobile Logo */
  .logo-img {
    height: 60px;
    max-width: 220px;
  }

  /* Mobile Hero */
  .hero {
    padding: 120px 0 60px;
    min-height: 500px;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text .subtitle {
    font-size: 1.2rem;
  }

  .hero-card {
    max-width: 100%;
    margin: 0 auto;
  }

  .trust-indicators {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Mobile Conditions */
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .condition-card {
    padding: 1.2rem;
  }

  .condition-content h3 {
    font-size: 1.2rem;
  }

  .condition-content p {
    font-size: 0.9rem;
  }

  .conditions-cta {
    padding: 1.5rem;
  }

  .conditions-cta p {
    font-size: 1.1rem;
  }

  /* Mobile Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card.featured {
    transform: scale(1);
  }

  .testimonial-card.featured:hover {
    transform: translateY(-5px);
  }

  .testimonial-content p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .testimonial-content p::before {
    font-size: 2.5rem;
    left: -8px;
    top: -8px;
  }

  .testimonial-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }

  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .testimonials-cta p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-section {
    gap: 1rem;
  }

  .transport-links {
    padding: 1rem;
  }

  /* Mobile Contact */
  .contact-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-divider {
    order: -1;
  }

  .contact-booking,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-header p {
    font-size: 1.1rem;
  }

  .btn-primary.large {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }

  .contact-booking h3,
  .contact-info h3 {
    font-size: 1.5rem;
  }

  .hours-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hours-title,
  .hours-details {
    font-size: 1rem;
  }

  /* Mobile Text Formatting */
  .services-description p,
  .why-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
