/* ============================================================
   TONDY'S BEAUTY BAR — style.css
   Luxury Feminine Beauty Salon Website
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --white:       #ffffff;
  --off-white:   #fdf9f7;
  --cream:       #f9f4ef;
  --blush:       #f4d8d0;
  --pink:        #e8a8a0;
  --rose:        #c97b72;
  --rose-dark:   #a85a52;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --nude:        #e8d0c0;
  --beige:       #d4b896;
  --dark:        #2c1810;
  --dark-soft:   #3d2216;
  --text:        #4a2e22;
  --text-light:  #7a5548;
  --text-muted:  #a07868;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', sans-serif;

  --nav-h: 80px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(44,24,16,0.10);
  --shadow-hover: 0 16px 60px rgba(44,24,16,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(168,90,82,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(168,90,82,0.45);
}
.btn-outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,255,255,0.4); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.full-width { width: 100%; justify-content: center; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(44,24,16,0.10); }
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--rose); background: var(--blush); }
.nav-links a.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  padding: 10px 22px;
  margin-left: 8px;
  box-shadow: 0 4px 16px rgba(168,90,82,0.3);
}
.nav-links a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168,90,82,0.4); background: var(--blush); color: var(--rose); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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 {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--off-white) 0%, var(--cream) 50%, var(--blush) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232,168,160,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201,169,110,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: var(--nude); }

/* Hero Images */
.hero-images {
  position: relative;
  height: 520px;
  opacity: 0;
  animation: fadeIn 1s 0.5s forwards;
}
.hero-img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 { top: 0; left: 0; width: 65%; height: 68%; z-index: 2; }
.hero-img-2 { bottom: 0; right: 0; width: 54%; height: 58%; z-index: 3; border: 4px solid var(--white); }
.hero-img-3 { top: 50%; right: 12%; transform: translateY(-50%); width: 36%; height: 44%; z-index: 1; opacity: 0.85; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

/* ================================================================
   MARQUEE
================================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold-light); font-size: 0.7rem; }

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; height: 540px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 5px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(168,90,82,0.4);
  z-index: 3;
  border: 4px solid var(--white);
}
.about-badge i { font-size: 1.2rem; margin-bottom: 4px; }
.about-badge span { font-size: 0.62rem; line-height: 1.3; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.about-text .section-title { text-align: left; }
.about-text .section-eyebrow { text-align: left; }
.about-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 300;
}
.about-text p { color: var(--text-light); margin-bottom: 16px; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 8px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blush);
}
.pillar i { font-size: 1.2rem; color: var(--rose); }
.pillar span { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text); }

/* ================================================================
   SERVICES
================================================================ */
.services { background: var(--white); }
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background: var(--cream);
  border: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 6px 20px rgba(168,90,82,0.3);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.nails-grid { grid-template-columns: repeat(4, 1fr); }

.service-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--blush);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink);
  background: var(--white);
}
.service-card.featured {
  background: linear-gradient(160deg, #fff 0%, var(--blush) 100%);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.1rem;
}
.service-card.featured .service-icon { background: rgba(168,90,82,0.15); }
.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-info p { font-size: 0.84rem; color: var(--text-light); line-height: 1.5; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose);
  margin-top: auto;
}
.service-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.service-notice i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.service-notice p { font-size: 0.875rem; color: var(--text-light); font-style: italic; }

/* ================================================================
   WHY US
================================================================ */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--blush);
  transition: var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--pink);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--nude));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* ================================================================
   GALLERY
================================================================ */
.gallery { background: var(--dark); }
.gallery .section-eyebrow { color: var(--gold-light); }
.gallery .section-title { color: var(--white); }
.gallery .section-title em { color: var(--gold); }
.gallery .section-desc { color: rgba(255,255,255,0.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item-large { grid-column: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-content p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 0.9rem; letter-spacing: 0.1em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  color: var(--white);
  font-size: 1.2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--rose); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--blush);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card.featured-testimonial {
  background: linear-gradient(160deg, #fff 0%, var(--blush) 100%);
  border-color: var(--pink);
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--dark); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, var(--dark-soft) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(201,169,110,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1rem;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   CONTACT
================================================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-item > i {
  font-size: 1.3rem;
  color: var(--rose);
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 0.85rem; color: var(--dark); margin-bottom: 2px; }
.contact-item a { font-size: 0.9rem; color: var(--text-light); transition: color var(--transition); }
.contact-item a:hover { color: var(--rose); }
.whatsapp-btn { background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.whatsapp-btn:hover { box-shadow: 0 12px 36px rgba(37,211,102,0.45); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--blush);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,123,114,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: none;
}
.form-message.success { background: #f0fff4; color: #276749; border: 1px solid #9ae6b4; display: block; }
.form-message.error { background: #fff5f5; color: #c53030; border: 1px solid #feb2b2; display: block; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { height: 60px; width: auto; object-fit: contain; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links-col ul li a:hover { color: var(--white); }
.footer-contact-mini { margin-top: 28px; }
.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact-mini a:hover { color: var(--white); }
.footer-contact-mini i { color: #25D366; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.webcrafthq-link { color: var(--gold-light); font-weight: 600; transition: color var(--transition); }
.webcrafthq-link:hover { color: var(--white); }

/* ================================================================
   FLOATING WHATSAPP
================================================================ */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 998;
  transition: var(--transition);
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.floating-wa:hover .wa-tooltip { opacity: 1; }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(168,90,82,0.4);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--rose-dark); transform: translateY(-2px); }

/* ================================================================
   ANIMATIONS
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; text-align: center; padding: 120px 40px 60px; }
  .hero-images { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 20px 40px rgba(44,24,16,0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 13px 16px; border-radius: var(--radius-sm); }
  .nav-links a.nav-cta { text-align: center; margin-left: 0; margin-top: 8px; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: center; }

  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .nails-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .nails-grid { grid-template-columns: 1fr; }
  .floating-wa { bottom: 24px; right: 24px; }
  .back-to-top { bottom: 24px; left: 24px; }
}
