/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Color Variables & Custom Design System */
:root {
  --primary: #8A0A1C; /* Burgundy Wine Red */
  --primary-rgb: 138, 10, 28;
  --secondary: #D49B28; /* Gold Accent */
  --secondary-rgb: 212, 155, 40;
  --accent: #F4B740;
  --accent-rgb: 244, 183, 64;
  --background: #FFFFFF;
  --light-section: #FAF7F5; /* Cozy Warm Ivory */
  --footer: #2E050B; /* Dark Burgundy Footer */
  --text: #2C2224;
  --text-muted: #7E7072;
  
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --shadow-sm: 0 2px 8px rgba(138, 10, 28, 0.04);
  --shadow-md: 0 10px 30px rgba(138, 10, 28, 0.08);
  --shadow-lg: 0 20px 40px rgba(138, 10, 28, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(138, 10, 28, 0.06);
}

/* Base resets & typography */
body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: #0F2A4A;
}

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

/* Top Bar */
.top-bar {
  background-color: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-headings);
  font-weight: 500;
  z-index: 1035;
  position: relative;
}

.top-bar a {
  color: #fff;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
}

.top-bar-item i {
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.2);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header & Navigation */
.navbar {
  transition: var(--transition-smooth);
  padding: 15px 0;
  z-index: 1030;
}

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.navbar-floating-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  margin-top: 10px;
  transition: var(--transition-smooth);
}

.navbar-floating-container.scrolled {
  top: 0;
  margin-top: 0;
}

@media (min-width: 992px) {
  .navbar-floating-container {
    top: 45px !important;
    margin-top: 30px !important;
  }
  .navbar-floating-container.scrolled {
    top: 0 !important;
    margin-top: 0 !important;
  }
}

.navbar-floating {
  background: #ffffff;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 95, 168, 0.05);
  padding: 10px 30px !important;
  transition: var(--transition-smooth);
}

.navbar-floating-container.scrolled {
  background: #ffffff !important;
  box-shadow: var(--shadow-sm) !important;
  border-bottom: 1px solid rgba(138, 10, 28, 0.08) !important;
  transition: var(--transition-smooth);
}

.navbar-floating-container.scrolled .navbar-floating {
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
}

/* Navbar Logo — Big & Transparent-Friendly */
.navbar-brand {
  padding: 0 !important;
}

.navbar-logo-img {
  height: 80px;
  width: auto;
  display: block;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  transition: transform 0.25s, filter 0.25s;
}

.navbar-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

/* Slightly smaller on scrolled state */
.navbar-floating-container.scrolled .navbar-logo-img {
  height: 68px;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-logo-img {
    height: 68px;
  }
}

@media (max-width: 575px) {
  .navbar-logo-img {
    height: 58px;
  }
}

/* Footer Logo — show natural logo colors on dark footer */
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 8px 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
  transition: transform 0.25s, filter 0.25s;
}

.footer-logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

.navbar-floating .nav-link {


  color: var(--text) !important;
}

.navbar-floating .navbar-brand {
  color: var(--primary) !important;
}

.navbar-floating .navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: #fff;
  transition: var(--transition-smooth);
}

.navbar-brand span {
  color: var(--secondary);
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95) !important;
  margin: 0 12px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary) !important;
}


/* Navigation Dropdown Custom Styling (Shared Styles) */
.navbar-floating .dropdown-menu {
  background: #ffffff;
  border-radius: 20px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
  padding: 15px !important;
  border: 1px solid rgba(138, 10, 28, 0.05) !important;
}

.navbar-floating .dropdown-item {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text) !important;
  transition: var(--transition-smooth);
  border-radius: 10px;
}

.navbar-floating .dropdown-item:hover {
  background-color: rgba(138, 10, 28, 0.05) !important;
  color: var(--primary) !important;
  transform: translateX(4px);
}

.navbar-floating .dropdown-item.active,
.navbar-floating .dropdown-item:active {
  background-color: var(--primary) !important;
  color: #ffffff !important;
}

/* Desktop-Only Hover & Animations */
@media (min-width: 992px) {
  .navbar-floating .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 250px;
  }
  
  .navbar-floating .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Bridges the 15px gap to prevent dropdown from closing when moving cursor */
  .navbar-floating .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
  }
}


