/* ===== DENTAL HERO ===== */
.dental-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #0d0a05 0%, #1a1209 50%, #0d0a05 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.dental-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 65%);
}

.dental-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.dental-hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin: 14px 0 20px;
}
.dental-hero-text h1 br + span,
.dental-hero-text h1 { letter-spacing: -0.5px; }

.dental-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.dental-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.12);
  color: #fff;
}

.dental-hero-img {
  position: relative;
}
.dental-hero-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 2px solid rgba(201,168,76,0.35);
}

.dental-hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15,10,3,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.dental-hero-badge .badge-icon { font-size: 22px; }
.dental-hero-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.dental-hero-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
  .dental-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .dental-hero-text p { max-width: 100%; }
  .dental-hero-btns { justify-content: center; }
  .dental-hero-img img { height: 360px; object-position: center 20%; }
}

/* ===== NAV ACTIVE ===== */
.nav-active {
  color: var(--gold) !important;
  font-weight: 600;
}

/* ===== DENTAL TREATMENTS GRID ===== */
.dental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dental-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.dental-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);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.dental-card:hover::before { transform: scaleX(1); }
.dental-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.dental-card-featured {
  background: linear-gradient(160deg, #fdfaf5 0%, #fff 100%);
}

.dental-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.dental-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.dental-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}

.dental-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dental-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dental-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.dental-list li:last-child { border-bottom: none; }

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

/* ===== TECH HIGHLIGHT ===== */
.dental-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dental-tech-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.13);
  border: 1.5px solid var(--gold);
}
.dental-tech-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.dental-tech-img:hover img { transform: scale(1.03); }

.dental-tech-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,7,2,0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 8px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.dental-tech-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.35;
  margin: 12px 0 18px;
}
.dental-tech-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}
.dental-tech-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dental-tech-list li {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dental-tech-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: none;
}

@media (max-width: 860px) {
  .dental-tech-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dental-tech-img img { height: 320px; }
}

/* ===== DENTAL GALLERY ===== */
.dental-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.dental-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.dental-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.dental-gallery-item:hover img { transform: scale(1.06); }
.dental-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.dental-gallery-item:hover::after { opacity: 1; }

.dental-gallery-main {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .dental-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .dental-gallery-main { grid-row: span 2; }
}
@media (max-width: 480px) {
  .dental-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .dental-gallery-main, .dental-gallery-item { grid-row: span 1; height: 220px; }
}

/* ===== SMILE STRIP ===== */
.smile-strip {
  position: relative;
  padding: 90px 0;
  background: url('תמונות/WhatsApp Image 2026-05-22 at 19.35.08 (2).jpeg') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.smile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,7,2,0.78);
}
.smile-content {
  position: relative;
  z-index: 1;
}
.smile-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.35;
}
.smile-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHY US ===== */
.dental-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dental-why-item {
  text-align: center;
  padding: 36px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s;
}
.dental-why-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.dental-why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.dental-why-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .dental-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .dental-why-grid { grid-template-columns: 1fr; }
}
