/* Banner Section Styling */
.banner {
    position: relative;
    width: 100%;
    height: 60vh; /* Adjust height as needed */
    margin-top: 70px;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* White text color for visibility */
}
  
/* Dark Overlay for the Banner */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
  
/* Banner Content Styling */
.banner-content {
    position: relative;
    z-index: 1;
    padding: 1rem;
    opacity: 0; /* Start with the content hidden */
    animation: slideIn 1s forwards; /* Call animation */
}
  
/* Image Text Styling */
.banner-slogan {
    max-width: 100%; /* Responsive image */
    height: auto;
}
  
/* Green Overlay Below Image Text */
.green-overlay {
    position: absolute; /* Change to absolute positioning */
    bottom: 0; /* Aligns at the bottom of the banner */
    left: 0;
    width: 100%;
    height: 100%; /* Full height to match the banner */
    background-color: #59aeb0; /* Solid green color */
    z-index: 1; /* Set a lower z-index than the content to stay behind */
    transform: translateX(-100%); /* Start from the left */
    animation: slideInGreen 1s forwards; /* Call the green slide-in animation */
    border-radius: 200px;
}
  
/* Animation Keyframes */
@keyframes slideIn {
    0% {
      transform: translateX(-100%); /* Start from the left */
      opacity: 0; /* Invisible at start */
    }
    100% {
      transform: translateX(0); /* End in center */
      opacity: 1; /* Fully visible */
    }
}

/* Animation Keyframes for Green Overlay */
@keyframes slideInGreen {
    0% {
      transform: translateX(-100%); /* Start from the left */
    }
    100% {
      transform: translateX(-57.9%); /* End in center */
    }
}

/* =========================
   WHY HERMOSA / TRUST BLOCK
   ========================= */
.why-hermosa {
  background: #fff;
  padding: 60px 20px 80px;
  color: #222;
  text-align: center;
}

.why-hermosa .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top paragraph */
.why-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

/* 3-column row */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* consolidated from later duplicate */
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  max-width: 260px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .why-intro {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 32px;
    padding: 0 10px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-item h3 {
    font-size: 1.05rem;
  }

  .why-item p {
    font-size: 0.95rem;
    max-width: 320px;
  }
}

/* Offer Header Styling */
.offer-header {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between header content and button */
    align-items: center; /* Center items vertically */
    margin-bottom: 2rem; /* Space between header and treatments */
    padding: 0 4rem; /* Padding around the section */
}

/* Header Content Styling */
.header-content {
    flex: 0 0 70%; /* Allow header content to take available space */
}

.offer-header h3 {
    color: #8b8b8b;
}

.offer-header p {
    margin-bottom: 1rem; /* Space below the paragraph */
}


/* Treatments Row Styling */
.treatments {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between treatment boxes */
    padding: 0 3rem; /* Padding around the section */
}


/* Media Queries for Mobile View */
@media (max-width: 768px) {
    .banner {
      height: 30vh; /* Adjust the height for mobile screens */
    }

    .why-hermosa{
        padding: 3rem 0;
    }

    .why-content {
        padding: 0 3rem;
    }

    .why-hermosa p {
        padding-top: 0.7rem;
    }

    .why-detail {
        padding: 0;
    }

    .why-image {
        display: none;
    }

    .what-we-offer {
        padding: 3rem 0;
    }

    .offer-header {
        padding: 0 3rem;
        margin-bottom: 0;
    }

    .offer-header h2 {
        padding: 5px 0;
    }

    .treatments {
        display: block; /* mobile layout stacked */
    }

    .treatment {
        margin: 0;
        margin-bottom: 1rem; /* Space below each treatment */
    }

    .desk-view {
        display: none; /* Hide the link on mobile */
    }

    .mobile-view {
        display: block;
        background-color: transparent;
        color: #686868;
        text-align: center;
        text-decoration: underline;
        font-size: 14px;
    }

    .offer-header {
        flex-direction: column; /* Stack header content and link */
        align-items: flex-start; /* Align items to the start vertically */
    }

    .header-content {
        width: 100%; /* Full width on mobile */
        margin-bottom: 1rem; /* Space below header content on mobile */
    }

    @keyframes moveInFromLeft {
        to {
            transform: translateX(0%); /* Move to its original position */
            opacity: 1; /* Fade in */
        }
    }

    @keyframes moveInFromBottom {
        to {
            transform: translatey(0%); /* Move to original position */
            opacity: 1; /* Fade in */
        }
    }

    .follow-now {
        display: block;
        text-align: center;
    }
}

