﻿/* ============================================================
   Charvi Care Clinic - Custom Stylesheet
   Color Palette: Logo Rose | Maroon | Teal | Navy
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #c0395a; /* logo rose/pink â€“ primary accent         */
  --gold-light: #e8748a; /* lighter rose â€“ hover / highlights       */
  --rose-gold: #2a9d8f; /* logo teal â€“ secondary accent            */
  --rose-light: #3dbfaf; /* lighter teal                            */
  --ivory: #fdf7f9; /* warm white with rose tint               */
  --beige: #f9eef1; /* soft rose-white background              */
  --beige-mid: #f0d6dd; /* mid rose for borders                    */
  --dark: #1a2a4a; /* logo navy â€“ headings / dark sections    */
  --dark-mid: #2c3e60; /* slightly lighter navy                   */
  --text-body: #2c3e60;
  --text-light: #8a6070;
  --white: #ffffff;
  --shadow-gold: 0 8px 32px rgba(192, 57, 90, 0.18);
  --shadow-soft: 0 4px 24px rgba(192, 57, 90, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Base & Typography ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  background-color: var(--ivory);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- Utility Classes ---------- */
.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(
    135deg,
    rgba(192, 57, 90, 0.1),
    rgba(42, 157, 143, 0.1)
  );
  border: 1px solid rgba(192, 57, 90, 0.25);
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  margin: 12px auto 20px;
}
.gold-line-left {
  margin: 12px 0 20px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 18px rgba(192, 57, 90, 0.35);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(192, 57, 90, 0.5);
  color: var(--white);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-rose {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 18px rgba(42, 157, 143, 0.35);
  transition: var(--transition);
  cursor: pointer;
}
.btn-rose:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(42, 157, 143, 0.5);
  color: var(--white);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  cursor: pointer;
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sm-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-sm-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.btn-sm-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.btn-sm-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(192, 57, 90, 0.08);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.3s ease;
  padding: 12px 0;
}
#mainNav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(26, 42, 74, 0.15);
  padding: 8px 0;
}
.navbar-brand img {
  height: 52px;
  transition: var(--transition);
}
#mainNav.scrolled .navbar-brand img {
  height: 44px;
}

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
}
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 2px solid rgba(26, 42, 74, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C42%2C74%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero Section ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 74, 0.82) 0%,
    rgba(26, 42, 74, 0.45) 60%,
    rgba(192, 57, 90, 0.15) 100%
  );
  z-index: 0;
}

/* Hero slide backgrounds using CSS gradients as fallback */
.slide-1 {
  background:
    linear-gradient(135deg, #1a2a4a 0%, #2c3e60 50%, #2c3e60 100%),
    url("../images/hero1.jpg");
  background-blend-mode: overlay;
}
.slide-2 {
  background:
    linear-gradient(135deg, #1a2a4a 0%, #1a2a4a 50%, #2c3e60 100%),
    url("../images/hero2.jpg");
  background-blend-mode: overlay;
}
.slide-3 {
  background:
    linear-gradient(135deg, #0e1a2e 0%, #1a2e1a 50%, #2a2a2a 100%),
    url("../images/hero3.jpg");
  background-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: inline-block;
  background: rgba(192, 57, 90, 0.2);
  border: 1px solid rgba(192, 57, 90, 0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(26, 42, 74, 0.4);
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title span {
  color: var(--gold-light);
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-btns {
  animation: fadeInUp 0.9s ease 0.35s both;
  gap: 14px;
  display: flex;
  flex-wrap: wrap;
}
.hero-badges {
  animation: fadeInUp 0.9s ease 0.5s both;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-badge i {
  color: var(--gold-light);
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  width: 32px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* ---------- About Section ---------- */
#about {
  background: var(--white);
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.04);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  text-align: center;
  min-width: 130px;
}
.about-img-badge .num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 4px;
}

.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.stat-box {
  text-align: center;
  background: var(--ivory);
  border: 1px solid rgba(192, 57, 90, 0.15);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  flex: 1;
  min-width: 100px;
}
.stat-box .stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-box .stat-lbl {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- Doctor Section ---------- */
#doctor {
  background: linear-gradient(135deg, var(--beige) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}
#doctor::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(192, 57, 90, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(192, 57, 90, 0.08) 0%,
      transparent 60%
    );
}
.doctor-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}
.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px;
}
.doctor-img-wrap img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
  max-height: 440px;
  object-fit: cover;
  object-position: top;
}
.doctor-img-wrap:hover img {
  transform: scale(1.04);
}
.doctor-qual-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}
.doctor-info {
  padding: 32px;
  color: var(--dark);
}
.doctor-info .doctor-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 4px;
}
.doctor-info .doctor-spec {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.doctor-info p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.doctor-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.doc-highlight {
  background: rgba(192, 57, 90, 0.15);
  border: 1px solid rgba(192, 57, 90, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 100px;
  text-align: center;
  color: var(--dark);
}
.doc-highlight .dh-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
}
.doc-highlight .dh-lbl {
  font-size: 0.75rem;
  color: var(--text-body);
}
.doctor-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.doc-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(192, 57, 90, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.doc-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- Services Section ---------- */
#services {
  background: var(--ivory);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(192, 57, 90, 0.08);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(192, 57, 90, 0.25);
}
.service-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.08);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(26, 42, 74, 0.6) 100%
  );
}
.service-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}
.service-body {
  padding: 24px;
}
.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-list {
  margin-bottom: 20px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  padding: 7px 0;
  border-bottom: 1px solid rgba(192, 57, 90, 0.08);
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.service-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Why Choose Us Section ---------- */
#why {
  background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}
