/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --off-white: #faf9f7;
  --light-bg: #f5f2ed;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --border: #e8e0d0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 14px;
  --font: 'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.link-gold:hover { color: var(--gold-dark); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo-wrap { flex-shrink: 0; }
.logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header-cta { font-size: 14px; padding: 10px 22px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, #2d2010 0%, #1a1209 40%, #0d0d0d 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  overflow: hidden;
  text-align: center;
}

/* hero bg image */
.hero {
  background-image: url('תמונות/WhatsApp Image 2026-05-22 at 19.35.08.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,4,0.72) 0%,
    rgba(10,8,4,0.60) 50%,
    rgba(10,8,4,0.80) 100%
  );
  z-index: 0;
}
.hero-glow, .hero-lines, .hero-particles, .hero-content, .hero-scroll-hint {
  position: relative;
  z-index: 2;
}

/* animated gold glow orb */
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.06) 40%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

/* decorative horizontal lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.04) 80px
    );
}

/* floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* hero logo */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 80px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* glass disc backdrop */
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,15,5,0.82) 0%, rgba(10,8,3,0.70) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

/* gold ring border */
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold-light) 0deg,
    var(--gold) 60deg,
    transparent 120deg,
    transparent 180deg,
    var(--gold) 240deg,
    var(--gold-light) 300deg,
    var(--gold) 360deg
  );
  z-index: 0;
  animation: ringRotate 8s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-img {
  width: 185px;
  height: 185px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

/* outer glow ring */
.hero-logo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: 0;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.03); }
}

.ring2 {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  z-index: 0;
  animation: ringPulse 3s ease-in-out infinite 1s;
}

/* divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  width: 320px;
}
.hero-divider span:not(.hero-diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}
.hero-diamond {
  color: var(--gold);
  font-size: 10px;
  animation: diamondPulse 2.5s ease-in-out infinite;
}
@keyframes diamondPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* hero title */
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 200;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

.hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.9;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-btn-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 16px;
}

/* badges */
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  color: rgba(201,168,76,0.8);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  background: rgba(201,168,76,0.05);
  transition: all 0.3s;
}
.hero-badge:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  position: relative;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-light { background: var(--light-bg); }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== ATMOSPHERE STRIP ===== */
.atmo-strip {
  position: relative;
  min-height: 480px;
  background-image: url('תמונות/WhatsApp Image 2026-05-22 at 19.35.08 (2).jpeg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.atmo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,4,0.78) 0%, rgba(30,20,5,0.65) 100%);
}
.atmo-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 60px 24px;
  max-width: 600px;
}
.atmo-label {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.atmo-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  line-height: 1.3;
  margin-bottom: 16px;
}
.atmo-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 32px;
}

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

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.35;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-right: 3px solid var(--gold);
}
.hours-icon { font-size: 24px; }
.about-hours strong { display: block; font-weight: 600; margin-bottom: 2px; }
.about-hours p { color: var(--text-light); margin: 0; font-size: 15px; }

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  position: relative;
}
.about-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-main:hover img { transform: scale(1.03); }
.about-img-main::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(201,168,76,0.08), transparent);
  pointer-events: none;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.about-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.about-stat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-img-main img { height: 240px; }
  .about-stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ===== TREATMENTS ===== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.treatment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

.treatment-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.treatment-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.treatment-card p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===== BOTOX AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.area-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}
.area-item:hover {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff 0%, #fdf8ee 100%);
  transform: translateY(-2px);
}
.area-icon {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

.areas-cta { text-align: center; }

/* ===== CREDENTIALS ===== */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cred-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.cred-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}

.cred-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.cred-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.cred-card:hover .cred-img-wrap img {
  transform: scale(1.04);
}
.cred-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.cred-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.cred-card:hover .cred-overlay { opacity: 1; }

.cred-info {
  padding: 20px 22px 24px;
}
.cred-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.cred-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}
.cred-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(201,168,76,0.3);
  border: 1px solid rgba(201,168,76,0.3);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .creds-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cred-img-wrap { height: 240px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .creds-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== ABOUT DOCTOR PHOTO ===== */
.about-doctor-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--gold);
}
.about-doctor-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.about-doctor-img:hover img { transform: scale(1.03); }

.about-doctor-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(20,12,3,0.88) 0%, transparent 100%);
  color: #fff;
}
.about-doctor-badge .badge-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.about-doctor-badge .badge-title {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.about-consult-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  margin-top: 24px;
}
.about-consult-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.about-consult-img:hover img { transform: scale(1.04); }

