/* ============================================================
   DIVYA LAPARO ENDO SURGERY CENTRE - Main Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a6cb5;
  --primary-dark: #0f4d8a;
  --primary-light: #e8f2fc;
  --secondary: #e63946;
  --accent: #f77f00;
  --teal: #2e86ab;
  --green: #2d6a4f;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray: #6c757d;
  --light: #f8f9fa;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #1a6cb5 0%, #0f4d8a 100%);
  --gradient2: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  --shadow: 0 4px 20px rgba(26, 108, 181, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.7;
  background: #fff;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark2);
  color: #ccc;
  padding: 8px 0;
  font-size: 12.5px;
  border-bottom: 2px solid var(--primary);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-left span { color: #ccc; font-size: 12.5px; }
.topbar-left a:hover { color: var(--accent); }
.topbar-left i, .topbar-right i { color: var(--accent); margin-right: 4px; }
.topbar-right a { color: #ccc; font-size: 14px; transition: var(--transition); }
.topbar-right a:hover { color: var(--accent); }
.btn-appt-top {
  background: var(--secondary);
  color: white !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn-appt-top:hover { background: var(--primary) !important; }

/* ============================================================
   NAVBAR
   ============================================================ */
.main-navbar {
  background: var(--gradient);
  padding: 10px 0;
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.main-navbar.scrolled {
  padding: 6px 0;
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
.brand-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: uppercase;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: white !important;
  background: rgba(255,255,255,0.15);
}
.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 13.5px;
  color: #333;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.btn-appointment {
  background: var(--secondary);
  color: white !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}
.btn-appointment:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .badge-pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title h2 span { color: var(--primary); }
.section-title p {
  color: var(--gray);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
}
.divider {
  width: 60px; height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 16px auto;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,77,138,0.85) 0%, rgba(15,77,138,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-block;
  background: rgba(247, 127, 0, 0.9);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--secondary);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230,57,70,0.4);
}
.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-hero-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Slider Controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  backdrop-filter: blur(5px);
}
.carousel-indicators [data-bs-target] {
  width: 30px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
}
.carousel-indicators .active { background: white; width: 40px; }

/* Quick Stats Bar */
.stats-bar {
  background: var(--gradient);
  padding: 20px 0;
}
.stat-item {
  text-align: center;
  color: white;
  padding: 10px;
}
.stat-item .stat-num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ============================================================
   QUICK SERVICES (Home)
   ============================================================ */
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.service-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }
.service-card .learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}
.service-card .learn-more:hover { gap: 10px; }

/* ============================================================
   DOCTOR CARDS
   ============================================================ */
.doctor-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: 100%;
}
.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.doctor-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--primary-light);
}
.doctor-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.doctor-card:hover .doctor-card-img img { transform: scale(1.05); }
.doctor-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.doctor-card-body { padding: 20px; }
.doctor-card-body h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.doctor-card-body .specialty {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.doctor-card-body .qual {
  color: var(--gray);
  font-size: 12.5px;
  margin-bottom: 14px;
}
.doctor-card-timing {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 16px;
  background: var(--light);
  padding: 8px 12px;
  border-radius: 8px;
}
.doctor-card-timing i { color: var(--primary); }
.btn-view-doc {
  display: block;
  text-align: center;
  background: var(--gradient);
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-view-doc:hover {
  background: var(--gradient2);
  color: white;
}

/* ============================================================
   SPECIALITY CARDS
   ============================================================ */
.spec-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}
.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.spec-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.spec-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.spec-card:hover .spec-card-img img { transform: scale(1.08); }
.spec-card-icon {
  position: absolute;
  bottom: -20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.spec-card-body { padding: 28px 20px 20px; }
.spec-card-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.spec-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.spec-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.spec-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--primary-light); }
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 55px; height: 55px;
  border-radius: 14px;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-text h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.why-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--dark2); }
.testimonials-section .section-title h2 { color: white; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  height: 100%;
}
.testimonial-stars { color: #ffd700; font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.testimonial-author .name {
  font-weight: 700;
  color: white;
  font-size: 15px;
}
.testimonial-author .location {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   APPOINTMENT CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient);
  color: white;
  padding: 60px 0;
}
.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
}
.btn-cta {
  background: white;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-cta:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}