.why-card {
  background: var(--white);
  border: 1px solid rgba(192, 57, 90, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 99px;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(192, 57, 90, 0.25);
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 90, 0.12),
    rgba(42, 157, 143, 0.12)
  );
  border: 2px solid rgba(192, 57, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: transparent;
  transform: rotateY(10deg) scale(1.08);
}
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Gallery Highlight Images ---------- */
.highlight-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.highlight-img-wrap:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.highlight-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}
.highlight-img-wrap:hover img {
  transform: scale(1.04);
}
/* ---------- Gallery Section ---------- */
#gallery {
  background: var(--white);
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  background: var(--ivory);
  border: 2px solid rgba(192, 57, 90, 0.2);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--white);
}
.gallery-grid {
  columns: 3;
  gap: 16px;
}
@media (max-width: 991px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    columns: 1;
  }
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 74, 0.65);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 57, 90, 0.5);
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gal-zoom {
  transform: scale(1);
}

/* ---------- Testimonials ---------- */
#testimonials {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 80%,
    rgba(192, 57, 90, 0.1) 0%,
    transparent 50%
  );
}
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-card:hover {
  border-color: rgba(192, 57, 90, 0.3);
  transform: translateY(-4px);
}
.testi-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testi-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
}
.testi-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 2px;
}
.testi-carousel .carousel-control-prev,
.testi-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(192, 57, 90, 0.3);
  border: 1px solid rgba(192, 57, 90, 0.5);
  position: static;
  opacity: 1;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-carousel .carousel-control-prev:hover,
.testi-carousel .carousel-control-next:hover {
  background: var(--gold);
}
.testi-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

/* ---------- FAQ Section ---------- */
#faq {
  background: var(--ivory);
}
.faq-accordion .accordion-item {
  border: 1px solid rgba(192, 57, 90, 0.15);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  padding: 20px 24px;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    rgba(192, 57, 90, 0.06),
    rgba(42, 157, 143, 0.06)
  );
  color: var(--gold);
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C0395A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  background: var(--white);
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ---------- Contact Section ---------- */
#contact {
  background: var(--white);
}
.contact-info-card {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(192, 57, 90, 0.15) 0%,
    transparent 60%
  );
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
  position: relative;
}
.contact-info-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 32px;
  position: relative;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(192, 57, 90, 0.15);
  border: 1px solid rgba(192, 57, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.1rem;
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.contact-item-text {
  color: rgba(255, 255, 255, 0.9);
}
.contact-item-text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.contact-item-text a:hover {
  color: var(--gold-light);
}

.contact-form-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(192, 57, 90, 0.1);
  height: 100%;
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.contact-form-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: block;
}
.form-control-gold {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(192, 57, 90, 0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}
.form-control-gold:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(192, 57, 90, 0.1);
}
.form-control-gold::placeholder {
  color: rgba(74, 74, 90, 0.45);
}
textarea.form-control-gold {
  resize: vertical;
  min-height: 110px;
}
select.form-control-gold {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23C0395A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(192, 57, 90, 0.1);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}


