/* ========== Lifekare Dental Hospital Styles ========== */
:root {
  --primary: #0066CC;   /* Primary Brand Blue */
  --primary-dark: #003F88;
  --accent: #4DA6FF;    /* Secondary Blue */
  --accent-light: #E6F4FF;
  --highlight: #00B7EB; /* Highlights */
  --cta: #007BFF;       /* Buttons / CTA */
  --bg-section: #E6F4FF; /* Background Section */
  --header-footer: #003F88; /* Header/Footer */
  --muted: #6c757d;
  --light-gray: #f8f9fa;
  --dark-gray: #333;
  --white: #ffffff;
  --brand-font: "Poppins", "Open Sans", sans-serif;
  --body-font: "Open Sans", sans-serif;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
  --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  background: var(--white);
  padding-top: 80px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================= */
/*           NAVBAR STYLES       */
/* ============================= */
.navbar {
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background: var(--white) !important;
}

.navbar-scrolled {
  background: var(--white) !important;
  box-shadow: var(--shadow-light);
}

.logo { 
  width: 240px; 
  height: 71px; 
  object-fit: cover; 
  border-radius: 6px; 
  transition: var(--transition);
}

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

.brand-title { 
  font-family: var(--brand-font); 
  font-size: 0.95rem; 
  color: var(--primary); 
}

.navbar .nav-link { 
  color: var(--dark-gray); 
  margin-left: 6px; 
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link.active { 
  color: var(--primary); 
  font-weight: 600; 
}

.navbar .btn-book {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--white);
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.navbar .btn-book::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.navbar .btn-book:hover::before {
  left: 100%;
}

.navbar .btn-book:hover { 
  background: var(--primary); 
  border-color: var(--primary); 
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ============================= */
/*         HERO SECTION          */
/* ============================= */
.hero-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(77, 166, 255, 0.8) 100%), 
              url('assets/img/header.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.badge-text {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(45deg, var(--highlight), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--cta);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--cta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.hero-stats {
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--brand-font);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-text {
  font-size: 0.8rem;
  opacity: 0.7;
  margin: 0;
}

/* ============================= */
/*       SECTION HEADERS         */
/* ============================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--brand-font);
  color: var(--primary);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-sub { 
  color: var(--muted); 
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  margin: 0 auto;
  border-radius: 2px;
}

/* About */
.about-section p { font-size: 1rem; line-height: 1.7; }

/* ============================= */
/*     SERVICES SECTION STYLES   */
/* ============================= */
.card.service-card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: relative;
  height: 100%;
}

.service-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  z-index: 2;
  transition: var(--transition);
}

.card.service-card img {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
  position: relative;
}

.card.service-card .card-body {
  padding: 1.5rem;
  text-align: left;
  position: relative;
}

.card.service-card .card-title {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.card.service-card .card-text {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--bg-section);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

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

.card.service-card:hover .card-title {
  color: var(--highlight);
}

.card.service-card:hover .service-icon {
  background: var(--highlight);
  transform: scale(1.1);
}

.btn-outline-primary {
  border: 2px solid var(--cta);
  color: var(--cta);
  background: transparent;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--cta);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ============================= */
/*     WHY CHOOSE US STYLES      */
/* ============================= */
.why-choose {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-section) 100%);
  position: relative;
}

.feature-box {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  border-top: 5px solid var(--highlight);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition);
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(77,166,255,0.1), rgba(0,102,204,0.1));
  transition: var(--transition);
}

.feature-box h5 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.feature-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.feature-benefit i {
  color: var(--highlight);
}

.feature-box:hover {
  transform: translateY(-10px);
  border-top-color: var(--primary);
  box-shadow: var(--shadow-heavy);
}

.feature-box:hover::before {
  left: 0;
}

.feature-box:hover h5 {
  color: var(--highlight);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Shared blue button style */
.btn-book {
  background-color: var(--cta);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-book:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-book:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.4);
}


/* ============================= */
/*      TESTIMONIALS STYLES      */
/* ============================= */
.testimonials {
  background: var(--bg-section);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-light);
  position: relative;
  margin: 0 1rem;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.testimonial-content {
  text-align: center;
}