:root{
  --brand: #59aeb0;
  --ink:#222;
  --muted:#6b7280;
  --bg:#FAF9F8;
  --border:#eee;
  --radius:16px;
  --shadow:0 12px 32px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,system-ui,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

.lead{
  margin:0;
  line-height:1.6;
  color:#f5f5f5;
}

/* Global CTA buttons */
.cta-primary,
.cta-secondary,
.cta-whatsapp{
  display:inline-block;
  font-weight:700;
  border-radius:999px;
  padding:12px 20px;
  font-size:.95rem;
  text-decoration:none;
  text-align:center;
}
.cta-primary{
  background:var(--brand);
  color:#fff;
  border:0;
  cursor:pointer;
}
.cta-secondary{
  background:#fff;
  color:#111;
  border:2px solid #fff;
}
.cta-secondary:hover{
  background:#ca733f;
  color:#fff;
  border-color:#ca733f;
}
.cta-whatsapp{
  background:#fff;
  color:var(--brand);
  border:2px solid var(--brand);
}
.cta-whatsapp:hover{
  background:var(--brand);
  color:#fff;
}
.tiny-note{
  margin-top:14px;
  font-size:.9rem;
  color:#e5e7eb;
}

@media(max-width:768px){
  .hero{min-height:60vh;padding:80px 20px}
  .hero h1{font-size:1.9rem}
  .lead{font-size:.95rem}
  .cta-row{
    justify-content:center;
  }
}

/* WHY */
.why{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:60px 20px;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.7rem;
  font-weight:700;
  color:var(--brand);
  margin-bottom:8px;
}
.section-title{
  margin:0 0 24px;
  font-size:1.8rem;
  font-weight:800;
  color:#222;
  line-height:1.3;
}
.section-title.small{
  font-size:1.5rem;
}
.why-card{
  background:#fafafa;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.why-card h3{
  margin:0 0 8px;
  font-size:1.05rem;
  font-weight:700;
  color:#222;
}
.why-card p{
  margin:0;
  color:#555;
  font-size:.95rem;
  line-height:1.5;
}
.reviews-link{
  display:inline-block;
  margin-top:12px;
  font-size:.9rem;
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
}
.reviews-link:hover{text-decoration:underline}

/* Before/After slider frame */
.ba-wrap{
  max-width:500px;
  margin:32px auto 0;
  text-align:center;
}
.ba-inner{
  position:relative;
  width:100%;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:#000;
  aspect-ratio:4/3;
}
.ba-before,
.ba-after{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.ba-after-box{
  position:absolute;
  inset:0;
  width:50%;
  overflow:hidden;
}
.ba-handle{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:2px;
  background:#fff;
  box-shadow:0 0 8px rgba(0,0,0,.6);
}
.ba-range{
  width:100%;
  margin-top:12px;
}
.ba-caption{
  font-size:.8rem;
  color:#777;
  margin-top:6px;
}

/* SKIN ANALYSIS INTRO */
.analysis-intro{
  background:#fafafa;
  border-bottom:1px solid var(--border);
  padding:60px 20px;
}
.analysis-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  display:grid;
  gap:24px;
}
@media(min-width:900px){
  .analysis-card{grid-template-columns:1fr 1fr;}
}
.analysis-card .left .muted{
  color:#555;
  line-height:1.5;
  font-size:.95rem;
}
.list-check{
  list-style:none;
  padding:0;
  margin:16px 0;
  color:#444;
  font-size:.9rem;
  line-height:1.5;
}
.list-check li{
  position:relative;
  padding-left:20px;
  margin-bottom:8px;
}
.list-check li::before{
  content:"✓";
  position:absolute;
  top:0;
  left:0;
  color:var(--brand);
  font-weight:700;
  font-size:.8rem;
}
.mini-card{
  background:#fafafa;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  font-size:.9rem;
  line-height:1.5;
  color:#444;
}
.mini-badge{
  display:inline-block;
  background:#59aeb0;
  color:#fff;
  font-size:.75rem;
  font-weight:700;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right ul{
    padding: 20px;
}

/* SERVICES GRID */
.services{
  background:#f5f5f5;
  border-bottom:1px solid var(--border);
  padding:60px 20px;
}
.services-grid{
  display:grid;
  gap:24px;
}
@media(min-width:900px){
  .services-grid{grid-template-columns:repeat(3,1fr);}
}
.svc-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition:transform .25s ease, box-shadow .25s ease;
}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(0,0,0,.12);
}
.svc-img{
  min-height:160px;
  background-size:cover;
  background-position:center;
}
.svc-basic{background-image:url("/images/facial-index.jpg");}
.svc-cell{background-image:url("/images/cell-light-index.png");}
.svc-hair{background-image:url("/images/hair-removal-index.jpg");}
.svc-body{
  padding:20px;
}
.svc-body h3{
  margin:0 0 8px;
  font-weight:700;
  font-size:1.1rem;
  color:#222;
}
.svc-body p{
  margin:0 0 16px;
  color:#555;
  font-size:.95rem;
  line-height:1.5;
}
.svc-cta{
  font-size:.9rem;
  font-weight:600;
  color:#59aeb0;
}

