/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  max-width: 2250px;
  margin: auto;
  width: 100%
  font-family: "Open Sans", sans-serif;
  background: #f8fafc;
  color: #1a1a1a;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

/* ================= HEADER ================= */
/* =========================================
   HEADER
   ========================================= */
.header {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

/* =========================================
   NAV ACTION BUTTONS
   ========================================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  white-space: nowrap;
}

/* Icon inside button */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Call button */
.btn.call {
  border: 1.5px solid #2f5daa;
  color: #2f5daa;
}

.btn.call:hover {
  background: #f0f5ff;
}

/* WhatsApp button */
.btn.whatsapp {
  background: #2f5daa;
  color: white;
  border: 1.5px solid #2f5daa;
}

.btn.whatsapp:hover {
  background: #244a8f;
  border-color: #244a8f;
}

/* =========================================
   RESPONSIVE — Tablet & below (≤ 768px)
   Icon only, no text
   ========================================= */
@media (max-width: 768px) {
  .btn-text {
    display: none;
  }

  .btn {
    /* Square icon button */
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    border-radius: 10px;
    gap: 0;
  }

  .btn-icon {
    width: 20px;
    height: 20px;
  }

  .nav-actions {
    gap: 8px;
  }
}

/* ================= HERO ================= */

/* =========================================
   HERO SECTION — hero.css
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #f0f4ff;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   HERO SECTION
   ========================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap");
.hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #eef3fc 0%, #f8faff 50%, #dde8f8 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative dot grid (top-left) */
.hero::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 160px;
  height: 120px;
  background-image: radial-gradient(circle, #b0c4e8 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
}

/* ---- Two-column wrapper ---- */
.hero-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

/* =========================================
   LEFT — TEXT CONTENT
   ========================================= */
.hero-text {
  flex: 1 1 45%;
  max-width: 520px;
}

/* Headline */
.hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: bolder;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
  
}

.heading-dark {
  color: #0d2459;
}

.heading-blue {
  color: #2563eb;
}

/* Divider line */
.hero-divider {
  width: 56px;
  height: 3px;
  background: #2f5daa;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Subtext */
.hero-subtext {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-link {
  color: #2f5daa;
  font-weight: 600;
  text-decoration: none;
}

.hero-link:hover {
  text-decoration: underline;
}

/* ---- Trust Badges ---- */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
  row-gap: 16px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  text-align: center;
}

/* Remove left padding on first badge */
.badge:first-child {
  padding-left: 0;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border: 1.8px solid #2f5daa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f5daa;
}

.badge-icon svg {
  width: 22px;
  height: 22px;
}

.badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e3a6e;
  line-height: 1.4;
}

.badge-separator {
  width: 1px;
  height: 48px;
  background: #c5d4ec;
  flex-shrink: 0;
}

/* ---- CTA Buttons ---- */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 11px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  display: inline-block;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  background: #2f5daa;
  color: #ffffff;
  border: 2px solid #2f5daa;
  box-shadow: 0 4px 14px rgba(47, 93, 170, 0.3);
}

.btn.primary:hover {
  background: #244a8f;
  border-color: #244a8f;
  box-shadow: 0 6px 20px rgba(47, 93, 170, 0.4);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: #2f5daa;
  border: 2px solid #2f5daa;
}

.btn.secondary:hover {
  background: #2f5daa;
  color: #ffffff;
  transform: translateY(-1px);
}

/* =========================================
   RIGHT — BEFORE / AFTER IMAGE
   ========================================= */
.hero-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  border-radius: 16px;
  /* box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1); */
  object-fit: cover;
}

/* =========================================
   RESPONSIVE — Tablet (≤ 992px)
   ========================================= */
@media (max-width: 992px) {
  .hero-wrapper {
    gap: 32px;
  }

  .hero-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .badge {
    padding: 0 14px;
  }
}

/* =========================================
   RESPONSIVE — Mobile (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
  .hero {
    padding: 48px 16px;
  }

  /* Stack: image on top, text below */
  .hero-wrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 32px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-divider {
    margin: 0 auto 20px;
  }

  .hero-subtext {
    max-width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }

  .badge:first-child {
    padding-left: 22px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
  }
}

/* =========================================
   RESPONSIVE — Small Mobile (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.75rem;
  }

  .badge-separator {
    display: none;
  }

  .hero-badges {
    gap: 16px;
  }

  .badge {
    padding: 0 8px;
    flex: 1 1 calc(33% - 16px);
  }
}
/* ============================================================
   UPDATED BEFORE & AFTER SLIDER SECTION
   Matches Elite Hair & Aesthetic Center Branded Light Palette
============================================================ */

.ht-slider-section {
  --ht-bg: #fff; /* Matches your main layout background */
  --ht-bg-card: #ffffff; /* Crisp white for premium cards */
  --ht-primary-blue: #2f5daa; /* Your flagship core blue color */
  --ht-text: #0a2540; /* Deep slate dark text for high readability */
  --ht-muted: #6b7280; /* Standard gray font for details */
  --ht-white: #ffffff;
  --ht-radius: 14px;

  box-sizing: border-box;
  width: 100%;
  background: var(--ht-bg);
  font-family: "Open Sans", sans-serif;
  color: var(--ht-text);
  padding: 60px 16px 64px;
  overflow: hidden;
  position: relative;
}

/* Scoped box-sizing reset — only inside this section */
.ht-slider-section *,
.ht-slider-section *::before,
.ht-slider-section *::after {
  box-sizing: border-box;
}