/* Standard Header for Inner Pages */
.header-inner {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(15, 95, 168, 0.08);
}
.header-inner .nav-link {
  color: var(--text) !important;
}
.header-inner .navbar-brand {
  color: var(--primary) !important;
}

/* WhatsApp CTA Button */
.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  padding: 10px 20px 10px 12px;
  border-radius: 50px;
  font-family: var(--font-headings);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #20b558 0%, #128C7E 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50px;
}

.whatsapp-cta-btn:hover::before { opacity: 1; }

.whatsapp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.whatsapp-top {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}

.whatsapp-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  font-family: var(--font-body);
}

.whatsapp-arrow {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.whatsapp-cta-btn:hover .whatsapp-arrow {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .whatsapp-cta-btn {
    padding: 9px 16px 9px 10px;
    gap: 9px;
  }
  .whatsapp-icon { width: 38px; height: 38px; min-width: 38px; }
  .whatsapp-top { font-size: 0.87rem; }
  .whatsapp-arrow { width: 30px; height: 30px; min-width: 30px; }
}

/* Buttons */

.btn-premium {
  background: var(--primary);
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(15, 95, 168, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-premium:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 95, 168, 0.3);
}

.btn-secondary-premium {
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--secondary);
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.2);
}

.btn-secondary-premium:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
}

.btn-outline-premium {
  background: transparent;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: var(--transition-bounce);
}

.btn-outline-premium:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 95, 168, 0.2);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #ffffff;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Redesigned Hero Section (Light Mode) */
.hero-section-light {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(32, 178, 170, 0.08) 0%, rgba(15, 95, 168, 0.03) 100%), #FFFFFF;
  color: var(--text);
}

.hero-tagline-accent {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-title-dark {
  font-size: 4.2rem;
  line-height: 1.15;
  font-weight: 800;
  color: #0B2239;
  margin-bottom: 25px;
  position: relative;
}

.hero-title-dark span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

/* Curve underline effect */
.hero-title-dark span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="%2320B2AA" stroke-width="3" stroke-linecap="round"/></svg>') repeat-x;
  background-size: 100% 100%;
}

.hero-desc-dark {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 520px;
}

/* Play Button */
.btn-play-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-play-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(32, 178, 170, 0.15);
}

.btn-play-wrapper:hover .btn-play-icon {
  background: var(--secondary);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.2);
}

.btn-play-text {
  display: flex;
  flex-direction: column;
}

.btn-play-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0B2239;
}

.btn-play-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Left Bottom Features */
.hero-features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(15, 95, 168, 0.08);
  padding-top: 30px;
}

.hero-feature-pill {
  text-align: center;
}

.hero-feature-pill-icon {
  width: 46px;
  height: 46px;
  background: rgba(32, 178, 170, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 10px auto;
  transition: var(--transition-bounce);
}

.hero-feature-pill:hover .hero-feature-pill-icon {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-feature-pill-title {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B2239;
  line-height: 1.3;
}

/* Right-side Interactive Cards Layout */
.hero-visual-container {
  position: relative;
  padding-right: 120px;
  padding-bottom: 60px;
}

.hero-main-img-card {
  width: 100%;
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #ffffff;
}

.hero-main-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlapping Side Cards */
.hero-overlay-side-wrapper {
  position: absolute;
  right: 0;
  top: 15%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 240px;
  z-index: 10;
}

.hero-overlay-card-white {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 95, 168, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-bounce);
}

.hero-overlay-card-dark {
  background: #0B2239;
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-bounce);
}

