/* =========================================
   COSMOHS PLASTIC SURGERY - PROFESSIONAL THEME
   Author: Custom Build 2024
   ========================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --gold:    #C9A84C;
  --gold-lt: #E8D5A3;
  --gold-dk: #9A7830;
  --navy:    #0B1F3A;
  --navy-lt: #163057;
  --white:   #FFFFFF;
  --off-white: #F8F5F0;
  --text:    #2C2C2C;
  --text-lt: #666666;
  --border:  #E5E0D8;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(11,31,58,.08);
  --shadow-hover: 0 8px 40px rgba(11,31,58,.15);
  --transition: all .3s ease;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-off { background: var(--off-white); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.w-100 { width: 100%; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header .divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.section-header p { color: var(--text-lt); max-width: 600px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 10px; font-size: 13px; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); margin-right: 5px; }
.topbar-right a { display: flex; align-items: center; gap: 5px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.logo img { height: 60px; width: auto; max-width: 260px; }

/* NAV */
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--gold); }
.main-nav > ul > li > a .arrow { font-size: 10px; margin-left: 3px; transition: var(--transition); }
.main-nav > ul > li:hover > a .arrow { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 30px rgba(11, 31, 58, 0.15);
  border-top: 4px solid var(--gold);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 200;
}

.main-nav > ul > li:hover .dropdown { 
  opacity: 1; 
  visibility: visible; 
  transform: translateY(0); 
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s ease;
  font-weight: 500;
}

.dropdown li a:hover { 
  background: var(--off-white); 
  color: var(--gold); 
  padding-left: 26px;
}

/* HEADER CTA */
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; flex-direction: column; text-align: right; }
.header-phone span:first-child { font-size: 11px; color: var(--text-lt); }
.header-phone span:last-child { font-size: 14px; font-weight: 700; color: var(--navy); }

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 60%, #1a3a6e 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/banner2.webp') center/cover no-repeat;
  opacity: .18;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); display: block; }
.hero p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: 16px 16px 60% 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.hero-badge-float {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.hero-badge-float .icon { width: 44px; height: 44px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; flex-shrink: 0; }
.hero-badge-float .info { }
.hero-badge-float .info strong { display: block; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.hero-badge-float .info span { font-size: 12px; color: var(--text-lt); }

/* ---- MARQUEE TRUST BAR ---- */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-item i { color: var(--gold); font-size: 18px; }
@keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 28px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-lt); line-height: 1.65; margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
}
.service-link:hover { gap: 10px; }

/* ---- STATS BANNER ---- */
.stats-banner {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item .number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .label { font-size: 14px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }

/* ---- WHY US ---- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-img { position: relative; }
.why-us-img img { border-radius: 12px; box-shadow: var(--shadow-hover); }
.why-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.why-badge .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; display: block; }
.why-badge .txt { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.why-list { margin-top: 28px; }
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.why-item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: var(--transition);
}
.why-item:hover .why-item-icon { background: var(--gold); color: var(--white); }
.why-item-text h4 { margin-bottom: 4px; font-size: 1rem; }
.why-item-text p { font-size: 14px; color: var(--text-lt); margin: 0; }

/* ---- DOCTOR PROFILE ---- */
.doctor-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 380px 1fr;
}
.doctor-photo { position: relative; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 480px; }
.doctor-photo .exp-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
}
.doctor-info { padding: 48px; }
.doctor-info .eyebrow { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.doctor-info h2 { margin-bottom: 6px; }
.doctor-info .designation { color: var(--text-lt); font-size: 15px; margin-bottom: 24px; }
.doctor-info p { font-size: 15px; color: var(--text-lt); line-height: 1.75; }
.doctor-credentials { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.credential-badge {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.doctor-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-lt);
  font-size: 15px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px; left: 12.5%;
  width: 75%; height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.step-card h4 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: 13.5px; color: var(--text-lt); }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-hover); border-color: transparent; }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 15px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-loc { font-size: 12px; color: var(--text-lt); }
.quote-icon {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 40px;
  color: var(--off-white);
  line-height: 1;
  font-family: Georgia, serif;
}

