:root {
  --maroon: #700C28;
  --maroon-dark: #3B0816;
  --maroon-light: #8E1537;
  --maroon-glow: rgba(112, 12, 40, 0.12);
  --rosegold: #D89B8A;
  --rosegold-dark: #B57A69;
  --rosegold-light: #FDF3F0;
  --rosegold-tint: #F8E8E4;
  --blue: #700C28;
  --blue-dark: #3B0816;
  --navy: #700C28;
  --pink: #D89B8A;
  --pink-light: #FDF3F0;
  --cream: #FFF8F7;
  --text: #2D141A;
  --muted: #6B4E56;
  --white: #ffffff;
  --line: #EEDBDD;
  --shadow: 0 16px 45px rgba(112, 12, 40, 0.08);
  --shadow-hover: 0 22px 55px rgba(112, 12, 40, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--pink-light);
  opacity: 1;
}

/* HEADER & NAV */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text strong {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  color: var(--blue);
  letter-spacing: 0.4px;
  display: block;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav > a,
.nav-dropdown > a {
  font-size: 14px;
  font-weight: 700;
  color: #45464e;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

nav > a:not(.cta):after,
.nav-dropdown > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: var(--transition);
}

nav > a:not(.cta):hover:after,
nav > a.active:not(.cta):after,
.nav-dropdown:hover > a:after {
  width: 100%;
}

nav > a:hover,
nav > a.active,
.nav-dropdown:hover > a {
  color: var(--blue);
}

/* DROPDOWN MENU OVERLAY (MATCHING SCREENSHOT 2) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-toggle .dropdown-arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
  color: var(--navy);
}

.nav-dropdown:hover .dropdown-toggle {
  background: var(--pink-light);
  color: var(--blue);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--blue);
}

/* Invisible hover bridge connecting button to popup menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: block;
}

#servicesDropdown.nav-dropdown .dropdown-menu,
.nav-dropdown .dropdown-menu {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  right: auto !important;
  min-width: 210px !important;
  width: max-content !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 15px 40px rgba(14, 65, 104, 0.16) !important;
  border: 1px solid rgba(24, 88, 138, 0.12) !important;
  padding: 8px !important;
  margin: 0 !important;
  z-index: 10000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  pointer-events: none !important;
  list-style: none !important;
}

#servicesDropdown.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.dropdown-menu a.dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  color: var(--text) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
  background: transparent !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

.dropdown-menu a.dropdown-item:after {
  display: none !important;
}

.dropdown-menu a.dropdown-item i {
  font-size: 16px !important;
  color: var(--pink) !important;
  transition: var(--transition) !important;
}

.dropdown-menu a.dropdown-item:hover {
  background: var(--pink-light) !important;
  color: var(--blue) !important;
  padding-left: 18px !important;
}

.dropdown-menu a.dropdown-item i {
  font-size: 16px;
  color: var(--pink);
  transition: var(--transition);
}

.dropdown-menu a.dropdown-item:hover {
  background: var(--pink-light) !important;
  color: var(--blue) !important;
  padding-left: 22px !important;
}

.dropdown-menu a.dropdown-item:hover i {
  color: var(--blue);
  transform: scale(1.15);
}

.cta {
  background: var(--blue);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(24, 88, 138, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 88, 138, 0.35);
}

.menu {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--blue);
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}

.menu:hover {
  background: var(--pink-light);
}

/* HERO SECTION */
.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 91, 149, 0.15), transparent 30%),
    radial-gradient(circle at 4% 85%, rgba(24, 88, 138, 0.08), transparent 32%),
    linear-gradient(120deg, #ffffff, #fff5f7);
  position: relative;
  padding: 60px 0;
}

.hero:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(227, 91, 149, 0.12);
  border-radius: 50%;
  right: -180px;
  top: -180px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 45px;
  position: relative;
  z-index: 1;
}

.kicker {
  display: inline-block;
  background: var(--pink-light);
  color: var(--blue);
  padding: 7px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 17px;
  border: 1px solid rgba(227, 91, 149, 0.2);
}

h1 {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 1.04;
  margin-bottom: 13px;
  letter-spacing: 0.5px;
}

h1 span {
  color: var(--pink);
}

.hero h2 {
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  gap: 8px;
}

.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 25px rgba(24, 88, 138, 0.25);
}

.primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(24, 88, 138, 0.35);
}

.secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.secondary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  text-align: center;
}

.hero-card img {
  width: 100%;
  max-width: 400px;
  margin: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  transition: var(--transition);
}

