/* ============================================
   DR. PANDEY'S DENTAL, SKIN & HAIR HOSPITAL
   Delhi - Main Stylesheet
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --navy: #0b2545;
  --gold: #c9953a;
  --gold-light: #e8b860;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f2f7;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --green: #2d7a4f;
  --green-light: #e6f4ed;
  --red-accent: #c0392b;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 8px 40px rgba(11, 37, 69, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 7px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 149, 58, 0.4);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.btn-secondary:hover {
  background: #1a3a60;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
}
.btn-green {
  background: #25d366;
  color: white;
}
.btn-green:hover {
  background: #20b858;
  transform: translateY(-2px);
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a,
.top-bar span {
  color: rgba(255, 255, 255, 0.85);
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar .top-links {
  display: flex;
  gap: 20px;
}
.top-bar .top-contact {
  display: flex;
  gap: 16px;
}
.nabh-badge {
  background: var(--gold);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ---- HEADER / NAV ---- */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
.logo-text .brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text .tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}
.logo-text .nabh-tag {
  font-size: 0.62rem;
  color: var(--gold);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  padding: 8px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  position: relative;
}
nav a:hover,
nav a.active {
  color: var(--navy);
  background: var(--light-gray);
}
.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  border-radius: 25px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}

.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 0;
}
.dropdown a:hover {
  background: var(--light-gray);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    #1a3a70 60%,
    #0d2d56 100%
  );
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.hero-content {
  color: white;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 149, 58, 0.15);
  border: 1px solid rgba(201, 149, 58, 0.4);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  color: white;
  margin-bottom: 8px;
}
.hero h1 span {
  color: var(--gold);
}
.hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 16px 0 30px;
}
.hero-specialties {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.specialty-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 30px;
  color: white;
  font-size: 0.82rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
}

.hero-visual {
  position: relative;
}
.hero-img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1e4080, #0d2d56);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 4rem;
  /* padding: 40px; */
}
.floating-badge {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-family: "Poppins", sans-serif;
}
.floating-badge.top-right {
  top: 20px;
  right: -20px;
}
.floating-badge.bottom-left {
  bottom: 30px;
  left: -20px;
}
.fb-label {
  font-size: 0.7rem;
  color: var(--text-light);
}
.fb-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.fb-green {
  color: var(--green) !important;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-eyebrow {
  display: inline-block;
  background: var(--light-gray);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-mid);
}
.divider-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ---- SPECIALTIES CARDS ---- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.specialty-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--border);
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.specialty-card:hover .card-img img {
  transform: scale(1.05);
}
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.dental-bg {
  background: linear-gradient(135deg, #e8f4f8, #c3dce8);
}
.skin-bg {
  background: linear-gradient(135deg, #fde8d8, #f5c3a0);
}
.hair-bg {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.card-body {
  padding: 24px;
}
.card-body h3 {
  color: var(--navy);
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.treatment-list {
  list-style: none;
  margin-bottom: 20px;
}
.treatment-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.treatment-list li:last-child {
  border-bottom: none;
}
.treatment-list li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
}

/* ---- WHY CHOOSE US ---- */
.why-section {
  background: var(--navy);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.why-item {
  text-align: center;
  padding: 24px 16px;
}
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 149, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--gold);
  border: 1px solid rgba(201, 149, 58, 0.3);
}
.why-item h4 {
  color: white;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  margin: 0;
}

/* ---- DOCTOR SECTION ---- */
.doctor-section {
  background: var(--off-white);
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.doctor-img-wrap {
  position: relative;
}
.doctor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1e3a6e, #0d2d56);
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctor-credentials {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}
.doctor-credentials h4 {
  font-size: 0.85rem;
  font-family: "Poppins", sans-serif;
  margin-bottom: 4px;
}
.doctor-credentials p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.doctor-content {
  padding-left: 20px;
}
.doctor-content .section-eyebrow {
  margin-bottom: 16px;
}
.doctor-content h2 {
  color: var(--navy);
  margin-bottom: 8px;
}
.doctor-title {
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}
.doctor-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-mid);
}
.feature-chip span {
  font-size: 1.1rem;
}

/* ---- TREATMENTS GRID ---- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.treatment-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}
.treatment-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.treatment-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.treatment-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.treatment-card p {
  font-size: 0.82rem;
  margin: 0;
}

/* ---- RESULTS / BEFORE-AFTER ---- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
}
.ba-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.ba-before {
  background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
}
.ba-after {
  background: linear-gradient(135deg, #e8f5e9, #a5d6a7);
}
.ba-label {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.result-info {
  padding: 16px;
  background: white;
}
.result-info h4 {
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.result-info p {
  font-size: 0.78rem;
  margin: 0;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--light-gray);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
}
.author-treatment {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ---- FAQ ---- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--off-white);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  background: white;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 18px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ---- APPOINTMENT FORM ---- */
.appointment-section {
  background: var(--navy);
}
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.appt-info {
  color: white;
}
.appt-info h2 {
  color: white;
  margin-bottom: 16px;
}
.appt-info p {
  color: rgba(255, 255, 255, 0.8);
}
.appt-features {
  list-style: none;
  margin: 24px 0;
}
.appt-features li {
  padding: 8px 0;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.custom_li li {
  color: #fff !important;
}
.appt-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}
.appt-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.appt-form h3 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* ---- OFFER BANNER ---- */
.offer-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a030 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  text-align: center;
  margin: 40px 0;
}
.offer-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.offer-banner .big-offer {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin: 8px 0;
}
.offer-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
}
.breadcrumb-list li a {
  color: var(--navy);
}
.breadcrumb-list li a:hover {
  color: var(--gold);
}
.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a70 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  color: white;
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- SERVICE PAGE CONTENT ---- */
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.service-main {
}
.service-sidebar {
}
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.sidebar-card h4 {
  color: var(--navy);
  margin-bottom: 14px;
}
.sidebar-link-list {
  list-style: none;
}
.sidebar-link-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
}
.sidebar-link-list li:last-child a {
  border-bottom: none;
}
.sidebar-link-list li a:hover {
  color: var(--navy);
}
.sidebar-link-list li a::after {
  content: "→";
  color: var(--gold);
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 {
  color: white;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 149, 58, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail h5 {
  color: white;
  font-size: 0.85rem;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}
.contact-detail p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
}
.contact-detail a {
  color: rgba(255, 255, 255, 0.75);
}
.contact-detail a:hover {
  color: var(--gold);
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}
.map-placeholder {
  /* height: 220px; */
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ---- FOOTER ---- */
footer {
  background: #060f1e;
  color: rgba(255, 255, 255, 0.75);
}
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo-text .brand {
  color: white;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--gold);
  color: white;
}
.footer-col h5 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links li a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer-links li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
  color: #fff;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.6rem;
  color: white;
  animation: pulse-wa 2s infinite;
  text-decoration: none;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* ---- INFO BOX ---- */
.info-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: #1a4a30;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .doctor-grid {
    grid-template-columns: 1fr;
  }
  .doctor-content {
    padding-left: 0;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .appt-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-mobile-open nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .top-bar .top-links {
    display: none;
  }
  .doctor-credentials {
    position: static;
    margin-top: 20px;
  }
  .hero-stats {
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section-pad {
    padding: 50px 0;
  }
}

/* ==================  */
.before-after {
  display: flex;
  overflow: hidden;
  border-radius: 15px;
}

.ba-side {
  position: relative;
  width: 50%;
}

.ba-side img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}