/* ---- APPOINTMENT FORM ---- */
.appointment-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.appointment-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/call-bg.webp') center/cover no-repeat;
  opacity: .06;
}
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.appointment-info h2 { color: var(--white); }
.appointment-info p { color: rgba(255,255,255,.75); margin: 16px 0 32px; }
.contact-list { }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.contact-item strong { display: block; color: var(--black); font-size: 14px; }
.contact-item span { font-size: 13px; color: var(--black); }

/* FORM */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-hover);
}
.form-card h3 { margin-bottom: 8px; }
.form-card p { font-size: 14px; color: var(--text-lt); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); }
.form-control::placeholder { color: #aaa; }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 20px; }

/* ---- BLOG CARDS ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: transparent; }
.blog-card-img { position: relative; overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-body { padding: 24px; }
.blog-date { font-size: 12px; color: var(--text-lt); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: 14px; color: var(--text-lt); margin: 0 0 16px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { gap: 9px; }

/* ---- BREADCRUMB ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/bread-bg.jpg') center/cover;
  opacity: .1;
}
.breadcrumb-inner { position: relative; z-index: 1; }
.breadcrumb-inner h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.5rem,3vw,2.2rem); }
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.breadcrumb-nav a { color: var(--gold-lt); }
.breadcrumb-nav span { color: rgba(255,255,255,.5); }
.breadcrumb-nav .current { color: rgba(255,255,255,.7); }

/* ---- FAQ ---- */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--navy); color: var(--white); }
.faq-question.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  transition: var(--transition);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { padding: 20px 24px; max-height: 500px; }
.faq-answer p { font-size: 14.5px; color: var(--text-lt); margin: 0; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(11,31,58,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 28px;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- NEWSLETTER STRIP ---- */
.newsletter-strip {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-lt) 100%);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text h2 { color: var(--white); margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,.7); margin: 0; }
.newsletter-form { display: flex; gap: 12px; min-width: 400px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #050F1E;
  color: rgba(255,255,255,.7);
}
.footer-top {
  padding: 70px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; letter-spacing: .5px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { color: var(--gold); font-size: 10px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  gap: 16px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ---- PRELOADER ---- */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-ring {
  width: 50px; height: 50px;
  border: 3px solid rgba(201,168,76,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- PAGE INNER CONTENT ---- */
.inner-content { padding: 70px 0; }
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 28px;
}
.treatment-card h3 { color: var(--navy); margin-bottom: 12px; }
.treatment-card p { color: var(--text-lt); font-size: 15px; line-height: 1.8; }

/* ---- CONTACT PAGE ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 450px; border: none; }

/* ---- SUCCESS STORIES / GALLERY ---- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-hover); }
.story-card img { width: 100%; height: 240px; object-fit: cover; }
.story-body { padding: 24px; }
.story-body h3 { margin-bottom: 8px; font-size: 1rem; }
.story-body p { font-size: 14px; color: var(--text-lt); margin: 0; }

/* ---- BLOG DETAIL ---- */
.blog-detail-header { margin-bottom: 32px; }
.blog-detail-header h1 { margin-bottom: 12px; }
.blog-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-lt); }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--gold); }
.blog-featured-img { border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.blog-featured-img img { width: 100%; max-height: 480px; object-fit: cover; }
.blog-body { font-size: 16px; line-height: 1.85; color: var(--text); }
.blog-body h2,h3,h4 { margin: 32px 0 16px; }
.blog-body p { margin-bottom: 20px; }
.blog-body img { border-radius: 8px; margin: 20px 0; }
.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }

/* ---- ADMIN LINK ---- */
.admin-fab {
  position: fixed;
  bottom: 30px; left: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
  opacity: .6;
}
.admin-fab:hover { opacity: 1; transform: translateY(-2px); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: 1fr; }
  .appointment-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-width: auto; width: 100%; }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-hover); padding: 16px; border-top: 2px solid var(--gold); }
  .main-nav.open ul { flex-direction: column; gap: 0; }
  .main-nav.open > ul > li > a { padding: 12px 16px; border-radius: 0; border-bottom: 1px solid var(--border); }
  .main-nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0; background: var(--off-white); }
  .hero { min-height: 75vh; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stories-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hero-badge-float { display: none; }
}