.btn-cta-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  padding: 13px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 4; gap: 12px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,77,138,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 30px; color: white; }
@media (max-width: 992px) { .gallery-grid { columns: 3; } }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ============================================================
   FACILITIES
   ============================================================ */
.facility-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-card img { width: 100%; height: 220px; object-fit: cover; }
.facility-card-body {
  padding: 20px;
}
.facility-card-body h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.facility-card-body p { font-size: 13.5px; color: var(--gray); }

/* ============================================================
   TPA PAGE
   ============================================================ */
.tpa-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.tpa-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.tpa-process-card {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  position: relative;
}
.tpa-step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ============================================================
   APPOINTMENT FORM
   ============================================================ */
.appt-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-control, .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,108,181,0.1);
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.btn-submit-appt {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
}
.btn-submit-appt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26,108,181,0.4);
}

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: var(--gradient);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -50px; bottom: -150px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}
.page-hero .breadcrumb-item { color: rgba(255,255,255,0.75); font-size: 14px; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-card p { font-size: 14px; color: var(--gray); margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: var(--dark2); color: #aaa; }
.footer-top { padding: 60px 0 40px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand i {
  font-size: 32px;
  color: var(--primary);
  background: rgba(26,108,181,0.15);
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand span {
  font-size: 14px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  text-transform: uppercase;
}
.footer-tagline {
  color: var(--accent);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 12px;
}
.footer-desc { font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #aaa;
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-title {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: #aaa;
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 16px; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-contact-list li {
  display: flex; gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  align-items: flex-start;
}
.footer-contact-list i {
  color: var(--primary);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-list a { color: var(--accent); }
.footer-contact-list a:hover { color: white; }

/* PWA Strip */
.pwa-strip {
  background: linear-gradient(135deg, #0f4d8a, #1a6cb5);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pwa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pwa-text {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
}
.pwa-text i { font-size: 24px; color: white; }
.pwa-actions { display: flex; align-items: center; gap: 10px; }
.btn-pwa {
  background: white;
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-pwa:hover { background: var(--accent); color: white; }
.btn-pwa-dismiss {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  transition: var(--transition);
}
.btn-pwa-dismiss:hover { background: rgba(255,255,255,0.1); color: white; }

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 13px; margin: 0; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 50px;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--primary); }
.float-btn .float-label {
  font-size: 13px;
  font-weight: 700;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease;
}
.float-btn:hover { color: white; }
.float-btn:hover .float-label { max-width: 120px; }
.float-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(0,0,0,0.3); }

/* Pulse animation */
.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 2px solid #25D366;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 150px; right: 24px;
  width: 42px; height: 42px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  z-index: 9998;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(26,108,181,0.3);
}
#backToTop:hover { transform: translateY(-3px); }

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox-modal .modal-dialog { max-width: 90vw; }
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
}
.lightbox-modal img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ============================================================
   UTILITY / MISC
   ============================================================ */
.bg-light-blue { background: var(--primary-light); }
.text-primary-custom { color: var(--primary); }
.badge-custom {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  margin: 3px;
}
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.info-box p { margin: 0; font-size: 14px; color: var(--dark); }

/* Breadcrumb */
.breadcrumb { background: none; margin: 0; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.75); }

/* Video Cards */
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #000;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn i {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-thumb:hover .video-play-btn i {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hero-slide { height: 480px; }
  .hero-content h1 { font-size: 34px; }
  .topbar-left span { display: none; }
  .section-title h2 { font-size: 28px; }
}
@media (max-width: 767px) {
  .hero-slide { height: 420px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 14px; }
  .topbar { display: none; }
  .section-pad { padding: 50px 0; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .float-btn .float-label { display: none; }
  .float-btn { width: 52px; height: 52px; border-radius: 50%; padding: 0; justify-content: center; }
  .page-hero h1 { font-size: 28px; }
}
@media (max-width: 480px) {
  .hero-slide { height: 360px; }
  .hero-content h1 { font-size: 22px; }
  .hero-btns .btn-hero-outline { display: none; }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.6s ease forwards; }

/* ============================================================
   DESKTOP DROPDOWN — TABLE STYLE
   ============================================================ */
.dropdown-menu.p-0 {
  min-width: 280px;
  border-radius: 0 0 14px 14px;
  border: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  overflow: hidden;
  margin-top: 0 !important;
}
.dd-table-menu { display: flex; flex-direction: column; }
.dd-table-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid #f0f2f5;
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}
.dd-table-row:last-child { border-bottom: none; }
.dd-table-row:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}
.dd-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.2s;
}
.dd-table-row:hover .dd-icon {
  background: var(--primary);
  color: white;
}
.dd-texts { display: flex; flex-direction: column; line-height: 1.25; }
.dd-label { font-size: 13.5px; font-weight: 700; }
.dd-desc  { font-size: 11.5px; color: #888; margin-top: 1px; }
.dd-table-row:hover .dd-desc { color: rgba(26,108,181,0.7); }

/* Keep bootstrap dropdown behaviour intact */
.navbar-nav .dropdown-menu { border-radius: 0 0 14px 14px; }

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.mob-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9990;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mob-nav-overlay.open { opacity: 1; pointer-events: all; }

.mob-nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 300px; max-width: 85vw;
  height: 100%;
  background: white;
  z-index: 9991;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
.mob-nav-drawer.open { transform: translateX(0); }

.mob-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: var(--gradient);
  flex-shrink: 0;
}
.mob-nav-close {
  background: rgba(255,255,255,0.15); border: none;
  color: white; width: 34px; height: 34px;
  border-radius: 50%; font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.mob-nav-close:hover { background: rgba(255,255,255,0.3); }

.mob-nav-body { flex: 1; overflow-y: auto; padding: 8px 0; }

.mob-acc-item { border-bottom: 1px solid #f0f2f5; }
.mob-acc-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: none; border: none;
  font-size: 14px; font-weight: 600; color: #333;
  cursor: pointer; text-align: left; text-decoration: none;
  transition: background 0.2s;
}
.mob-acc-btn:hover { background: var(--primary-light); color: var(--primary); }
.mob-acc-active { color: var(--primary) !important; background: var(--primary-light) !important; }

.mob-nav-icon { margin-right: 10px; color: var(--primary); width: 16px; text-align: center; }
.mob-acc-arrow { font-size: 12px; color: #999; flex-shrink: 0; }

.mob-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafbfc;
}
.mob-acc-body.open { max-height: 400px; }
.mob-acc-sub {
  display: flex; align-items: center;
  padding: 10px 18px 10px 44px;
  font-size: 13.5px; color: #555;
  text-decoration: none;
  transition: all 0.2s;
  border-bottom: 1px solid #f0f2f5;
}
.mob-acc-sub:last-child { border-bottom: none; }
.mob-acc-sub:hover { background: var(--primary-light); color: var(--primary); padding-left: 50px; }

.mob-nav-footer {
  padding: 16px 18px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}
.mob-book-btn {
  display: block; text-align: center;
  background: var(--gradient);
  color: white !important; font-weight: 700; font-size: 14px;
  padding: 12px; border-radius: 10px;
  text-decoration: none; margin-bottom: 12px;
  transition: var(--transition);
}
.mob-book-btn:hover { opacity: 0.9; }
.mob-nav-contact {
  display: flex; gap: 10px;
}
.mob-nav-contact a {
  flex: 1; text-align: center;
  background: #f5f5f5; color: #333;
  padding: 8px 6px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.mob-nav-contact a:hover { background: var(--primary); color: white; }

/* Custom hamburger icon */
.hamburger-icon {
  display: flex; flex-direction: column; gap: 5px;
  width: 24px; cursor: pointer;
}
.hamburger-icon span {
  display: block; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}

/* Hide default Bootstrap toggler on mobile, show custom drawer */
@media (max-width: 991px) {
  .navbar-collapse { display: none !important; }
}

/* ============================================================
   PWA BOTTOM NAV (mobile only)
   ============================================================ */
.pwa-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: white;
  border-top: 1px solid #eee;
  z-index: 9980;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  align-items: stretch;
}
@media (max-width: 767px) {
  .pwa-bottom-nav { display: flex; }
  body { padding-bottom: 62px; }
  .floating-buttons { bottom: 78px; }
  #backToTop { bottom: 80px; }
}
.pwa-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; text-decoration: none;
  color: #999; font-size: 10px; font-weight: 600;
  transition: color 0.2s; position: relative;
}
.pwa-nav-item i { font-size: 19px; line-height: 1; }
.pwa-nav-item span { font-size: 9.5px; }
.pwa-nav-item:hover, .pwa-nav-active { color: var(--primary); }
.pwa-nav-active::after {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%;
  height: 3px; border-radius: 0 0 3px 3px;
  background: var(--primary);
}
.pwa-nav-center {
  position: relative; flex: 1.2;
  color: var(--primary);
}
.pwa-nav-book {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(26,108,181,0.4);
  margin-top: -20px; margin-bottom: 2px;
}
.pwa-nav-book i { font-size: 20px; color: white; }
.pwa-nav-center span { color: var(--primary); font-weight: 700; }

