/* =====================================================
   APPOINTMENT PAGE STYLES
   Used by: page-appointment.php
   Reuses: archive-styles.css (.archive-contact-*)
===================================================== */

/* ── Intro Section ──────────────────────────────────── */
.appt-intro-section {
  padding: 150px 0 60px;
}

/* ── Owner Photo ─────────────────────────────────────── */
.appt-owner-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.appt-owner-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, #8E6B12 0%, #EED28B 50%, #8E6B12 100%);
  flex-shrink: 0;
}

.appt-owner-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border: 3px solid #fff;
}

/* ── Services Box ────────────────────────────────────── */
.appt-services-box {
  background: #f9edd1;
  border: 1px solid rgba(142, 107, 18, 0.25);
  border-radius: 16px;
  padding: 28px 24px;
}

.appt-services-title {
  font-family: 'Marko One', cursive;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(142, 107, 18, 0.20);
}

.appt-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.appt-services-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans Sinhala', 'Poppins', sans-serif;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(142, 107, 18, 0.15);
  justify-content: space-between;
}

.appt-services-list li:last-child {
  border-bottom: none;
}

.appt-services-list li .fas {
  color: var(--gold-dark);
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Title Area ──────────────────────────────────────── */
.appt-title-area {
  margin-bottom: 24px;
}

.appt-main-title {
  background: linear-gradient(90deg, #8E6B12 -49.73%, #EED28B 2.1%, #8E6B12 123.05%);
  border-radius: 10px;
  padding: 20px;
  font-family: 'Marko One', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #8E6B12;
  font-weight: 700;
  margin: 0;
}

.appt-main-title {
  order: 0;
}

/* ── Iframe Box ──────────────────────────────────────── */
.appt-iframe-box {
  padding: 0;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.appt-iframe-box iframe {
  flex: 1;
  min-height: 480px;
  width: 100%;
  display: block;
  border: 0;
}

/* ── Contact section top spacing ────────────────────── */
.appt-contact-section {
  padding-top: 20px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 991.98px) {
  .appt-intro-section {
    padding: 48px 0 40px;
  }

  .appt-owner-photo {
    width: 150px;
    height: 150px;
  }

  .appt-iframe-box,
  .appt-iframe-box iframe {
    min-height: 380px;
  }

  .appt-title-deco {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767.98px) {
  .appt-owner-photo-wrap {
    margin-bottom: 24px;
  }

  .appt-title-area {
    gap: 12px;
  }

  .appt-title-deco {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .appt-intro-section {
    padding: 100px 0 32px;
  }

  .appt-iframe-box,
  .appt-iframe-box iframe {
    min-height: 320px;
  }

  .appt-services-box {
    padding: 20px 16px;
  }
}
