/* ==========================================================================
   Dental Monitoring 2024 — page-specific styles
   ========================================================================== */

/* ---- Layout helpers ---- */
.dm-2024-wrapper {
  color: #4D4D4D;
  line-height: 1.6;
}
.dm-2024-wrapper .cnt-lg {
  margin: auto;
  max-width: 1400px;
}
@media (max-width: 1400px) {
  .dm-2024-wrapper .cnt-lg {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.dm-2024-hero-sec {
  padding: 60px 0 50px;
  background: #f7fafa;
}
.dm-2024-hero-sec > .cnt-lg > .flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.dm-2024-hero-sec .text-wrap {
  flex: 1 1 55%;
  min-width: 0;
}
.dm-2024-hero-sec .text-wrap .txt h1 {
  font-family: "Clash Display", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #4D4D4D;
  line-height: 1.2;
  margin: 0 0 12px;
}
.dm-2024-hero-sec .text-wrap .txt h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #4CBFE8;
  margin: 0 0 20px;
}
.dm-2024-hero-sec .text-wrap .txt .dm-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.dm-2024-hero-sec .text-wrap .txt .dm-check-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #4D4D4D;
}

/* ---- Hero image ---- */
.dm-2024-hero-sec > .cnt-lg > .flex > .img {
  flex: 0 1 40%;
  position: relative;
  min-width: 0;
}
.dm-2024-hero-sec > .cnt-lg > .flex > .img > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.dm-2024-hero-sec .img-txt {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.dm-2024-hero-sec .img-txt .cmt {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.dm-2024-hero-sec .img-txt .cmt .dm-icon-check {
  color: #41DDA0;
  font-size: 18px;
  font-weight: 700;
}
.dm-2024-hero-sec .img-txt .cmt h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #4D4D4D;
}

/* ---- Hero form ---- */
.dm-2024-hero-sec .forms-2023 {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-top: 10px;
}
.dm-2024-hero-sec .forms-2023 .form-group {
  margin-bottom: 14px;
}
.dm-2024-hero-sec .forms-2023 label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4D4D4D;
  margin-bottom: 5px;
}
.dm-2024-hero-sec .forms-2023 .form-control {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #c8d0d0;
  border-radius: 6px;
  background: #f9fbfb;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.dm-2024-hero-sec .forms-2023 .form-control:focus {
  border-color: #4CBFE8;
  outline: none;
  background: #fff;
}
.dm-2024-hero-sec .forms-2023 select.form-control {
  appearance: auto;
}
.dm-2024-hero-sec .forms-2023 .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.dm-2024-hero-sec .forms-2023 .row > [class*="col-"] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.dm-2024-hero-sec .forms-2023 .btn {
  display: inline-block;
  background: #41DDA0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
}
.dm-2024-hero-sec .forms-2023 .btn:hover {
  background: #35c48e;
}
.dm-2024-hero-sec .forms-2023 p {
  font-size: 11px;
  color: #888;
  margin: 10px 0 0;
  line-height: 1.5;
}
.dm-2024-hero-sec .forms-2023 p a {
  color: #4CBFE8;
}
.dm-2024-hero-sec .forms-2023 .fake {
  display: none;
}
.dm-2024-hero-sec .forms-2023 .progress {
  display: none;
}

/* Hero responsive */
@media (max-width: 991px) {
  .dm-2024-hero-sec {
    padding: 40px 0 30px;
  }
  .dm-2024-hero-sec > .cnt-lg > .flex {
    flex-direction: column;
  }
  .dm-2024-hero-sec .text-wrap {
    flex: 1 1 100%;
  }
  .dm-2024-hero-sec > .cnt-lg > .flex > .img {
    flex: 1 1 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .dm-2024-hero-sec .text-wrap .txt h1 {
    font-size: 28px;
  }
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */
.dm-2024-why-choose-sec {
  padding: 60px 0;
}
.dm-2024-why-choose-sec .title-sec {
  text-align: center;
  margin-bottom: 40px;
}
.dm-2024-why-choose-sec .title-sec h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #4D4D4D;
  margin: 0;
}
.dm-2024-why-choose-sec .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.dm-2024-why-choose-sec .row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
}
.dm-2024-why-choose-sec .wrap {
  background: #f7fafa;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}
.dm-2024-why-choose-sec .wrap .img {
  margin-bottom: 18px;
}
.dm-2024-why-choose-sec .wrap .img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.dm-2024-why-choose-sec .wrap h3 {
  font-family: "Clash Display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #4D4D4D;
  margin: 0 0 12px;
}
.dm-2024-why-choose-sec .wrap p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Why-choose responsive */
@media (max-width: 991px) {
  .dm-2024-why-choose-sec {
    padding: 40px 0;
  }
  .dm-2024-why-choose-sec .title-sec h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .dm-2024-why-choose-sec .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.dm-2024-video-sec {
  padding: 0 0 60px;
  text-align: center;
}
.dm-2024-video-sec .video-img {
  position: relative;
  display: inline-block;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.dm-2024-video-sec .video-img img {
  width: 100%;
  height: auto;
  display: block;
}
.dm-2024-video-sec .video-img a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.dm-2024-video-sec .video-img a:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.dm-2024-video-sec .video-img a .dm-icon-play {
  color: #4CBFE8;
  font-size: 28px;
  margin-left: 4px;
}

/* ==========================================================================
   What Happens Section (SBS image left)
   ========================================================================== */
.dm-2024-whats-happens-sec {
  padding: 60px 0;
  background: #f7fafa;
}
.dm-2024-whats-happens-sec > .cnt > .flex {
  display: flex;
  align-items: center;
  gap: 50px;
}
.dm-2024-whats-happens-sec > .cnt > .flex > .img {
  flex: 0 1 45%;
  min-width: 0;
}
.dm-2024-whats-happens-sec > .cnt > .flex > .img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.dm-2024-whats-happens-sec .text-wrap {
  flex: 1 1 55%;
  min-width: 0;
}
.dm-2024-whats-happens-sec .text-wrap h2 {
  font-family: "Clash Display", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #4D4D4D;
  margin: 0 0 24px;
}
.dm-2024-whats-happens-sec .text-wrap ol {
  padding-left: 20px;
  margin: 0;
}
.dm-2024-whats-happens-sec .text-wrap ol li {
  font-size: 15px;
  line-height: 1.6;
  color: #4D4D4D;
  margin-bottom: 16px;
}
.dm-2024-whats-happens-sec .text-wrap ol li strong {
  color: #333;
}

/* What-happens responsive */
@media (max-width: 991px) {
  .dm-2024-whats-happens-sec {
    padding: 40px 0;
  }
  .dm-2024-whats-happens-sec > .cnt > .flex {
    flex-direction: column;
    gap: 30px;
  }
  .dm-2024-whats-happens-sec > .cnt > .flex > .img {
    flex: 1 1 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .dm-2024-whats-happens-sec .text-wrap h2 {
    font-size: 24px;
  }
}