.about-consult-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.8px;
  text-align: center;
  padding: 10px 0 4px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-doctor-img img { height: 280px; }
  .about-consult-img img { height: 160px; }
}

/* ===== DENTAL BANNER ===== */
.dental-banner-section {
  padding: 80px 0;
}
.dental-banner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: center;
  background: linear-gradient(135deg, #0f0a03 0%, #1e1408 55%, #0f0a03 100%);
  border-radius: 24px;
  padding: 56px 56px 56px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.dental-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.dental-banner-text {
  padding-right: 56px;
  position: relative;
  z-index: 1;
}
.dental-banner-label {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 18px;
}
.dental-banner-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.35;
}
.dental-banner-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 28px;
}
.dental-banner-text strong {
  color: var(--gold-light);
  font-weight: 600;
}
.dental-banner-img {
  height: 300px;
  overflow: hidden;
  border-radius: 0 0 0 20px;
}
.dental-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.dental-banner:hover .dental-banner-img img { transform: scale(1.04); }

@media (max-width: 860px) {
  .dental-banner {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }
  .dental-banner-text { padding-right: 0; }
  .dental-banner-img {
    height: 220px;
    border-radius: var(--radius);
  }
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-tall { grid-row: span 2; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-tall, .gallery-wide { grid-row: span 1; grid-column: span 1; }
  .gallery-item { height: 220px; }
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 15px; }
.contact-item a, .contact-item p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}
.social-btn.facebook { background: #1877f2; }
.social-btn.facebook:hover { background: #1560cc; transform: translateY(-2px); }
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-btn.instagram:hover { transform: translateY(-2px); opacity: 0.9; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ===== ARTICLE MODAL ===== */
.article-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.80);
  backdrop-filter: blur(8px);
  z-index: 9997;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.article-modal-backdrop.open { display: flex; }

.article-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
  position: relative;
}

/* gold top bar */
.article-modal-box::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  flex-shrink: 0;
}

.article-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.article-modal-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 0 12px rgba(201,168,76,0.2);
}
.article-modal-logo img { width: 100%; height: 100%; object-fit: cover; }

.article-modal-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.article-modal-close:hover { background: var(--light-bg); border-color: var(--gold); color: var(--text); }

.article-modal-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
}
.article-modal-body .art-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.article-modal-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--text);
}
.article-modal-body .art-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.article-modal-body p {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}
.article-modal-body strong { font-weight: 600; }

.article-modal-footer {
  padding: 18px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  background: var(--off-white);
}
.article-phone {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.article-phone:hover { color: var(--gold); }

@media (max-width: 480px) {
  .article-modal-body { padding: 20px; }
  .article-modal-footer { padding: 16px 20px; flex-direction: column; align-items: stretch; text-align: center; }
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-align: right;
  cursor: pointer;
  color: inherit;
  position: relative;
  overflow: hidden;
  font-family: var(--font);
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--gold-light); }
.blog-card:hover::after { transform: scaleX(1); }

.blog-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  width: fit-content;
}
.blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-read {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: letter-spacing 0.2s;
}
.blog-card:hover .blog-read { letter-spacing: 0.5px; }

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

/* ===== BOOKING MODAL ===== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-box::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--light-bg); color: var(--text); border-color: var(--gold); }

.modal-header {
  text-align: center;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--gold-light);
  box-shadow: 0 0 16px rgba(201,168,76,0.25);
}
.modal-logo img { width: 100%; height: 100%; object-fit: cover; }
.modal-header h3 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.modal-header p { font-size: 13.5px; color: var(--text-light); }

.modal-form { padding: 24px 32px 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { cursor: pointer; }

.modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-size: 16px;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.modal-submit:active { transform: scale(0.98); }

@media (max-width: 480px) {
  .modal-form { padding: 20px 20px 24px; }
  .modal-header { padding: 24px 20px 16px; }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.65);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: brightness(1.1);
  margin-bottom: 4px;
}
.footer p { font-size: 13.5px; }
.footer a { color: var(--gold); }
.footer a:hover { color: var(--gold-light); }

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #20b858);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse-green 2.5s infinite;
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: block; }

  .hero-content { padding: 60px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card { grid-template-columns: repeat(2, 1fr); }

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

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

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .about-card { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .social-links { flex-direction: column; }
}
