/* ===== Yello Salon — Styles ===== */

:root{
  --yellow: #f4b400;
  --yellow-dark: #d99a00;
  --yellow-light: #fff4d6;
  --dark: #1c1a17;
  --dark-soft: #2b2723;
  --text: #4a443c;
  --muted: #8a8074;
  --cream: #fffaf1;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 20px 45px rgba(28, 26, 23, 0.12);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --font-head: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3{ font-family: var(--font-head); color: var(--dark); margin: 0; }
.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Preloader ===== */
.preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.hide{ opacity: 0; visibility: hidden; }
.loader-ring{
  width: 54px; height: 54px;
  border: 4px solid rgba(244,180,0,0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ===== Buttons ===== */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary{
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(244,180,0,0.35);
}
.btn--primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(244,180,0,0.45); }
.btn--outline{
  border-color: var(--yellow);
  color: var(--dark);
  padding: 10px 24px;
}
.btn--outline:hover{ background: var(--yellow); }
.btn--ghost{
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover{ background: rgba(255,255,255,0.15); }
.btn--block{ width: 100%; }

.eyebrow{
  display: inline-block;
  color: var(--yellow-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

/* ===== Header ===== */
.header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled{
  background: rgba(255,250,241,0.92);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.header__inner{
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand__logo{ height: 42px; width: auto; border-radius: 8px; }
.brand__name{
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.header.scrolled .brand__name{ color: var(--dark); }
.brand__name em{ font-style: normal; color: var(--yellow); }

.nav{ display: flex; gap: 32px; }
.nav__close{ display: none; }
.nav__link{
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  padding: 6px 0;
  transition: color var(--transition);
}
.header.scrolled .nav__link{ color: var(--dark); }
.nav__link::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active{ color: var(--yellow); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link.active{ color: var(--yellow-dark); }
.nav__link:hover::after, .nav__link.active::after{ width: 100%; }

.header__cta{ flex-shrink: 0; color: var(--white); }
.header.scrolled .header__cta{ color: var(--dark); }

.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span{
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.header.scrolled .hamburger span{ background: var(--dark); }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__slides{ position: absolute; inset: 0; }
.hero__slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.active{ opacity: 1; }
.hero__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,0.55) 0%, rgba(20,17,12,0.65) 60%, rgba(20,17,12,0.85) 100%);
}
.hero__content{
  position: relative; z-index: 2;
  max-width: 680px;
  color: var(--white);
}
.hero__content .eyebrow{ color: var(--yellow); }
.hero h1{
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 span{ color: var(--yellow); }
.hero__text{
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero__actions{ display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue{
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue span{
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  position: relative;
}
.scroll-cue span::before{
  content: "";
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot{
  0%{ opacity: 1; top: 8px; }
  70%{ opacity: 0; top: 20px; }
  100%{ opacity: 0; top: 8px; }
}

/* ===== Marquee ===== */
.marquee{
  background: var(--dark);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track{
  display: inline-flex;
  gap: 18px;
  animation: marquee 26s linear infinite;
}
.marquee__track span{
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.marquee__track span:nth-child(2n){ color: rgba(255,255,255,0.5); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===== Section head ===== */
.section-head{ text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head h2{ font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head__text{ color: var(--muted); }

section{ padding: 100px 0; }

/* ===== About ===== */
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media{ position: relative; }
.about__img--main{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about__img--sub{
  position: absolute;
  bottom: -36px; left: -36px;
  width: 45%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.about__badge{
  position: absolute; top: 20px; right: -20px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge strong{ display: block; font-size: 1.6rem; font-family: var(--font-head); }
.about__badge span{ font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.about__content h2{ font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.about__content p{ color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.about__points{ margin-bottom: 30px; }
.about__points li{
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--dark);
}
.about__points span{
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}

/* ===== Services / Tabs ===== */
.services{ background: var(--white); }
.tabs{
  display: flex; justify-content: center; gap: 10px;
  margin-bottom: 46px; flex-wrap: wrap;
}
.tab{
  background: var(--yellow-light);
  border: none;
  padding: 12px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.tab:hover{ transform: translateY(-2px); }
.tab.active{ background: var(--yellow); box-shadow: 0 10px 22px rgba(244,180,0,0.35); }

.tab-panel{ display: none; }
.tab-panel.active{ display: block; animation: fadeUp .5s ease; }
@keyframes fadeUp{ from{ opacity: 0; transform: translateY(16px); } to{ opacity: 1; transform: translateY(0); } }

.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card{
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: var(--white);
}
.card__img{
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__img img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.card:hover .card__img img{ transform: scale(1.08); }
.card h3{ font-size: 1.2rem; margin: 24px 30px 10px; }
.card p{ color: var(--muted); font-size: 0.92rem; line-height: 1.6; margin: 0 30px 20px; }
.card__actions{
  display: flex;
  gap: 10px;
  margin: 0 30px 30px;
}
.card__actions .btn{
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* ===== Gallery ===== */
.gallery__filters{ margin-bottom: 36px; }
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
}
.gallery__item.hide{ display: none; }
.gallery__item img,
.gallery__item video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition), filter var(--transition);
}
.gallery__item:hover img,
.gallery__item:hover video{ transform: scale(1.06); filter: brightness(0.85); }
.gallery__play{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.gallery__play span{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(244,180,0,0.92);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform var(--transition);
}
.gallery__item:hover .gallery__play span{ transform: scale(1.1); }
.gallery__badge{
  position: absolute; top: 10px; right: 10px;
  background: rgba(20,17,12,0.7);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 999px;
}

/* ===== Lightbox ===== */
.lightbox{
  position: fixed; inset: 0; z-index: 800;
  background: rgba(10,9,7,0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open{ display: flex; }
.lightbox__stage{
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__stage img,
.lightbox__stage video{
  max-width: 90vw; max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox__close{
  position: absolute; top: 22px; right: 28px;
  background: none; border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox__close:hover{ color: var(--yellow); }
.lightbox__nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__nav:hover{ background: var(--yellow); color: var(--dark); }
.lightbox__prev{ left: 24px; }
.lightbox__next{ right: 24px; }

/* ===== Testimonials ===== */
.testimonials{ background: var(--dark); }
.testimonials .eyebrow{ color: var(--yellow); }
.testimonials h2{ color: var(--white); }
.testi-slider{
  max-width: 680px; margin: 0 auto;
  position: relative;
  min-height: 160px;
}
.testi{
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .6s ease;
  text-align: center;
}
.testi.active{ opacity: 1; visibility: visible; position: relative; }
.testi p{
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}
.testi strong{ color: var(--yellow); font-weight: 600; }
.testi-dots{ display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testi-dots span{
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testi-dots span.active{ background: var(--yellow); transform: scale(1.2); }

/* ===== CTA Banner ===== */
.cta-banner{
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-banner__overlay{ position: absolute; inset: 0; background: rgba(20,17,12,0.72); }
.cta-banner__content{ position: relative; z-index: 1; }
.cta-banner h2{ color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p{ color: rgba(255,255,255,0.8); margin-bottom: 30px; }

/* ===== Contact ===== */
.contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__list{ margin: 26px 0 30px; }
.contact__list li{
  display: flex; gap: 16px;
  margin-bottom: 24px;
}
.contact__icon{
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--yellow-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact__list strong{ display: block; margin-bottom: 4px; color: var(--dark); }
.contact__list p{ margin: 0; color: var(--muted); line-height: 1.6; }
.contact__list a:hover{ color: var(--yellow-dark); }
.contact__socials{ display: flex; gap: 12px; }
.contact__socials a{
  width: 46px; height: 46px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.contact__socials a:hover{ background: var(--yellow); transform: translateY(-3px); }

.contact__form{
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact__form h3{ margin-bottom: 24px; font-size: 1.3rem; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group{ position: relative; margin-bottom: 20px; }
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  padding: 16px 14px 8px;
  border: 1.5px solid #e7e1d5;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--dark);
  transition: border var(--transition);
  resize: vertical;
}
.form-group select{ appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: var(--yellow);
}
.form-group label{
  position: absolute;
  left: 14px; top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  pointer-events: none;
  transition: all var(--transition);
  background: var(--cream);
  padding: 0 4px;
}
.form-group select + label{
  top: -8px; left: 10px;
  font-size: 0.72rem;
  color: var(--yellow-dark);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label{
  top: -8px; left: 10px;
  font-size: 0.72rem;
  color: var(--yellow-dark);
}
.form-note{
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--yellow-dark);
  min-height: 1.2em;
}

.map{
  margin-top: 70px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer{ background: var(--dark); padding: 40px 0; }
.footer__inner{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer .brand__name{ color: var(--white); }
.footer__nav{ display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a{ color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
.footer__nav a:hover{ color: var(--yellow); }
.footer__copy{ color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; width: 100%; text-align: center; }

/* ===== Floating buttons ===== */
.whatsapp-fab{
  position: fixed; bottom: 90px; right: 26px; z-index: 400;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 10px 25px rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 10px 25px rgba(37,211,102,0.7); }
}
.call-fab{
  position: fixed; bottom: 154px; right: 26px; z-index: 400;
  width: 56px; height: 56px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(244,180,0,0.45);
  animation: pulseCall 2.2s ease infinite;
}
@keyframes pulseCall{
  0%,100%{ box-shadow: 0 10px 25px rgba(244,180,0,0.45); }
  50%{ box-shadow: 0 10px 25px rgba(244,180,0,0.75); }
}
.back-to-top{
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 48px; height: 48px;
  background: var(--yellow);
  color: var(--dark);
  border: none; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* ===== Scroll animation ===== */
[data-aos]{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].in-view{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .about__grid, .contact__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr 1fr; }
  .gallery__grid{ grid-template-columns: repeat(3, 1fr); }
  .about__media{ margin-bottom: 40px; }
}

@media (max-width: 760px){
  .nav{
    position: fixed; top: 0; right: 0;
    height: 100vh; width: 78%; max-width: 320px;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 450;
  }
  .nav.open{ transform: translateX(0); }
  .nav__link{ color: var(--white) !important; font-size: 1.05rem; }
  .nav__close{
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 18px; right: 24px;
    width: 40px; height: 40px;
    border: none; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.6rem; line-height: 1;
    cursor: pointer;
    z-index: 600;
  }
  .nav__close:hover{ background: var(--yellow); color: var(--dark); }
  .header__cta{ display: none; }
  .hamburger{ display: flex; }
  .cards{ grid-template-columns: 1fr; }
  .gallery__grid{ grid-template-columns: repeat(2, 1fr); }
  .lightbox__nav{ width: 40px; height: 40px; }
  .lightbox{ padding: 20px; }
  .form-row{ grid-template-columns: 1fr; }
  .about__img--sub{ display: none; }
  .about__badge{ right: 0; }
  section{ padding: 70px 0; }
  .cta-banner{ background-attachment: scroll; }
}

@media (max-width: 480px){
  .gallery__grid{ grid-template-columns: 1fr 1fr; }
  .contact__form{ padding: 26px; }
}

/* ===== Popup Enquiry Form ===== */
.popup-overlay{
  position: fixed; inset: 0;
  background: rgba(28, 26, 23, 0.75);
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 20px;
}
.popup-overlay.active{ opacity: 1; visibility: visible; }
body.popup-open{ overflow: hidden; }

.popup-box{
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(-30px) scale(0.96);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.popup-overlay.active .popup-box{
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup-close{
  position: absolute; top: 12px; right: 14px;
  width: 34px; height: 34px;
  border: none; border-radius: 50%;
  background: var(--yellow-light);
  color: var(--dark);
  font-size: 1.4rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.popup-close:hover{ background: var(--yellow); }

.popup-eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--yellow-dark);
  font-weight: 600;
  margin: 0 0 6px;
}
.popup-title{
  font-family: var(--font-head);
  color: var(--dark);
  font-size: 1.5rem;
  margin: 0 0 10px;
}
.popup-text{
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 22px;
}

.popup-box .form-control{
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e7ddc9;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.popup-box .form-control:focus{ border-color: var(--yellow); }

@media (max-width: 480px){
  .popup-box{ padding: 34px 22px 26px; }
}