/* CELL LIGHT PRICING TEASER */
.celllight-pricing-teaser{
  background:#fafafa;
  border-bottom:1px solid var(--border);
  padding:60px 20px;
}
.teaser-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  display:grid;
  gap:24px;
}
@media(min-width:900px){
  .teaser-card{grid-template-columns:1fr 1fr;}
}
.teaser-left .muted{
  color:#555;
  font-size:.95rem;
  line-height:1.5;
}
.muted.tight{margin:0 0 12px;}
.mini-price{
  list-style:none;
  padding:0;
  margin:0 0 16px;
  font-size:.9rem;
  line-height:1.5;
  color:#444;
}
.mini-price li{
  margin-bottom:6px;
}
.teaser-right .teaser-note{
  background:#fafafa;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  color:#444;
  font-size:.9rem;
  line-height:1.5;
}

/* BOOKING */
.booking{
  background: #f5f5f5;
  padding:60px 20px 80px;
}
.booking-card{
  max-width:700px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:32px 24px;
  text-align:center;
}
.book-form{
  display:grid;
  gap:14px;
  margin:0 0 12px;
}
.row2{
  display:grid;
  gap:12px;
}
@media(min-width:600px){
  .row2{grid-template-columns:1fr 1fr;}
}
.book-form input,
.book-form select{
  padding:14px 16px;
  border-radius:10px;
  border:1px solid #ddd;
  font-size:1rem;
  font-family:inherit;
  transition:border-color .2s, box-shadow .2s;
}
.book-form input:focus,
.book-form select:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(125,174,163,.25);
}
.hint{
  color:#555;
  font-size:.9rem;
  margin-top:4px;
}

@media(min-width:900px){
  .footer-inner{
    grid-template-columns:2fr 1fr 1fr;
  }
}
.logo-sm{
  font-weight:800;
  letter-spacing:.08em;
  font-size:1rem;
  margin-bottom:8px;
}
.foot-text{
  margin:0 0 6px;
  color:#555;
  font-size:.9rem;
  line-height:1.4;
}
.foot-block p{margin:0 0 6px;}
.foot-link{
  color:#444;
  font-size:.9rem;
  text-decoration:none;
}
.foot-link:hover{text-decoration:underline;color:var(--brand);}
.footer-bottom{
  border-top:1px solid var(--border);
  background:#fff;
  padding:16px 0;
  font-size:.8rem;
  color:#777;
}
.legal-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.tiny{font-size:.8rem;color:#777;margin:0;}
.backtop{
  color:#777;
  text-decoration:none;
  font-size:.8rem;
}
.backtop:hover{text-decoration:underline;color:#000;}


/* ===== PROMO SECTION (Normal Section) ===== */
.promo {
  padding: 60px 0;
  background: #fafafa;
}

.promo-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1 1 400px;
  padding: 0 20px;
}

.promo-text .tag-offer {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #59aeb0;
  font-weight: 600;
  margin-bottom: 10px;
}

.promo-text h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  color: #222;
  margin-bottom: 15px;
}

.promo-text h2 span {
  color: #59aeb0;
}

.promo-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 500px;
}

/* promo-specific tiny note */
.promo-text .tiny-note {
  font-size: .9rem;
  margin-bottom: 0;
  color: #777;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* promo-specific CTA overrides */
.promo .cta-primary,
.promo .cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo .cta-primary {
  background: #59aeb0;
  color: #fff;
}

.promo .cta-primary:hover {
  background: #ca733f;
}

.promo .cta-secondary {
  border: 2px solid #59aeb0;
  color: #59aeb0;
}

.promo .cta-secondary:hover {
  background: #ca733f;
  color: #fff;
}

.promo-image {
  flex: 1 1 400px;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* responsive */
@media (max-width: 768px) {
  .promo {
    padding: 60px 0;
  }

  .promo-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .promo-text h2 {
    font-size: 1.8rem;
  }

  .promo-text p {
    margin-bottom: 30px;
  }

  .promo-image img {
    max-width: 90%;
  }
}

/* === PROMO VIDEO STYLING === */
.promo-video {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .video-wrapper {
    max-width: 90%;
    margin: 0 auto;
  }

  .promo-video {
    flex: none;
  }
}
