/* ─────────────────────────────────────────────────────────────
   4 Nails & Spa — Styles
   Palette: Emerald (#0f4c3a / #1a6b52 / #2d8a6e) + Cream (#faf6f0 / #f3ece0)
   Fonts: Cormorant Garamond (headings) + Nunito Sans (body)
──────────────────────────────────────────────────────────── */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald-deep:    #0f4c3a;
  --emerald:         #1a6b52;
  --emerald-light:   #2d8a6e;
  --emerald-pale:    #e8f5ef;
  --cream:           #faf6f0;
  --cream-dark:      #f3ece0;
  --cream-mid:       #ede4d4;
  --text-dark:       #1a2e28;
  --text-mid:        #3d5a4e;
  --text-light:      #6b8a7c;
  --white:           #ffffff;
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --shadow-sm:       0 2px 8px rgba(15,76,58,0.06);
  --shadow-md:       0 8px 30px rgba(15,76,58,0.08);
  --shadow-lg:       0 16px 50px rgba(15,76,58,0.12);
  --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
}

.accent-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--emerald);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: var(--emerald-light);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-xl);
  padding: 14px 30px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(15,76,58,0.25);
}
.btn--primary:hover {
  background: var(--emerald-light);
  box-shadow: 0 8px 24px rgba(15,76,58,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--emerald-deep);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--emerald-deep);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--emerald-deep);
  border-color: var(--white);
}

.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,76,58,0.07);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250,246,240,0.97);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--emerald-deep);
  flex-shrink: 0;
}
.logo-mark { color: var(--emerald-deep); }
.logo-accent { color: var(--emerald-light); font-weight: 400; font-style: italic; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--emerald); background: var(--emerald-pale); }
.nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 0.9rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--emerald-pale); }
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--emerald-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250,246,240,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; padding: 14px 20px; width: 100%; text-align: center; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--emerald-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4783288/pexels-photo-4783288.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=1000');
  background-size: cover;
  background-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,76,58,0.82) 0%,
    rgba(26,107,82,0.68) 50%,
    rgba(15,76,58,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #a8e6cf, #7dcea0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  animation: float 2.4s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── SECTION SHARED ───────────────────────────────────────── */
.section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body {
  padding: 24px;
}
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-pale);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
}
.service-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery { background: var(--cream-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,76,58,0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-row: 1 / 3; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { height: 220px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-row: auto; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 260px; }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 520px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--emerald);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.85;
  text-transform: uppercase;
}

.about-content { max-width: 480px; }
.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}
.about-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 400px; }
  .about-content { max-width: 100%; }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .about-img-float { width: 140px; height: 140px; bottom: -20px; right: -12px; }
  .about-stat { top: -12px; left: -12px; padding: 14px 18px; }
  .stat-number { font-size: 1.8rem; }
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews { background: var(--emerald-pale); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--emerald-pale);
  opacity: 0.6;
}
.review-text {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  padding-right: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.review-author-location {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--emerald-deep);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/4783287/pexels-photo-4783287.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=600');
  background-size: cover;
  background-position: center;
}
.cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,76,58,0.9) 0%, rgba(26,107,82,0.82) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-eyebrow { color: rgba(255,255,255,0.65); }
.cta-eyebrow::before { background: rgba(255,255,255,0.45); }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--emerald-pale);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--emerald); text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-mid);
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,76,58,0.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233d5a4e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--emerald-pale);
  border-radius: var(--radius-sm);
  color: var(--emerald-deep);
  font-size: 0.92rem;
  font-weight: 600;
}
.form-success svg { color: var(--emerald); flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--emerald-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-mark { color: var(--white); }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
  opacity: 0.75;
}
.footer-heading {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-address { font-size: 0.9rem; line-height: 1.8; }
.footer-address a { transition: var(--transition); }
.footer-address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── SCROLL REVEAL (progressive enhancement) ─────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
