@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --gold: #b8975a;
  --gold-light: #d4b483;
  --gold-dark: #8a6f3c;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #888;
  --lgray: #cccccc;
  --white: #f8f4ef;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%; background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,151,90,0.18);
  transition: padding .3s; gap: 12px;
}
.nav-logo { cursor: pointer; }
.nav-logo img { height: 46px; filter: brightness(1.1); }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  color: var(--lgray); text-decoration: none; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: color .3s;
  padding: 8px 12px; position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 1px; background: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 9px 20px;
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; transition: all .3s; white-space: nowrap; font-family: 'Jost', sans-serif;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── BUTTONS ── */
.btn {
  cursor: pointer; font-family: 'Jost', sans-serif; font-size: 11.5px;
  letter-spacing: 2.2px; text-transform: uppercase; text-decoration: none;
  transition: all .3s; display: inline-flex; align-items: center; gap: 8px;
  border: none; font-weight: 300;
}
.btn-primary { background: var(--gold); color: var(--black); padding: 14px 36px; font-weight: 500; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid rgba(184,151,90,0.5); color: var(--gold-light); padding: 14px 36px; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTION COMMONS ── */
.sec { padding: 84px 5%; }
.sec-sm { padding: 50px 5%; }
.sec-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; display: block; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.8vw, 3rem); font-weight: 300; line-height: 1.2; color: var(--white); margin-bottom: 16px; }
.sec-title em { font-style: italic; color: var(--gold-light); }
.sec-desc { font-size: 14px; line-height: 1.9; color: var(--gray); max-width: 560px; }
.gold-line { width: 48px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.tc { text-align: center; }
.tc .gold-line { margin-left: auto; margin-right: auto; }
.tc .sec-desc { margin: 0 auto; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 116px 5% 56px; background: var(--dark2);
  border-bottom: 1px solid rgba(184,151,90,0.12);
}

/* ── STATS ── */
.stats-bar { background: var(--dark2); border-top: 1px solid rgba(184,151,90,0.1); border-bottom: 1px solid rgba(184,151,90,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 38px 20px; border-right: 1px solid rgba(184,151,90,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold); font-weight: 300; display: block; }
.stat-lbl { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 5px; }

/* ── FEATURE LIST ── */
.feat-list { list-style: none; margin-top: 22px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(184,151,90,0.08); font-size: 13.5px; color: var(--lgray); line-height: 1.7; }
.feat-list li:last-child { border-bottom: none; }
.fchk { width: 18px; height: 18px; min-width: 18px; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 2px; font-size: 9px; color: var(--gold); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(184,151,90,0.1); }
.svc-card { background: var(--dark); overflow: hidden; position: relative; cursor: pointer; transition: all .35s; text-decoration: none; display: block; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(184,151,90,0.07),transparent 60%); opacity: 0; transition: opacity .35s; z-index: 1; }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { background: #141414; }
.svc-img { width: 100%; height: 185px; object-fit: cover; filter: grayscale(40%) brightness(.75); transition: filter .35s; display: block; }
.svc-card:hover .svc-img { filter: grayscale(10%) brightness(.9); }
.svc-body { padding: 26px 26px 32px; position: relative; z-index: 2; }
.svc-num { position: absolute; top: 12px; right: 16px; font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; color: rgba(184,151,90,0.07); font-weight: 300; line-height: 1; z-index: 1; }
.svc-icon { margin-bottom: 14px; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--white); margin-bottom: 10px; font-weight: 400; }
.svc-desc { font-size: 13px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; }
.svc-link { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap .3s; }
.svc-card:hover .svc-link { gap: 10px; }

/* ── TREATMENT DETAIL ── */
.treatment-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.treatment-hero-img { width: 100%; height: 420px; object-fit: cover; filter: brightness(.85); border: 1px solid rgba(184,151,90,0.15); margin-bottom: 36px; }
.treatment-body { font-size: 14.5px; line-height: 2; color: var(--lgray); }
.treatment-body p { margin-bottom: 16px; }
.treatment-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-light); margin: 28px 0 12px; font-weight: 400; }
.treatment-body ul { list-style: none; padding: 0; margin-bottom: 16px; }
.treatment-body ul li { padding: 9px 0; border-bottom: 1px solid rgba(184,151,90,0.08); display: flex; gap: 12px; }
.treatment-body ul li::before { content: "✦"; color: var(--gold); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.sidebar-box { background: var(--dark2); border: 1px solid rgba(184,151,90,0.15); padding: 32px; position: sticky; top: 90px; }
.sidebar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-light); margin-bottom: 20px; }
.sidebar-row { padding: 12px 0; border-bottom: 1px solid rgba(184,151,90,0.08); font-size: 13px; color: var(--lgray); display: flex; justify-content: space-between; gap: 8px; }
.sidebar-row span { color: var(--gold); text-align: right; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; margin-bottom: 36px; transition: color .3s; }
.back-link:hover { color: var(--gold); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { background: var(--dark); border: 1px solid rgba(184,151,90,0.1); padding: 30px 26px; transition: border-color .3s, transform .3s; position: relative; }
.review-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: rgba(184,151,90,0.1); line-height: 1; }
.review-card:hover { border-color: rgba(184,151,90,0.3); transform: translateY(-3px); }
.review-stars { color: var(--gold); font-size: 12.5px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 13px; line-height: 1.85; color: var(--lgray); margin-bottom: 20px; font-style: italic; }
.review-auth { display: flex; align-items: center; gap: 11px; border-top: 1px solid rgba(184,151,90,0.1); padding-top: 14px; }
.review-av { width: 34px; height: 34px; min-width: 34px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--black); }
.review-auth strong { display: block; font-size: 13px; color: var(--white); font-weight: 400; margin-bottom: 1px; }
.review-auth span { font-size: 10.5px; color: var(--gray); letter-spacing: 1px; }
.rating-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--dark2); border: 1px solid rgba(184,151,90,0.2); padding: 11px 24px; margin-top: 14px; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(184,151,90,0.12); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--white); font-weight: 400; transition: color .3s; }
.faq-q:hover { color: var(--gold-light); }
.faq-q.open { color: var(--gold); }
.faq-icon { font-size: 22px; color: var(--gold); transition: transform .3s; flex-shrink: 0; font-family: 'Cormorant Garamond', serif; line-height: 1; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .3s; }
.faq-a.open { max-height: 500px; padding-bottom: 22px; }
.faq-a p { font-size: 14px; line-height: 1.9; color: var(--gray); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--dark2); border: 1px solid rgba(184,151,90,0.1); overflow: hidden; text-decoration: none; display: block; transition: border-color .3s, transform .3s; }
.blog-card:hover { border-color: rgba(184,151,90,0.3); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; filter: grayscale(30%) brightness(.75); transition: filter .3s; display: block; }
.blog-card:hover .blog-card-img { filter: grayscale(10%) brightness(.9); }
.blog-card-body { padding: 26px 24px 30px; }
.blog-tag { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 10px; font-weight: 400; line-height: 1.3; }
.blog-excerpt { font-size: 13px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; }
.blog-meta { font-size: 11px; color: var(--gray); letter-spacing: 1px; }
.blog-hero-img { width: 100%; height: 380px; object-fit: cover; filter: brightness(.8); margin-bottom: 44px; }
.blog-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: var(--gold-light); margin: 32px 0 14px; font-weight: 400; }
.blog-content p { font-size: 14.5px; line-height: 2; color: var(--lgray); margin-bottom: 16px; }
.blog-content ul { list-style: none; padding: 0; margin-bottom: 16px; }
.blog-content ul li { padding: 9px 0; border-bottom: 1px solid rgba(184,151,90,0.08); font-size: 14px; color: var(--lgray); display: flex; gap: 12px; }
.blog-content ul li::before { content: "✦"; color: var(--gold); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.blog-detail-wrap { max-width: 780px; margin: 0 auto; }

/* ── BRANCH ── */
.branch-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; padding: 116px 5% 64px; background: var(--dark2); border-bottom: 1px solid rgba(184,151,90,0.12); }
.branch-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(184,151,90,0.3); padding: 7px 18px; margin-bottom: 22px; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.branch-hero-img { height: 360px; object-fit: cover; width: 100%; filter: brightness(.8); border: 1px solid rgba(184,151,90,0.15); }
.contact-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.ci { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.ci-icon { width: 40px; height: 40px; min-width: 40px; border: 1px solid rgba(184,151,90,0.3); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.ci-text { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.ci-text strong { color: var(--white); display: block; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; font-weight: 400; }
.ci-text a { color: var(--gold-light); text-decoration: none; }
.ci-text a:hover { color: var(--gold); }
.map-wrap { border: 1px solid rgba(184,151,90,0.15); overflow: hidden; position: relative; }
.map-wrap iframe { width: 100%; height: 340px; display: block; filter: grayscale(100%) brightness(.7) sepia(30%); transition: filter .35s; }
.map-wrap:hover iframe { filter: grayscale(50%) brightness(.8) sepia(15%); }
.map-lbl { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top,rgba(10,10,10,.92),transparent); padding: 18px 16px 12px; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.strip3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.strip-img { height: 210px; object-fit: cover; width: 100%; filter: brightness(.8); transition: filter .35s; }
.strip-img:hover { filter: brightness(.95); }
.branch-tab-bar { display: flex; border-bottom: 1px solid rgba(184,151,90,0.15); background: var(--dark); }
.branch-tab { padding: 18px 36px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; color: var(--gray); border: none; background: none; font-family: 'Jost', sans-serif; transition: all .3s; border-bottom: 2px solid transparent; }
.branch-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.branch-tab:hover:not(.active) { color: var(--gold-light); }
.branch-content { display: none; }
.branch-content.active { display: block; }

/* ── DOCTORS ── */
.doctors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.doctor-card { background: var(--dark2); border: 1px solid rgba(184,151,90,0.1); overflow: hidden; transition: border-color .3s, transform .3s; }
.doctor-card:hover { border-color: rgba(184,151,90,0.3); transform: translateY(-3px); }
.doctor-img { width: 100%; height: 280px; object-fit: cover; filter: grayscale(20%) brightness(.85); }
.doctor-body { padding: 26px 24px 30px; }
.doctor-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 6px; font-weight: 400; }
.doctor-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.doctor-desc { font-size: 13px; line-height: 1.8; color: var(--gray); }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.doctor-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid rgba(184,151,90,0.25); color: var(--gold-light); padding: 4px 10px; }

/* ── APPOINTMENT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark2); border: 1px solid rgba(184,151,90,0.15); color: var(--white); padding: 13px 15px; font-family: 'Jost', sans-serif; font-size: 14px; outline: none; transition: border-color .3s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1/-1; background: var(--gold); color: var(--black); border: none; padding: 16px 44px; font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; transition: background .3s; font-weight: 500; width: 100%; }
.form-submit:hover { background: var(--gold-light); }

/* ── SOCIAL / IG ── */
.social-sec { background: var(--dark2); padding: 64px 5%; text-align: center; border-top: 1px solid rgba(184,151,90,0.1); }
.ig-link { display: inline-flex; align-items: center; gap: 12px; border: 1px solid rgba(184,151,90,0.3); padding: 16px 34px; text-decoration: none; color: var(--gold-light); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-top: 28px; transition: all .3s; }
.ig-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer { background: #060606; border-top: 1px solid rgba(184,151,90,0.12); padding: 44px 5%; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo img { height: 40px; }
.footer-text { font-size: 11.5px; color: var(--gray); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 11.5px; color: var(--gray); text-decoration: none; letter-spacing: 1px; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 26px; right: 26px; z-index: 300; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; text-decoration: none; box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: transform .3s; }
.wa-btn:hover { transform: scale(1.1); }

/* ── ABOUT GRID ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-img-main { grid-column: 1/-1; height: 270px; object-fit: cover; width: 100%; filter: brightness(.85); }
.about-img-sm { height: 170px; object-fit: cover; width: 100%; filter: brightness(.8); }
.about-box { background: var(--dark2); border: 1px solid rgba(184,151,90,0.15); padding: 36px; }
.about-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic; color: var(--gold-light); line-height: 1.5; margin-bottom: 16px; }
.about-sub { font-size: 13.5px; color: var(--gray); line-height: 1.85; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.animate { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid, .doctors-grid { grid-template-columns: 1fr; }
  .about-grid, .treatment-grid, .branch-hero-grid, .contact-2col, .strip3 { grid-template-columns: 1fr; }
  .reviews-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  footer .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .branch-hero-grid { padding-top: 100px; }
}

/* ════════════════════════════════
   MOBILE RESPONSIVE — Full Overhaul
   ════════════════════════════════ */

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all .3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 205;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  backdrop-filter: blur(16px);
  overflow-y: auto;
  padding-top: 60px;
  padding-bottom: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--lgray);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 14px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(184,151,90,0.08);
  transition: color .3s;
  flex-shrink: 0;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  padding: 14px 36px !important;
}
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color .3s;
}
.mobile-nav-close:hover { color: var(--gold); }