/* Inner wrapper to constrain content width */
.ht-slider-section .ht-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header Changes ── */
.ht-slider-section .ht-section-label {
  display: block;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ht-muted);
  margin: 0 0 8px;
  text-transform: none;
}

.ht-slider-section .ht-section-title {
  display: block;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #0a2540;
  margin: 0 0 32px;
  line-height: 1.2;
}

/* ── Swiper wrapper ── */
.ht-slider-section .ht-swiper {
  width: 100%;
  padding: 10px 0 40px;
  overflow: visible !important;
}

.ht-slider-section .ht-swiper .swiper-wrapper {
  align-items: center;
}

/* ── Slide card ── */
.ht-slider-section .ht-slide-card {
  background: var(--ht-bg-card);
  border-radius: var(--ht-radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    opacity 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  user-select: none;
}

/* Side (non-active) cards */
.ht-slider-section .swiper-slide:not(.swiper-slide-active) .ht-slide-card {
  transform: scale(0.92);
  opacity: 0.65;
  box-shadow: none;
}

/* Active card */
.ht-slider-section .swiper-slide-active .ht-slide-card {
  transform: scale(1);
  opacity: 1;
  box-shadow:
    0 15px 35px rgba(10, 37, 64, 0.1),
    0 0 0 1px rgba(47, 93, 170, 0.05);
}

/* Hover on side cards */
.ht-slider-section
  .swiper-slide:not(.swiper-slide-active)
  .ht-slide-card:hover {
  opacity: 0.85;
  transform: scale(0.94);
}

/* ── Before / After image strip ── */
.ht-slider-section .ht-card-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(180px, 45vw, 300px);
  position: relative;
}

.ht-slider-section .ht-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ht-slider-section .ht-divider-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
  z-index: 2;
}

.ht-slider-section .ht-badge {
  position: absolute;
  bottom: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 3;
}
.ht-slider-section .ht-badge-before {
  left: 12px;
  background: rgba(10, 37, 64, 0.75);
  color: #ffffff;
}
.ht-slider-section .ht-badge-after {
  right: 12px;
  background: var(--ht-primary-blue);
  color: #ffffff;
}

/* ── Card info row ── */
.ht-slider-section .ht-card-info {
  padding: 16px 20px 20px;
  background: #ffffff;
}

.ht-slider-section .ht-info-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.ht-slider-section .ht-age {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ht-text);
}

.ht-slider-section .ht-technique {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ht-primary-blue);
}

.ht-slider-section .ht-info-stats {
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* Unified columns since we pulled Country out */
  gap: 12px;
}

.ht-slider-section .ht-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ht-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 2px;
}

.ht-slider-section .ht-stat-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ht-text);
  margin: 0;
}

/* ── Navigation buttons ── */
.ht-slider-section .ht-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.ht-slider-section .ht-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--ht-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ht-slider-section .ht-nav-btn:hover {
  background: var(--ht-primary-blue);
  border-color: var(--ht-primary-blue);
  color: #ffffff;
  transform: scale(1.05);
}

.ht-slider-section .ht-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* ── CTA button matching your layout ── */
.ht-slider-section .ht-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.ht-slider-section .ht-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--ht-primary-blue);
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.ht-slider-section .ht-cta-btn:hover {
  background: #244a8f;
  transform: translateY(-1px);
}

.ht-slider-section .ht-cta-btn svg {
  width: 16px;
  height: 16px;
}



@media (max-width: 480px) {
  .ht-slider-section {
    padding: 40px 0;
  }
  .ht-slider-section .ht-section-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .ht-slider-section .ht-card-images {
    height: 210px;
  }
  .ht-slider-section .ht-info-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.why-us h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #0a2540;
}

.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.why-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card h3 {
  font-size: 18px;
  color: #2f5daa;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
}

/* CTA */
.why-cta {
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    text-align: center;
  }
}

/* ================= PROCEDURE ================= */
.procedure {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.procedure h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #0a2540;
}

/* GRID */
.procedure-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* STEP CARD */
.step {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

/* NUMBER */
.step-number {
  font-size: 22px;
  font-weight: bold;
  color: #2f5daa;
  margin-bottom: 10px;
}

/* TEXT */
.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a2540;
}

.step p {
  font-size: 14px;
  color: #6b7280;
}

/* CTA */
.procedure-cta {
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .procedure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .procedure-grid {
    grid-template-columns: 1fr;
  }

  .step {
    text-align: center;
  }
}

/* ================= DOCTOR ================= */
.doctor {
  padding: 80px 20px;
  background: #f8fafc;
}

.doctor-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.doctor-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* TEXT */
.doctor-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 15px;
}

.doctor-text p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* POINTS */
.doctor-points span {
  display: block;
  margin-bottom: 8px;
  color: #2f5daa;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .doctor-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .doctor-text p {
    font-size: 15px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.testimonials h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #0a2540;
}

/* GRID */
.testimonial-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.testimonial-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #2f5daa;
}

/* CTA */
.testimonial-cta {
  margin-top: 40px;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    text-align: center;
  }
}

/* ================= CONTACT ================= */
.contact {
  padding: 80px 20px;
  background: #f8fafc;
}

.contact-content {
  display: flex;
  gap: 40px;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  color: #0a2540;
}

.contact-info p {
  margin: 10px 0 20px;
  color: #6b7280;
}

.contact-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* FORM */
.contact-form {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #2f5daa;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #244a8f;
}

/* ================= FOOTER ================= */
.footer {
  background: #0a2540;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-links a {
  color: #4fa3ff;
  text-decoration: none;
  margin-left: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
}