.hero-overlay-card-white:hover,
.hero-overlay-card-dark:hover {
  transform: translateX(-8px) translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-overlay-card-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.hero-overlay-card-white h6 {
  color: #0B2239;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-overlay-card-dark h6 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-overlay-card-white p,
.hero-overlay-card-dark p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.hero-overlay-card-white p {
  color: var(--text-muted);
}

.hero-overlay-card-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.hero-overlay-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: rgba(32, 178, 170, 0.15);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.hero-overlay-card-dark .hero-overlay-card-arrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Bottom Stats Bar Overlay */
.hero-overlay-bar-bottom {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  background: #ffffff;
  border-radius: 30px;
  padding: 20px 30px;
  box-shadow: var(--shadow-lg);
  z-index: 12;
  border: 1px solid rgba(15, 95, 168, 0.05);
}

.hero-stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-stat-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-pill-icon {
  width: 44px;
  height: 44px;
  background: rgba(32, 178, 170, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-stat-pill-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B2239;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-stat-pill-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-section-light {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-visual-container {
    padding-right: 0;
    padding-bottom: 0;
    margin-top: 50px;
  }
  .hero-main-img-card {
    height: 380px;
  }
  .hero-overlay-side-wrapper {
    position: relative;
    top: 0;
    flex-direction: row;
    width: 100%;
    margin-top: 20px;
    right: 0;
  }
  .hero-overlay-card-white,
  .hero-overlay-card-dark {
    flex: 1;
  }
  .hero-overlay-bar-bottom {
    position: relative;
    left: 0;
    width: 100%;
    margin-top: 20px;
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .hero-title-dark {
    font-size: 2.8rem;
  }
  .hero-overlay-side-wrapper {
    flex-direction: column;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  /* Feature pills: 2x2 grid on mobile */
  .hero-features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
    padding-top: 20px;
  }
  .hero-feature-pill {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-feature-pill-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }
  .hero-feature-pill-title {
    font-size: 0.8rem;
  }

  /* Stats bar: 2x2 grid on mobile */
  .hero-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    justify-items: start;
  }
  .hero-stat-pill-item {
    gap: 10px;
  }
  .hero-stat-pill-num {
    font-size: 1.1rem;
  }
  .hero-stat-pill-lbl {
    font-size: 0.75rem;
  }
}



/* Floating Booking Card */
.floating-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-80px);
  position: relative;
  z-index: 10;
}

/* Inner Page Hero */
.page-hero {
  padding: 160px 0 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--footer) 100%);
  color: #fff;
  position: relative;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* Glassmorphism Section & Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 95, 168, 0.15);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, #083c6b 100%);
  color: #fff;
  padding: 60px 0;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-headings);
  font-weight: 500;
}

/* Service Card Premium */
.service-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 95, 168, 0.04);
  transition: var(--transition-bounce);
  height: 100%;
  position: relative;
}

.service-card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  border-radius: 24px 24px 0 0;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card-icon {
  position: absolute;
  bottom: -28px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(212, 155, 40, 0.4);
  z-index: 10;
  transition: var(--transition-bounce);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 95, 168, 0.1);
}

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

.service-card:hover .service-card-icon {
  background: var(--primary);
  transform: rotate(360deg);
}

/* =========================================
   PREMIUM SIDEBAR — Service Pages
   ========================================= */

/* --- Form Card --- */
.sidebar-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(138, 10, 28, 0.06);
}

.sidebar-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sidebar-form-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(138, 10, 28, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-form-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  margin: 0;
}

.sidebar-form-divider {
  height: 3px;
  width: 40px;
  background: var(--primary);
  border-radius: 4px;
  margin-bottom: 14px;
}

.sidebar-form-subtitle {
  font-size: 0.88rem;
  color: #6c757d;
  margin-bottom: 22px;
  line-height: 1.6;
}

.sidebar-field-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 7px;
}

.sidebar-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #444;
  background: #fafafa;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: var(--font-body);
}

.sidebar-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(138, 10, 28, 0.08);
  background: #fff;
}

.sidebar-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #8A0A1C 0%, #6b0816 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-headings);
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(138, 10, 28, 0.35);
}

.sidebar-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(138, 10, 28, 0.45);
}

/* --- Department Details Card --- */
.sidebar-dept-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #8A0A1C 0%, #5c0613 100%);
  border-radius: 20px;
  padding: 30px 24px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(138, 10, 28, 0.35);
  color: #fff;
}

.dept-card-watermark {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 200px;
  pointer-events: none;
  opacity: 1;
}

.dept-card-top-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.dept-card-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.dept-card-divider {
  height: 2px;
  width: 36px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px;
  margin: 0 auto 22px;
}

.dept-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 12px 0;
}

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