/* ---------- Video Section ---------- */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.video-thumb:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-play-btn i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(192, 57, 90, 0.5);
  padding-left: 4px;
  transition: var(--transition);
}
.video-thumb:hover .video-play-btn i {
  transform: scale(1.12);
}

/* ---------- Testimonials Slider ---------- */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 48px;
}
.testi-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-slide {
  min-width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .testi-slide { padding: 0 8px; }
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 28px;
  font-size: 6rem;
  line-height: 1;
  color: var(--beige-mid);
  font-family: Georgia, serif;
}
.testi-stars {
  display: flex;
  gap: 4px;
}
.testi-stars i {
  color: #f5a623;
  font-size: 1rem;
}
.testi-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--beige-mid);
  padding-top: 18px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}
.testi-treatment {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.testi-prev,
.testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-calc(50% + 24px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--beige-mid);
  color: var(--dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.testi-prev { left: 0; }
.testi-next { right: 0; }
.testi-prev:hover,
.testi-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testi-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
@media (max-width: 767px) {
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
}
/* ---------- Video Popup ---------- */
.video-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 42, 74, 0.92);
  align-items: center;
  justify-content: center;
}
.video-popup-overlay.show {
  display: flex;
}
.video-popup-box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 42, 74, 0.6);
}
.video-popup-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.video-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.video-popup-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}
/* ---------- Mini Service Cards ---------- */
.mini-service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mini-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.mini-service-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.mini-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.mini-service-card:hover .mini-service-img img {
  transform: scale(1.07);
}
.mini-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,42,74,0.55) 0%, transparent 60%);
}
.mini-service-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mini-service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
  margin-top: -34px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(192,57,90,0.35);
}
.mini-service-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.mini-service-body p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.mini-service-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mini-service-btns .btn-sm-gold,
.mini-service-btns .btn-sm-outline {
  font-size: 0.75rem;
  padding: 7px 14px;
}

/* ---------- Before/After Section ---------- */
#before-after {
  background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(192, 57, 90, 0.1);
  background: var(--white);
  transition: var(--transition);
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-side {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.ba-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ba-card:hover .ba-side img {
  transform: scale(1.06);
}
.ba-label {
  position: absolute;
  top: 12px;
  background: rgba(26, 42, 74, 0.8);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}
.ba-label-before {
  left: 12px;
}
.ba-label-after {
  right: 12px;
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
}
.ba-body {
  padding: 20px;
}
.ba-body h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.ba-body span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Footer ---------- */
#footer {
  background: linear-gradient(135deg, #0d1a30 0%, #1a2a4a 100%);
  /* padding: 70px 0 0; */
}
.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: "â€º";
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin: 0;
}
.footer-bottom span {
  color: var(--gold-light);
}

/* ---------- Popup / Modal ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 42, 74, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  padding: 16px;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(26, 42, 74, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.popup-overlay.show .popup-box {
  transform: scale(1) translateY(0);
}
.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}
.popup-close:hover {
  background: var(--gold);
  color: var(--white);
  transform: rotate(90deg);
}
.popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.popup-header .popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 90, 0.12),
    rgba(42, 157, 143, 0.12)
  );
  border: 2px solid rgba(192, 57, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 16px;
}
.popup-header h4 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.popup-header p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Floating Buttons ---------- */
.float-call {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  animation: floatPulse 2.5s ease-in-out infinite;
  text-decoration: none;
}
.float-call:hover {
  transform: scale(1.1) translateY(-3px);
  color: var(--white);
}

.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 799;
  background: linear-gradient(90deg, var(--dark), var(--dark-mid));
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 2px solid var(--gold);
}
@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
  }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  border: 2px solid rgba(192, 57, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-4px);
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(192, 57, 90, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(192, 57, 90, 0.65);
  }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- Section Dividers ---------- */
.wave-divider {
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ivory);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--dark));
  border-radius: 99px;
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(192, 57, 90, 0.25);
  color: var(--dark);
}

/* ---------- Mobile Adjustments ---------- */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }
  .about-img-badge {
    left: 0;
  }
  .doctor-info {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }
  .navbar-collapse {
    background: rgba(26, 42, 74, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 12px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-title {
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    margin: 0 auto 36px;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-tag {
    display: block;
    text-align: center;
  }
  .popup-box {
    padding: 28px 20px;
  }
}

/* ---------- Enquire Now Sidebar Button ---------- */
.enquire-side-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 750;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 10px 0 0 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: -4px 0 18px rgba(192, 57, 90, 0.35);
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}














