/* ================= ROOT COLORS ================= */
:root {
  --primary-green: #5e9800;
  --bg-green: #5f8620;
  --light-green: #f4faf2;
  --soft-green: #e8f5e9;
  --dark-text: #263238;
  --white: #ffffff;
}

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

html, body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #f6f9f6;
  color: var(--text-dark);
}

/* ================= NAVBAR ================= */
.dt-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.dt-nav h2 {
  color: var(--primary-green);
  font-weight: 600;
}

.dt-back {
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 500;
}

/* ================= HERO ================= */
.dt-hero {
  /* height: 65vh; */
	 height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
}

.cosmetic-hero, .implants-hero, .whitening-hero, .bridges-hero, 
.surgery-hero, .preventive-hero, .pediatric-hero, .gumcare-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/ContactPage_herosection.webp');
}

.dt-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  font-weight: 700;
}

.dt-hero p {
  font-size: 21px;
  opacity: 0.9;
}

/* ================= CONTAINER ================= */
.dt-container {
  padding: 20px 20px;
  background: var(--white);
}

/* ================= ROW ================= */
.dt-row {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dt-row:last-child {
  margin-bottom: 0;
}

.dt-row.reverse {
  flex-direction: row-reverse;
}

/* ================= TEXT ================= */
.dt-text {
  flex: 1.2;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease;
}

.dt-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  color: var(--primary-green);
  margin-bottom: 16px;
}

.dt-text h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--primary-green);
  display: block;
  margin-top: 8px;
}

.dt-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #455a64;
}

/* ================= LIST ================= */
.treatment-works {
  list-style: none;
  margin-top: 20px;
}

.treatment-works li {
  position: relative;
  margin-bottom: 16px;
  font-size: 16px;
  background: rgba(94,152,0,0.08);
  padding: 14px 18px 14px 45px;
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
}

.treatment-works li:hover {
  transform: translateX(6px);
  background: rgba(94,152,0,0.15);
}

/* ================= IMAGE ================= */
.dt-image {
  flex: 1;
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease;
}

.dt-image img {
  width: 100%;
  max-width: 500px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;

  border: 2px solid var(--primary-green);
  padding: 6px;
  background: var(--white);

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.dt-image img:hover {
  transform: scale(1.03);
}

/* ================= ANIMATION ================= */
.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .dt-nav {
    padding: 15px 20px;
  }
/* 
  .dt-hero {
    height: 50vh;
  } */

  .dt-hero h1 {
    font-size: 32px;
  }

  .dt-hero p {
    font-size: 18px;
  }

  .dt-row {
    flex-direction: column !important;
    text-align: center;
    gap: 10px;
  }

  .dt-text, .dt-image {
    transform: none !important;
    opacity: 1;
    width: 100%;
  }

  .dt-text h2::after {
    margin: 8px auto 0;
  }

  .dt-image img {
    height: 200;
    max-width: 100%;
  }
}