.dept-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dept-info-label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.dept-info-value {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
}

.dept-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}

/* Responsive: stack sidebar below content on mobile */
@media (max-width: 991px) {
  .sidebar-form-card,
  .sidebar-dept-card {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================
   WHY CHOOSE US ICONS
   ========================================= */
/* Why Choose Us Icons */

.why-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(15, 95, 168, 0.08);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition-bounce);
}

.glass-card:hover .why-icon-box {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

/* Doctors Card */
.doctor-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(15, 95, 168, 0.03);
}

.doctor-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.doctor-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(11, 34, 57, 0.9) 0%, transparent 100%);
  display: flex;
  justify-content: center;
  padding: 30px 10px 15px 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.doctor-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 8px;
  font-size: 0.95rem;
}

.doctor-socials a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

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

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

.doctor-card:hover .doctor-socials {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Before/After Comparison Slider */
.ba-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-resize {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: left center;
  border-right: 3px solid #fff;
  overflow: hidden;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin-left: -22px;
  margin-top: -22px;
  background: var(--secondary);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  cursor: ew-resize;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: #fff;
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 3px;
  background-color: #fff;
}

.ba-handle::before {
  top: -200px;
  height: 200px;
}

.ba-handle::after {
  bottom: -200px;
  height: 200px;
}

/* Testimonial slider custom */
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 95, 168, 0.2);
  margin: 0 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

/* Gallery filtering and Lightbox */
.gallery-filter-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(15, 95, 168, 0.15);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  margin: 5px;
  transition: var(--transition-smooth);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(15, 95, 168, 0.15);
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 350px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 95, 168, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
}

.gallery-overlay i {
  font-size: 2rem;
  margin-bottom: 10px;
  transform: translateY(-15px);
  transition: var(--transition-bounce);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover .gallery-item-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

/* Custom Lightbox */
.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 34, 57, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.1);
}

.lightbox-caption {
  color: #fff;
  font-family: var(--font-headings);
  font-weight: 500;
  margin-top: 15px;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--accent);
}

/* FAQ accordion styling */
.accordion-item {
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid rgba(15, 95, 168, 0.08) !important;
  box-shadow: var(--shadow-sm);
  margin-bottom: 15px;
}

.accordion-button {
  font-family: var(--font-headings);
  font-weight: 600;
  color: #0F2A4A !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
  padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-section) !important;
  color: var(--primary) !important;
}

/* Footer Section */
footer {
  background-color: var(--footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.95rem;
}

footer h5 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  padding-left: 0 !important;
}

/* Animation utilities replicating AOS */
.reveal-fade,
.reveal-slide-up,
.reveal-zoom {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up {
  transform: translateY(50px);
}

.reveal-zoom {
  transform: scale(0.9);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Keyframes */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes heroSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoomIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-section-light .reveal-slide-up {
  animation: heroSlideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-section-light .reveal-zoom {
  animation: heroZoomIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Floating animation helper class */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

/* Accessibility and SEO enhancements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 15px 0;
  }
  .navbar-brand {
    color: var(--primary) !important;
  }
  .nav-link {
    color: var(--text) !important;
    margin: 10px 0;
  }
  .navbar-toggler {
    border-color: rgba(15, 95, 168, 0.2);
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-section {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 80px;
  }
  .floating-card {
    transform: translateY(0);
    margin-top: 40px;
  }
  .page-hero {
    padding: 120px 0 60px 0;
  }
  .ba-slider {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .btn-premium, .btn-secondary-premium, .btn-outline-premium {
    padding: 10px 22px;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 12px;
  }
  .stat-item h3 {
    font-size: 2.8rem;
  }
}

/* Premium Floating CTA Card & Layout Separation */
.cta-section-wrapper {
  background: var(--light-section);
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.cta-floating-card {
  background: linear-gradient(135deg, var(--primary) 0%, #5E0511 100%);
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: 0 25px 60px rgba(138, 10, 28, 0.18);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-floating-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 155, 40, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-floating-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-section-wrapper {
    padding: 60px 0;
  }
  .cta-floating-card {
    padding: 50px 30px;
    border-radius: 24px;
  }
}