/* ============================================================
   FOOTER INSTALL APP BUTTON
   ============================================================ */
.btn-install-app {
  display: flex; align-items: center; gap: 12px;
  width: 100%; margin-top: 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer; color: white;
  transition: all 0.3s;
  text-align: left;
}
.btn-install-app:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-install-app > .fa-download {
  font-size: 22px; color: var(--accent); flex-shrink: 0;
}
.install-text {
  display: flex; flex-direction: column; line-height: 1.2; flex: 1;
}
.install-text small { font-size: 11px; opacity: 0.7; }
.install-text strong { font-size: 15px; font-weight: 800; }
.install-arrow { font-size: 13px; opacity: 0.5; }
.btn-install-app.pwa-installable { border-color: var(--accent); animation: installPulse 2s infinite; }
@keyframes installPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,127,0,0); }
  50%       { box-shadow: 0 0 0 6px rgba(247,127,0,0.2); }
}

/* Remove old PWA strip if any */
.pwa-strip { display: none !important; }

/* ============================================================
   BLOG STYLES
   ============================================================ */
.blog-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: var(--transition); height: 100%;
  border: 1px solid #f0f0f0;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  color: white; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card-body { padding: 20px; }
.blog-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: #999; margin-bottom: 10px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body h4 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 13px; font-weight: 700;
  text-decoration: none; transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; color: var(--primary); }