.hero-card img:hover {
  box-shadow: var(--shadow-hover);
}

.about-doctor-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 24px rgba(24, 88, 138, 0.18);
  display: block;
}

.badge {
  position: absolute;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 800;
  color: var(--navy);
  font-size: 13px;
  border: 1px solid var(--line);
  animation: float 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge i {
  font-size: 24px;
  color: var(--pink);
}

.badge strong {
  display: block;
  font-size: 18px;
  color: var(--blue-dark);
}

.badge.one {
  left: -15px;
  top: 35px;
}

.badge.two {
  right: -12px;
  bottom: 35px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* QUICK STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 35px 0;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item h3 {
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 13px;
  color: var(--pink-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTION STYLES */
.section {
  padding: 90px 0;
}

.heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 48px;
}

.heading small {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 6px;
}

.heading h2 {
  font-family: "Playfair Display", serif;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  margin: 8px 0 14px;
}

.heading p {
  color: var(--muted);
  font-size: 16px;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-box {
  background: linear-gradient(145deg, var(--pink-light), #f7f4fa);
  border-radius: 24px;
  padding: 50px 35px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.about-box .symbol-icon {
  font-size: 65px;
  color: var(--pink);
  margin-bottom: 12px;
}

.about-box h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 28px;
  margin-top: 10px;
}

.about-box p {
  color: var(--muted);
  font-weight: 600;
  margin-top: 5px;
}

.about-content h3 {
  font-family: "Playfair Display", serif;
  color: var(--blue);
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15px;
}

.qualifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.qualification {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  transition: var(--transition);
}

.qualification:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 91, 149, 0.1);
}

.qualification b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

.qualification span {
  font-size: 12px;
  color: var(--muted);
}

/* SERVICES SECTION */
.services {
  background: #fff8fa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(80, 30, 40, 0.03);
  display: flex;
  flex-direction: column;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(24, 88, 138, 0.2);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 24px;
  margin-bottom: 20px;
}

.service:nth-child(even) .icon {
  background: #eef5fc;
  color: var(--blue);
}

.service h3 {
  color: var(--blue-dark);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.service p {
  font-size: 14px;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--pink);
  gap: 10px;
}

/* FEATURE SPECIALITIES SECTION */
.feature {
  padding: 90px 0;
  background: linear-gradient(110deg, var(--blue-dark), #1d3557);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.feature h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.feature p {
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 16px;
}

.checks {
  display: grid;
  gap: 14px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
  font-size: 12px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat {
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat b {
  display: block;
  color: var(--blue);
  font-size: 26px;
  font-family: "Oswald", sans-serif;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* PROCESS SECTION */
.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}

.process-num {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(24, 88, 138, 0.25);
}

.process-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

/* APPOINTMENT BANNER */
.appointment {
  padding: 25px 0 90px;
}

.appointment-box {
  background: linear-gradient(110deg, var(--blue), #246B9D);
  border-radius: 24px;
  padding: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(24, 88, 138, 0.25);
}

.appointment-box:after {
  content: "+";
  position: absolute;
  right: 40px;
  top: -55px;
  font-size: 250px;
  color: rgba(255, 255, 255, 0.06);
  font-weight: 200;
  pointer-events: none;
}

.appointment-box h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.appointment-box p {
  opacity: 0.9;
  font-size: 16px;
}

.appointment-box .btn {
  background: #fff;
  color: var(--blue);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-size: 15px;
}

.appointment-box .btn:hover {
  background: var(--pink-light);
  color: var(--pink);
  transform: scale(1.03);
}

/* CONTACT SECTION */
.contact {
  background: #fff8fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--blue);
  font-size: 28px;
  margin-bottom: 24px;
}

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

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 18px;
}

.contact-row b {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.contact-row span {
  color: var(--muted);
  font-size: 14px;
}

/* FORM STYLES */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 88, 138, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* PAGE BANNER FOR SUBPAGES */
.page-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--pink-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* SEARCH & FILTER TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* FOOTER */
footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #ffffff;
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

footer h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
}

footer h3 span {
  color: var(--pink);
}

footer p, footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

footer a:hover {
  color: #fff;
  padding-left: 3px;
}

footer a {
  display: block;
  margin: 8px 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 25px;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    border-bottom: 3px solid var(--blue);
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  nav a.cta {
    text-align: center;
    margin-top: 10px;
    justify-content: center;
  }

  .menu {
    display: block;
  }

  /* On mobile, dropdown opens on tap, not hover */
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    margin-top: 6px;
    width: 100%;
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex !important;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .hero-grid,
  .about-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    padding: 50px 0;
  }

  .hero-card {
    margin-top: 20px;
  }

  .appointment-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar .hide-mobile {
    display: none;
  }

  .nav {
    height: 74px;
  }

  nav {
    top: 74px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .footer-brand img {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  h1 {
    font-size: 36px;
  }

  .badge {
    display: none;
  }

  .section {
    padding: 50px 0;
  }

  .heading h2 {
    font-size: 26px;
  }

  .service-grid,
  .process-grid,
  .qualifications,
  .stat-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature h2 {
    font-size: 26px;
  }

  .appointment-box {
    padding: 35px 22px;
  }

  .appointment-box h2 {
    font-size: 26px;
  }
}

/* SERVICES CAROUSEL & HEADER STYLES */
.services-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 10px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--blue);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-btn.prev-btn {
  left: -25px;
}

.slider-btn.next-btn {
  right: -25px;
}

.slider-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(24, 88, 138, 0.3);
  transform: translateY(-50%) scale(1.08);
}

.services-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 15px 0 30px;
}

.services-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.services-track .service {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.services-track .service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(24, 88, 138, 0.16);
  border-color: rgba(24, 88, 138, 0.25);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.card-icon-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--pink);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.service:nth-child(even) .card-icon-badge {
  color: var(--blue);
}

.service-content {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  color: var(--blue-dark);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
}

.service-content p {
  font-size: 14px;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 18px;
  line-height: 1.6;
}

@media (max-width: 1240px) {
  .slider-btn.prev-btn {
    left: 2px;
  }
  .slider-btn.next-btn {
    right: 2px;
  }
}

@media (max-width: 992px) {
  .services-track .service {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .services-track .service {
    flex: 0 0 100%;
  }
}


/* INSTAGRAM REELS SECTION STYLES */
.reels-section {
  background: linear-gradient(180deg, #ffffff, #fff5f8);
  padding: 85px 0;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
}

.reel-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(225, 48, 108, 0.16);
  border-color: rgba(225, 48, 108, 0.3);
}

.reel-embed-container {
  width: 100%;
  height: 440px;
  position: relative;
  background: #fafafa;
}

.reel-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px 18px 0 0;
}

.reel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.reel-btn:hover {
  opacity: 0.92;
  color: #ffffff;
}

/* ==========================================================================
   BRAND LOGO & LUXURY ACCENT ENHANCEMENTS
   ========================================================================== */
/* ==========================================================================
   BRAND LOGO & LUXURY ACCENT ENHANCEMENTS
   ========================================================================== */
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-large {
  height: 76px !important;
  max-height: 84px !important;
  width: auto !important;
  max-width: 320px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 3px 12px rgba(112, 12, 40, 0.18));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-logo-large {
  height: 80px !important;
  max-height: 90px !important;
  width: auto !important;
  max-width: 320px !important;
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.3s ease;
}

.footer-logo-large:hover {
  transform: scale(1.04);
}

/* BRAND TEXT TYPOGRAPHY */
.brand-text strong {
  font-family: "Oswald", "DM Sans", sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  color: var(--maroon);
  letter-spacing: 0.5px;
  display: block;
  line-height: 1.1;
  font-weight: 700;
}

.brand-text span {
  display: block;
  font-size: 11px;
  color: var(--rosegold-dark);
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* TOPBAR BURGUNDY THEME */
.topbar {
  background: var(--maroon-dark);
  color: var(--rosegold-light);
  border-bottom: 1px solid rgba(216, 155, 138, 0.2);
}

.topbar a {
  color: #ffffff;
}

.topbar a:hover {
  color: var(--rosegold);
}

/* HEADER & NAV BURGUNDY HIGHLIGHTS */
nav > a:hover,
.nav-dropdown:hover > a {
  color: var(--maroon) !important;
}

nav a.cta {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(112, 12, 40, 0.25);
  border-radius: 50px;
  padding: 10px 22px !important;
  font-weight: 700;
}

nav a.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(112, 12, 40, 0.35);
  background: linear-gradient(135deg, var(--maroon-light) 0%, #a31d43 100%);
}

/* HERO SECTION BURGUNDY & ROSE GOLD OVERHAUL */
.hero {
  background: linear-gradient(135deg, #FFF9F8 0%, #FDF0ED 50%, #FAF0EE 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(216, 155, 138, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .kicker {
  background: var(--rosegold-tint);
  color: var(--maroon);
  border: 1px solid var(--rosegold);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--maroon);
}

.hero h2 {
  color: var(--rosegold-dark);
}

.btn.primary {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 28px rgba(112, 12, 40, 0.25);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--maroon-light) 0%, #a31d43 100%);
  box-shadow: 0 14px 34px rgba(112, 12, 40, 0.35);
}

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

.btn.secondary:hover {
  background: var(--maroon);
  color: #ffffff;
}

/* STATS STRIP BURGUNDY ACCENTS */
.stats-strip {
  background: var(--maroon-dark);
  color: #ffffff;
}

.stat-item h3 {
  color: var(--rosegold);
  font-family: "Oswald", sans-serif;
  font-size: 38px;
}

/* SERVICE TABS CATEGORIES (LIKE DR ASMITA DONGARE) */
.service-category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.category-tab-btn {
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-tab-btn i {
  color: var(--rosegold-dark);
}

.category-tab-btn:hover,
.category-tab-btn.active {
  background: var(--maroon);
  color: #ffffff;
  border-color: var(--maroon);
  box-shadow: 0 8px 24px rgba(112, 12, 40, 0.2);
}

.category-tab-btn:hover i,
.category-tab-btn.active i {
  color: var(--rosegold);
}

/* SERVICE CARD ENHANCEMENT */
.service {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rosegold);
}

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-icon-badge {
  background: var(--maroon);
  color: var(--rosegold);
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  background: var(--rosegold-light);
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  margin-top: auto;
}

.service-link-btn:hover {
  background: var(--maroon);
  color: #ffffff;
  border-color: var(--maroon);
}

/* INTERACTIVE DETAIL MODAL POPUP */
.service-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 20, 26, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.service-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-box {
  background: #ffffff;
  width: min(720px, 96%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 25px 70px rgba(112, 12, 40, 0.3);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-modal-backdrop.active .service-modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rosegold-light);
  border: 1px solid var(--line);
  color: var(--maroon);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--maroon);
  color: #ffffff;
}

.modal-header-banner {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: #ffffff;
  padding: 35px 30px 25px;
  border-radius: 24px 24px 0 0;
}

.modal-header-banner h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-header-banner span {
  color: var(--rosegold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-body-content {
  padding: 30px;
  color: var(--text);
}

.modal-body-content h4 {
  color: var(--maroon);
  font-size: 17px;
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-body-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.modal-body-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.modal-body-content ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--maroon);
  position: absolute;
  left: 0;
  top: 8px;
}

.modal-cta-box {
  background: var(--rosegold-light);
  border: 1px solid var(--rosegold);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
}

@media (max-width: 600px) {
  .modal-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

/* FAQ ACCORDION SECTION STYLES */
.faq-section {
  background: #FFF9F8;
  padding: 85px 0;
}

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--rosegold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
}

.faq-question i {
  color: var(--maroon);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* FLOATING QUICK ACTION BUTTONS */
.floating-action-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.whatsapp:hover {
  transform: scale(1.1);
  background: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.float-btn.phone {
  background: var(--maroon);
}

.float-btn.phone:hover {
  transform: scale(1.1);
  background: var(--maroon-light);
  box-shadow: 0 12px 30px rgba(112, 12, 40, 0.4);
}

/* FOOTER BURGUNDY THEME */
footer {
  background: var(--maroon-dark);
  color: #ffffff;
  border-top: 4px solid var(--rosegold);
}

footer h3 {
  color: var(--rosegold);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  border-bottom: 2px solid rgba(216, 155, 138, 0.3);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

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

footer a:hover {
  color: var(--rosegold);
  padding-left: 4px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   SERVICES WE PROVIDE 3-COLUMN GRID (MATCHING DRASMITADONGARE.COM)
   ========================================================================== */
.services-homepage-section {
  padding: 85px 0;
  background: #ffffff;
}

.services-homepage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 45px;
}

@media (max-width: 992px) {
  .services-homepage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .services-homepage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.homepage-service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(112, 12, 40, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.homepage-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(112, 12, 40, 0.16);
  border-color: var(--rosegold);
}

.card-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

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

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

.homepage-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.homepage-card-body h4 {
  font-size: 21px;
  color: var(--maroon-dark);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.homepage-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-readmore-btn {
  display: inline-block;
  align-self: flex-start;
  background: var(--maroon);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(112, 12, 40, 0.2);
  border: none;
  cursor: pointer;
}

.card-readmore-btn:hover {
  background: var(--maroon-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(112, 12, 40, 0.3);
  color: #ffffff !important;
}