.testimonial-content blockquote {
  font-style: italic;
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.author-name {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.author-title {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.testimonial-rating i {
  color: var(--highlight);
  font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--cta);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: transparent;
  border-radius: 0;
  width: 20px;
  height: 20px;
}

/* ============================= */
/*         FOOTER STYLES         */
/* ============================= */
.site-footer { 
  background: var(--header-footer); 
  color: var(--white);
  position: relative;
}

.footer-logo {
  width: 180px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 15px;
}

.footer-links a:hover::before {
  width: 10px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

.social-link:hover {
  background: var(--highlight);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: var(--highlight);
  width: 20px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

/* ============================= */
/*      BACK TO TOP BUTTON       */
/* ============================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--cta);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* ============================= */
/*       RESPONSIVE STYLES       */
/* ============================= */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  body { 
    padding-top: 70px; 
  }
  
  .hero-section { 
    padding: 100px 0 60px;
    min-height: 80vh;
  }
  
  .about-hero-section {
    padding: 100px 0 60px;
    min-height: 50vh;
  }
  
  .about-hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .carousel-control-prev {
    left: 10px;
  }
  
  .carousel-control-next {
    right: 10px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-hero-section {
    padding: 80px 0 50px;
    min-height: 40vh;
  }
  
  .about-hero-section h1 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-box {
    padding: 2rem 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-stats .row {
    gap: 1rem;
  }
  
  .stat-item {
    padding: 0.5rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .about-hero-section {
    padding: 60px 0 40px;
    min-height: 35vh;
  }
  
  .about-hero-section h1 {
    font-size: 1.8rem;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .quote-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ============================= */
/*      ANIMATION UTILITIES      */
/* ============================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================= */
/*     INNER PAGE HEADERS        */
/* ============================= */
.about-hero-section {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(77, 166, 255, 0.85) 100%), 
              url('assets/img/contact-us.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.about-hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-hero-section .hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-hero-section .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.about-hero-section .shape-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.about-hero-section .shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.about-hero-section h1 {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-section .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Specific background images for different pages */
.services-hero {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(77, 166, 255, 0.85) 100%), 
              url('assets/img/header2.jpg') center/cover no-repeat !important;
}

.tourism-hero {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(77, 166, 255, 0.85) 100%), 
              url('assets/img/header3.jpg') center/cover no-repeat !important;
}

.contact-hero {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(77, 166, 255, 0.85) 100%), 
              url('assets/img/contact-us.jpg') center/cover no-repeat !important;
}

.about-section {
  background: #fff;
  padding: 80px 0;
}

.about-section h2 {
  color: var(--primary);
  font-family: var(--brand-font);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

.about-section .highlight {
  color: var(--highlight);
  font-weight: 600;
}

/* ============================= */
/*        OUR DOCTORS SECTION    */
/* ============================= */

.doctors-section {
  background: var(--bg-section);
  padding: 80px 0;
  text-align: center;
}

.doctors-section h2 {
  color: var(--primary);
  font-family: var(--brand-font);
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.doctor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.doctor-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
}

.doctor-card .card-body {
  padding: 1.5rem;
}

.doctor-card h5 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.doctor-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ============================= */
/*      SHARED PAGE ELEMENTS     */
/* ============================= */

.section-title {
  color: var(--primary);
  font-family: var(--brand-font);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.btn-book {
  display: inline-block;
  background-color: var(--cta);
  color: #fff;
  padding: 10px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-book:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Modern Services Section */
.modern-services {
  background-color: #fff;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-family: var(--brand-font);
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
}

.service-text h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--highlight);
  margin-top: 8px;
  border-radius: 3px;
}

.service-text p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-img {
  flex: 1;
  text-align: center;
}

.service-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .service-block, .service-block.reverse {
    flex-direction: column;
    text-align: center;
  }
  .service-text {
    order: 2;
  }
  .service-img {
    order: 1;
  }
}


.dental-tourism-sections {
  background: var(--bg-section);
  padding: 80px 0;
}

.tourism-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1200px;
  background: #fff;
  border-radius: 15px;
  margin: 40px auto;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tourism-box.reverse {
  flex-direction: row-reverse;
}

.tourism-image {
  flex: 1;
}

.tourism-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tourism-content {
  flex: 1;
  padding: 50px;
}

.tourism-content h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tourism-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tourism-btn {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tourism-btn:hover {
  background: var(--primary);
}

.contact-main {
  background: var(--bg-section);
  padding: 60px 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-info-card,
.contact-form-card {
  flex: 1 1 48%;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.branch-info {
  margin-bottom: 30px;
}

.branch-info h4 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.branch-info p {
  margin: 6px 0;
  line-height: 1.6;
}

.branch-info i {
  color: var(--primary);
  margin-right: 6px;
}

.map-container {
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* ============================= */
/*        FORM STYLING           */
/* ============================= */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  outline: none;
  transition: var(--transition);
  font-size: 1rem;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta), var(--primary));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--cta));
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.red-heading {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-flex {
    flex-direction: column;
  }
}

.page-banner-section {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner-section .banner-image img {
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.page-banner-section .banner-content {
  z-index: 2;
}

.page-banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* ? Responsive design */
@media (max-width: 991px) {
  .page-banner-section {
    height: 300px;
  }

  .page-banner-section .banner-content h1 {
    font-size: 2rem;
  }

  .page-banner-section .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .page-banner-section {
    height: 250px;
  }

  .page-banner-section .banner-content h1 {
    font-size: 1.6rem;
  }

  .page-banner-section .banner-content p {
    font-size: 0.95rem;
  }
}