/* .ba-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #0d6efd;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 1px;
} */

.ba-after .ba-label {
  background: #198754;
}
.self-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tablet */
@media (max-width: 991px) {
  .self-about {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .self-about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ===================== himanshu  */
.doctor-profile-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  overflow: hidden;
}

.doctor-profile-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.doctor-content .doctor-tag {
  display: inline-block;
  background: #c9953a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.doctor-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.doctor-degree {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.doctor-degree span {
  background: #eef6ff;
  color: #0d6efd;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
}

.doctor-content h4 {
  color: #00a896;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.doctor-content p {
  color: #666;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 30px;
}

.doctor-stats {
  display: flex;
  gap: 20px;
  /* flex-wrap: wrap; */
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .doctor-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }
}

.stat-box {
  background: #f8fbff;
  border-radius: 18px;
  padding: 20px;
  min-width: 140px;
  text-align: center;
  transition: 0.4s;
}

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

.stat-box h3 {
  color: #0d6efd;
  font-size: 32px;
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-box span {
  font-size: 14px;
  color: #666;
}

.doctor-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #c9953a, #c9953a96);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.4s;
}

.doctor-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
}

.doctor-image {
  position: relative;
  text-align: center;
}

.image-circle {
  width: 420px;
  height: 420px;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.15),
    rgba(0, 168, 150, 0.15)
  );
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.doctor-image img {
  position: relative;
  z-index: 2;
  max-width: 400px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .doctor-profile-card {
    padding: 30px;
  }

  .doctor-content {
    text-align: center;
    margin-top: 30px;
  }

  .doctor-degree,
  .doctor-stats {
    justify-content: center;
  }

  .doctor-content h2 {
    font-size: 36px;
  }

  .image-circle {
    width: 320px;
    height: 320px;
  }

  .doctor-image img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .doctor-profile-section {
    padding: 60px 0;
  }

  .doctor-profile-card {
    padding: 20px;
    border-radius: 20px;
  }

  .doctor-content h2 {
    font-size: 28px;
  }

  .doctor-content h4 {
    font-size: 20px;
  }

  .doctor-stats {
    flex-direction: column;
  }

  .stat-box {
    width: 100%;
  }

  .image-circle {
    width: 250px;
    height: 250px;
  }

  .doctor-image img {
    max-width: 240px;
  }
}
/* ===================== himanshu end */

.blog-card img {
  height: 300px;
}

@media (max-width: 576px) {
  .blog-card img {
    height: auto;
  }
  
  .doctor-btn {
    margin-bottom: 27px !important;
}
}

.logo img {
  width: 92px !important;
}

.custom-logo img {
  width: 120px !important;
  background: #fff;
  padding: 10px;
  border-radius: 19px;
}
