/* Base Styles & Variables */
:root {
  --primary-color: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1d4ed8;
  --secondary-color: #f0f9ff;
  --accent-color: #0ea5e9;
  --dark-color: #1e293b;
  --light-color: #f8fafc;
  --text-primary: #334155;
  --text-secondary: #64748b;
  --text-light: #f8fafc;
  --gray-light: #e2e8f0;
  --gray-medium: #cbd5e1;
  --gray-dark: #94a3b8;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --border-radius: 8px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-main: "Poppins", sans-serif;
  --font-secondary: "Montserrat", sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

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

.btn-block {
  display: block;
  width: 100%;
}

/* Section Utilities */
.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  color: var(--primary-color);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: var(--shadow-md);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.logo-icon {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1.75rem;
}

.desktop-nav ul {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--dark-color);
  transition: var(--transition);
}
/* Mobile Navigation Fixes */
@media (max-width: 768px) {
  /* Hide desktop button on mobile */
  .desktop-btn {
    display: none;
  }

  /* Ensure mobile menu toggle is visible */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Active state for mobile toggle */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobile menu styling */
  .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    z-index: 100;
  }

  .mobile-nav.active {
    max-height: 400px;
    overflow-y: auto;
  }

  .mobile-nav ul {
    padding: 20px;
  }

  .mobile-nav li {
    margin-bottom: 15px;
  }

  .mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-btn {
    display: inline-block;
    text-align: center;
    margin-top: 10px;
  }
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav ul {
  padding: 24px;
}

.mobile-nav li {
  margin-bottom: 16px;
}

.mobile-nav a {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
}

.mobile-nav a:hover {
  color: var(--primary-color);
}

.mobile-btn {
  margin-top: 16px;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--dark-color);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.feature-text {
  font-weight: 500;
  color: var(--text-primary);
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.shape-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: var(--primary-light);
  opacity: 0.1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  top: -100px;
  right: -100px;
  animation: blob-animation 15s infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
  }
  50% {
    border-radius: 30% 60% 40% 70% / 50% 60% 30% 60%;
  }
  75% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.language-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition);
}

.language-btn.active {
  color: var(--primary-color);
}

.language-btn:hover {
  color: var(--primary-color);
}

.language-divider {
  color: var(--gray-medium);
  margin: 0 5px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  border-radius: 16px;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background-color: var(--primary-color);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.experience-badge .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.experience-badge .text {
  font-size: 0.9rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.stats-container {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icon {
  color: var(--primary-color);
}

.value-text {
  font-weight: 500;
}

/* Doctors Section */
.doctors {
  background-color: var(--secondary-color);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.doctor-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.doctor-image {
  height: 300px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  margin-bottom: 4px;
}

.doctor-specialty {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.doctor-description {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.doctor-social {
  display: flex;
  gap: 16px;
}

.doctor-social a {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.doctor-social a:hover {
  color: var(--primary-color);
}

.team-cta {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  padding: 0 8px;
}

.testimonial-content {
  background-color: var(--secondary-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.testimonial-rating {
  color: var(--warning-color);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  gap: 24px;
}

.testimonial-prev,
.testimonial-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 5px;
}

/* Booking Section */
.booking {
  background-color: var(--secondary-color);
}

.booking-container {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-content {
  flex: 1;
  padding: 48px;
  background-color: var(--primary-color);
  color: white;
}

.booking-content h2 {
  color: white;
}

.booking-content p {
  opacity: 0.9;
}

.booking-features {
  margin-top: 40px;
}

.booking-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.booking-feature .feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.booking-feature h4 {
  margin-bottom: 4px;
}

.booking-feature p {
  opacity: 0.8;
  margin-bottom: 0;
}

.booking-form {
  flex: 1;
  padding: 48px;
}

.booking-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-medium);
  border-radius: var(--border-radius);
  background-color: var(--light-color);
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Insurance Section */
.insurance {
  background-color: white;
  padding: 60px 0;
}

.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.insurance-logo {
  opacity: 0.7;
  transition: var(--transition);
}

.insurance-logo:hover {
  opacity: 1;
}

.insurance-note {
  text-align: center;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background-color: var(--secondary-color);
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-methods {
  margin: 40px 0;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  border-radius: 50%;
}

.method-details h4 {
  margin-bottom: 4px;
}

.method-details p {
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-map {
  flex: 1;
  min-height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.faq-toggle {
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 0 24px;
  display: none;
}

.faq-answer p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  color: white;
  margin-bottom: 8px;
}

.newsletter-text p {
  opacity: 0.9;
  margin-bottom: 0;
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 20px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  background-color: white;
  color: var(--primary-color);
  padding: 14px 24px;
}

.newsletter-form button:hover {
  background-color: var(--light-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--gray-medium);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column {
  flex: 1;
}

.footer-column:first-child {
  flex: 1.5;
}

.footer-column .logo {
  margin-bottom: 20px;
  color: white;
}

.footer-column p {
  margin-bottom: 24px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a:hover {
  color: white;
}

.hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.footer-column .btn {
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .stats-container {
    justify-content: center;
  }

  .booking-container {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values {
    grid-template-columns: 1fr;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 60px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .booking-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-content,
  .booking-form {
    padding: 32px 24px;
  }

  .social-links {
    justify-content: center;
  }

  .experience-badge {
    right: 0;
    bottom: 0;
  }
}

/* Updated Booking Section Styles */
.booking {
  background-color: var(--secondary-color);
  padding: 80px 0;
}

.booking-container {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-content {
  flex: 1;
  padding: 48px;
  background-color: var(--primary-color);
  color: white;
}

.booking-content h2 {
  color: white;
  margin-bottom: 16px;
}

.booking-content p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.booking-features {
  margin-top: 40px;
}

/* FIXED ICON STYLES */
.booking-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.booking-icon {
  min-width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-icon i {
  color: white;
  font-size: 20px;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-text p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 0;
}

.booking-form {
  flex: 1;
  padding: 48px;
  background-color: white;
}

.booking-form h3 {
  margin-bottom: 24px;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-content,
  .booking-form {
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .booking-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .booking-content,
  .booking-form {
    padding: 32px 24px;
  }
}

.disclaimer-section {
  font-size: 12px; /* Kept small font for subtlety, typical for disclaimers */
  color: var(--text-secondary); /* Retained for theme consistency */
  text-align: center; /* Centered for balanced appearance */
  margin-top: 20px; /* Kept for spacing above */
  padding: 15px 0; /* Added padding for vertical breathing room */
  background-color: var(
    --footer-bg,
    rgba(255, 255, 255, 0.1)
  ); /* Light background to distinguish from main content */
  border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1)); /* Subtle top border for separation */
  width: 100%; /* Ensure it spans the footer width */
}

.disclaimer-content {
  max-width: 600px; /* Kept to constrain content width for readability */
  margin: 0 auto; /* Centered content */
  line-height: 1.4; /* Kept for readability */
  padding: 0 15px; /* Added horizontal padding for mobile responsiveness */
  color: inherit; /* Ensure text color matches parent for consistency */
}