.blog-tag {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 11.5px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; margin: 3px; text-decoration: none;
  transition: var(--transition);
}
.blog-tag:hover { background: var(--primary); color: white; }

/* Blog detail */
.blog-detail-content { line-height: 1.9; color: #444; }
.blog-detail-content h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin: 28px 0 12px; }
.blog-detail-content h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 22px 0 10px; }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content ul, .blog-detail-content ol { padding-left: 22px; margin-bottom: 16px; }
.blog-detail-content li { margin-bottom: 6px; font-size: 15px; }
.blog-detail-content blockquote { border-left: 4px solid var(--primary); padding: 14px 20px; background: var(--primary-light); border-radius: 0 12px 12px 0; margin: 20px 0; font-style: italic; color: var(--dark); }

.blog-author-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--primary-light); border-radius: var(--radius);
  padding: 20px; margin: 32px 0;
}
.blog-author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 3px solid var(--primary); flex-shrink: 0;
}
.blog-author-info h6 { font-weight: 800; color: var(--dark); margin-bottom: 2px; }
.blog-author-info small { color: var(--gray); font-size: 12.5px; }

.sidebar-widget {
  background: white; border-radius: var(--radius);
  padding: 24px; box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  margin-bottom: 24px;
}
.sidebar-widget h5 {
  font-size: 15px; font-weight: 800; color: var(--dark);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.recent-post-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
  text-decoration: none; color: inherit; transition: var(--transition);
}
.recent-post-item:last-child { border-bottom: none; }
.recent-post-item:hover { color: var(--primary); }
.recent-post-thumb {
  width: 60px; height: 60px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.recent-post-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 3px; }
.recent-post-date { font-size: 11px; color: #999; }

/* Blog search */
.blog-search {
  display: flex; gap: 0;
  border: 2px solid #e0e0e0; border-radius: 10px;
  overflow: hidden; margin-bottom: 24px;
  transition: border-color 0.3s;
}
.blog-search:focus-within { border-color: var(--primary); }
.blog-search input {
  flex: 1; border: none; padding: 11px 14px;
  font-size: 14px; outline: none;
}
.blog-search button {
  background: var(--primary); color: white; border: none;
  padding: 11px 18px; cursor: pointer; font-size: 15px;
  transition: var(--transition);
}
.blog-search button:hover { background: var(--primary-dark); }