/* ── 768px — Tablet ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { padding: 12px 5%; }

  /* Section padding */
  .sec { padding: 56px 5%; }
  .sec-sm { padding: 36px 5%; }
  .page-header { padding: 90px 5% 40px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-num { font-size: 2.2rem; }
  .stat-item { padding: 28px 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-imgs { grid-template-columns: 1fr 1fr; }
  .about-img-main { height: 220px; }
  .about-img-sm { height: 130px; }
  .about-box { padding: 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-img { height: 200px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-hero-img { height: 220px; }

  /* Treatment */
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-hero-img { height: 240px; }
  .t-hero-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .t-img { height: 240px; }
  .treatment-nav { top: 62px; gap: 4px; padding: 14px 5%; }
  .t-nav-btn { font-size: 10px; padding: 6px 12px; }

  /* Branch */
  .branch-hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 90px 5% 48px; }
  .branch-hero-img { height: 240px; }
  .contact-2col { grid-template-columns: 1fr; gap: 32px; }
  .strip3 { grid-template-columns: 1fr; }
  .strip3 .strip-img:nth-child(n+2) { display: none; }
  .branch-tabs { top: 62px; }
  .btab { padding: 14px 20px; font-size: 11px; }

  /* Doctors */
  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-profile { grid-template-columns: 1fr !important; gap: 24px; padding: 40px 5%; }
  .doctor-profile:nth-child(even) .doctor-profile-img,
  .doctor-profile:nth-child(even) .doctor-profile-content { order: unset; }
  .doctor-profile-img { height: 280px; object-fit: cover; }
  .doctor-profile-img-placeholder { aspect-ratio: unset; height: 200px; }
  .team-strip { grid-template-columns: repeat(2,1fr); }

  /* FAQ */
  .faq-list { max-width: 100%; }
  .faq-q { font-size: 14px; }
  .faq-cats { gap: 6px; }

  /* Randevu */
  .randevu-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }

  /* Hizmetler */
  .hizmet-big-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; gap: 14px; }

  /* Mini services (home) */
  .mini-services { grid-template-columns: repeat(2,1fr); }

  /* Hero */
  .hero-logo { width: 130px; margin-bottom: 22px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 3px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  #toothCanvas { display: none !important; }

  /* CTA band */
  .gold-cta-band { flex-direction: column !important; gap: 20px; text-align: center; }

  /* Map */
  .map-wrap iframe { height: 260px; }

  /* Sidebar sticky off on mobile */
  .sidebar-box { position: static !important; }

  /* Social */
  .social-sec { padding: 48px 5%; }
  .ig-link { padding: 14px 24px; font-size: 11px; }

  /* WA button */
  .wa-btn { width: 46px; height: 46px; font-size: 22px; bottom: 20px; right: 18px; }
}

/* ── 480px — Small Mobile ── */
@media (max-width: 480px) {
  nav { padding: 11px 4%; }
  .nav-logo img { height: 38px; }

  .sec { padding: 44px 4%; }
  .page-header { padding: 80px 4% 36px; }

  .sec-title { font-size: 1.65rem; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 1.9rem; }
  .stat-lbl { font-size: 9.5px; letter-spacing: 1.5px; }
  .stat-item { padding: 22px 10px; }

  .about-imgs { grid-template-columns: 1fr; }
  .about-img-sm:last-child { display: none; }
  .about-img-main { height: 200px; }

  .mini-services { grid-template-columns: repeat(2,1fr); }
  .mini-svc { padding: 22px 14px; }
  .mini-svc-icon { font-size: 1.6rem; margin-bottom: 8px; }
  .mini-svc-name { font-size: 1rem; }

  .svc-body { padding: 20px 20px 26px; }
  .svc-name { font-size: 1.2rem; }

  .review-card { padding: 22px 18px; }
  .review-text { font-size: 12.5px; }

  .blog-card-body { padding: 18px 18px 22px; }
  .blog-title { font-size: 1.15rem; }

  .branch-badge { font-size: 9.5px; padding: 6px 14px; }

  .hizmet-big-card { padding: 30px 22px; }
  .hizmet-name { font-size: 1.4rem; }

  .faq-q { font-size: 13px; padding: 18px 0; gap: 12px; }

  .doctor-profile { padding: 32px 4%; }
  .team-strip { grid-template-columns: repeat(2,1fr); }
  .team-mini { padding: 22px 14px; }

  .randevu-grid { gap: 28px; }
  .info-card { padding: 24px 20px; }

  .footer-links { gap: 10px; }
  .footer-links a { font-size: 11px; }

  .mobile-nav a { font-size: 1.2rem; padding: 15px 30px; }

  .form-submit { font-size: 11px; letter-spacing: 1.8px; padding: 14px; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 12px; font-size: 13px; }

  .btn { font-size: 10.5px; letter-spacing: 1.8px; padding: 13px 28px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .map-wrap iframe { height: 220px; }

  .subelerimiz .randevu-grid { grid-template-columns: 1fr; }
}

/* ── Touch tap highlight fix ── */
a, button { -webkit-tap-highlight-color: rgba(184,151,90,0.15); }

/* ── Smooth scroll for mobile ── */
@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
}

/* ── Image lazy loading placeholder ── */
img { loading: lazy; }

/* CTA Band responsive */
.gold-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .gold-cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 5% !important;
  }
  .gold-cta-band .btn {
    width: auto;
    min-width: 200px;
    justify-content: center;
  }
  .gold-cta-band h3 {
    font-size: 1.5rem !important;
  }
}

/* Clickable review cards */
a.review-card { color: inherit; }
a.review-card:hover {
  border-color: rgba(184,151,90,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(184,151,90,0.08);
}
a.review-card .review-auth span[style] {
  opacity: 0;
  transition: opacity .3s;
}
a.review-card:hover .review-auth span[style] {
  opacity: 1;
}

/* ── Clickable Review Cards ── */
a.review-card {
  color: inherit;
  cursor: pointer;
}
a.review-card:hover {
  border-color: rgba(184,151,90,0.45);
  transform: translateY(-4px);
  background: #141414;
}
a.review-card .review-auth span:last-child {
  opacity: 0;
  transition: opacity .3s;
}
a.review-card:hover .review-auth span:last-child {
  opacity: 1;
}

/* ── Mini Review Cards ── */
.mini-reviews-section {
  padding: 60px 5%;
}
.mini-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.mini-reviews-header-left { display: flex; align-items: center; gap: 20px; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1px solid rgba(184,151,90,0.2);
  padding: 10px 18px;
}
.google-badge .g-stars { color: #f4b942; font-size: 15px; letter-spacing: 1px; }
.google-badge .g-score { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.google-badge .g-label { font-size: 10.5px; color: var(--gray); letter-spacing: 1px; }
.mini-reviews-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-review-card {
  background: var(--dark2);
  border: 1px solid rgba(184,151,90,0.1);
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.mini-review-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: rgba(184,151,90,0.1);
  line-height: 1;
}
.mini-review-card:hover {
  border-color: rgba(184,151,90,0.35);
  transform: translateY(-3px);
}
.mini-review-stars { color: #f4b942; font-size: 12px; letter-spacing: 1.5px; margin-bottom: 10px; }
.mini-review-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--lgray);
  font-style: italic;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mini-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(184,151,90,0.08);
  padding-top: 12px;
}
.mini-review-av {
  width: 30px; height: 30px; min-width: 30px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--black);
}
.mini-review-name { font-size: 12.5px; color: var(--white); font-weight: 400; }
.mini-review-loc { font-size: 10.5px; color: var(--gray); letter-spacing: 0.5px; }
.mini-review-google { margin-left: auto; font-size: 10px; color: var(--gold); letter-spacing: 1px; opacity: 0; transition: opacity .3s; white-space: nowrap; }
.mini-review-card:hover .mini-review-google { opacity: 1; }

@media(max-width:900px) {
  .mini-reviews-scroll { grid-template-columns: 1fr; }
  .mini-reviews-header { flex-direction: column; align-items: flex-start; }
}
@media(max-width:600px) {
  .mini-reviews-scroll { grid-template-columns: 1fr; }
}

/* Hide old float layer */
.dental-float-layer { display: none !important; }

/* MOBİL YAN MENÜ DÜZELTME */
@media (max-width: 1100px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 9999;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 9998;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 24px 30px;
    transition: left 0.35s ease;
    border-right: 1px solid rgba(184,151,90,0.25);
    box-shadow: 20px 0 60px rgba(0,0,0,0.45);
  }

  .mobile-nav.open {
    left: 0;
  }

  .mobile-nav a {
    width: 100%;
    color: var(--lgray);
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(184,151,90,0.12);
    text-align: left;
  }

  .mobile-nav a.active,
  .mobile-nav a:hover {
    color: var(--gold);
  }

  .mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
  }
}
