/* ===== Anokhi Cloth Corner — Royal Deep Green & Gold Theme ===== */

:root {
  --green-950: #0a2e22;
  --green-900: #0f3d2e;
  --green-800: #15503c;
  --green-700: #1b6349;
  --green-600: #227a5b;
  --green-100: #e7f2ec;
  --gold-600: #b8912f;
  --gold-500: #c9a24b;
  --gold-400: #dcbb6f;
  --gold-100: #f6ecd2;
  --cream: #fbf7ee;
  --ink: #232620;
  --ink-soft: #5c6259;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(15, 61, 46, 0.12);
  --shadow-soft: 0 6px 18px rgba(15, 61, 46, 0.08);
  --radius: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--green-950); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-950);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-outline {
  border-color: var(--green-900);
  color: var(--green-900);
  background: transparent;
}
.btn-outline:hover { background: var(--green-900); color: var(--white); transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-950);
  color: var(--gold-100);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left .sep { margin: 0 8px; opacity: 0.5; }
.topbar-right { display: flex; gap: 18px; }
.topbar-right a { transition: color 0.2s; }
.topbar-right a:hover { color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(15, 61, 46, 0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { color: var(--gold-600); flex-shrink: 0; display: flex; align-items: center; }
.brand-mark img { height: 46px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-950);
}
.brand-name em { font-style: normal; color: var(--gold-600); }
.brand-name.light { color: var(--cream); }
.brand-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--green-800); }
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; padding: 11px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--green-950);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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;
  background: radial-gradient(ellipse at top right, var(--green-800) 0%, var(--green-950) 60%);
  padding: 70px 0 140px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,0.12) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,162,75,0.1) 0, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding-top: 20px;
}
.hero-content .eyebrow { color: var(--gold-400); }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--gold-400); font-style: italic; }
.hero-desc {
  color: rgba(251, 247, 238, 0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero .btn-outline { border-color: var(--gold-400); color: var(--gold-100); }
.hero .btn-outline:hover { background: var(--gold-400); color: var(--green-950); }

.hero-stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-400); }
.stat span { font-size: 0.78rem; color: rgba(251, 247, 238, 0.7); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual { position: relative; height: 420px; }
.drape-card {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  background: linear-gradient(160deg, var(--gold-500), var(--green-700) 70%);
  animation: floatY 6s ease-in-out infinite;
}
.drape-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1s ease, transform 5s ease-out;
}
.hero-slideshow img.active { opacity: 1; transform: scale(1.09); }
.hero-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 5;
}
.hero-dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dots button.active { background: var(--gold-400); transform: scale(1.3); }
.drape-1 {
  width: 62%; height: 78%;
  top: 0; right: 6%;
  animation-delay: 0s;
}
.drape-2 {
  width: 46%; height: 56%;
  bottom: 0; left: 0;
  opacity: 0.96;
  animation-delay: -2s;
  animation-duration: 7s;
}
.drape-3 {
  width: 34%; height: 34%;
  top: 8%; left: 4%;
  border-radius: 50%;
  opacity: 0.92;
  animation-delay: -4s;
  animation-duration: 5.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.hero-badge {
  position: absolute;
  bottom: 8%; right: 4%;
  background: var(--cream);
  color: var(--green-950);
  padding: 12px 18px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.hero-badge svg { color: var(--gold-600); }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }
.section-head.light h2 { color: var(--cream); }
.section-head.light p { color: rgba(251,247,238,0.75); }
.section-head.light .eyebrow { color: var(--gold-400); }

/* ---------- Gallery Slider ---------- */
.gallery { padding: 90px 0 100px; background: var(--cream); overflow: hidden; }
.gallery .section-head { margin-bottom: 44px; }

.slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 8.5;
}
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 48px;
  background: linear-gradient(0deg, rgba(10,46,34,0.92) 0%, rgba(10,46,34,0.55) 55%, transparent 100%);
  color: var(--cream);
}
.slide-caption h3 { color: var(--gold-400); font-size: 1.9rem; margin-bottom: 8px; }
.slide-caption p { color: rgba(251,247,238,0.88); max-width: 460px; margin-bottom: 18px; font-size: 0.95rem; }
.slide-caption .btn-primary { padding: 10px 22px; font-size: 0.85rem; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(251,247,238,0.92);
  color: var(--green-950);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-btn:hover { background: var(--gold-500); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 9px;
  z-index: 5;
}
.slider-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(251,247,238,0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots .dot.active { background: var(--gold-400); transform: scale(1.35); }

@media (max-width: 700px) {
  .slide { aspect-ratio: 4 / 5; }
  .slide-caption { padding: 28px 24px; }
  .slide-caption h3 { font-size: 1.5rem; }
  .slider-btn { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* ---------- Collections ---------- */
.collections { padding: 100px 0 90px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0 0 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(15,61,46,0.06);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.cat-card h3, .cat-card p, .cat-card .cat-link { padding-left: 28px; padding-right: 28px; }

.cat-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 24px;
}
.cat-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-thumb img { transform: scale(1.08); }

.cat-icon {
  position: absolute;
  left: 20px; bottom: -24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}
.cat-card h3 { font-size: 1.3rem; margin-bottom: 10px; margin-top: 14px; }
.cat-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; }
.cat-link { color: var(--gold-600); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.cat-link:hover { color: var(--green-800); }

/* staggered reveal for grids */
.cat-grid .cat-card:nth-child(1) { transition-delay: 0.03s; }
.cat-grid .cat-card:nth-child(2) { transition-delay: 0.11s; }
.cat-grid .cat-card:nth-child(3) { transition-delay: 0.19s; }
.cat-grid .cat-card:nth-child(4) { transition-delay: 0.03s; }
.cat-grid .cat-card:nth-child(5) { transition-delay: 0.11s; }
.cat-grid .cat-card:nth-child(6) { transition-delay: 0.19s; }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--green-100); }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
  position: relative;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(201,162,75,0.15) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 70% 30%, rgba(201,162,75,0.35), transparent 55%);
}
.about-exp {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold-500);
  color: var(--green-950);
  padding: 22px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-exp strong { display: block; font-family: var(--font-display); font-size: 1.9rem; }
.about-exp span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; }

.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 8px 0 18px; }
.about-content p { color: var(--ink-soft); margin-bottom: 22px; }
.about-points { margin-bottom: 28px; }
.about-points li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 500; }
.tick { color: var(--gold-600); font-weight: 700; }

/* ---------- Why us ---------- */
.why-us { padding: 90px 0; background: var(--green-950); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: rgba(251,247,238,0.05);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); background: rgba(251,247,238,0.08); }
.feature-grid .feature-card:nth-child(1) { transition-delay: 0.03s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: 0.11s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: 0.19s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: 0.03s; }
.feature-grid .feature-card:nth-child(5) { transition-delay: 0.11s; }
.feature-grid .feature-card:nth-child(6) { transition-delay: 0.19s; }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-950);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: rgba(251,247,238,0.68); font-size: 0.9rem; }

/* ---------- Google reviews badge ---------- */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto 50px;
  padding: 26px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15,61,46,0.06);
}
.google-badge-info { display: flex; flex-direction: column; gap: 8px; }
.google-badge-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; color: var(--green-950); }
.google-badge-icon { flex-shrink: 0; }
.google-badge-rating { display: flex; align-items: baseline; gap: 10px; }
.google-badge-rating strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-950); line-height: 1; }
.google-badge-rating .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 1rem; }
.google-badge-rating .count { color: var(--ink-soft); font-size: 0.85rem; }
.google-badge-btn { flex-shrink: 0; padding: 12px 26px; font-size: 0.88rem; white-space: nowrap; }

@media (max-width: 640px) {
  .google-badge { flex-direction: column; text-align: center; }
  .google-badge-brand { justify-content: center; }
  .google-badge-rating { justify-content: center; flex-wrap: wrap; }
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold-500);
}
.testi-grid .testi-card:nth-child(1) { transition-delay: 0.05s; }
.testi-grid .testi-card:nth-child(2) { transition-delay: 0.15s; }
.testi-grid .testi-card:nth-child(3) { transition-delay: 0.25s; }
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--ink-soft); font-style: italic; margin-bottom: 16px; }
.testi-card strong { color: var(--green-900); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; background: var(--green-100); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 8px 0 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 30px; }
.info-row { display: flex; gap: 16px; margin-bottom: 22px; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}
.info-row strong { display: block; margin-bottom: 3px; color: var(--green-950); }
.info-row p { color: var(--ink-soft); font-size: 0.92rem; }
.info-row a:hover { color: var(--gold-600); }

.social-row { display: flex; gap: 14px; margin-top: 26px; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.social-icon:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow); }
.social-instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); color: #fff; }
.social-facebook:hover { background: #1877f2; color: #fff; }
.social-whatsapp:hover { background: #25D366; color: #fff; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--green-950); }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(15,61,46,0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-submit { width: 100%; margin-top: 6px; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--green-700); font-weight: 500; min-height: 1.2em; }

/* ---------- Legal pages ---------- */
.legal-hero {
  background: radial-gradient(ellipse at top right, var(--green-800) 0%, var(--green-950) 60%);
  padding: 64px 0 44px;
}
.legal-hero .eyebrow { color: var(--gold-400); }
.legal-hero h1 { color: var(--cream); font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.legal-hero p { color: rgba(251,247,238,0.75); margin-top: 10px; }
.legal-content { padding: 60px 0 90px; }
.legal-content .container { max-width: 860px; }
.legal-content h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--ink-soft); margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; }
.legal-content li { color: var(--ink-soft); margin-bottom: 8px; padding-left: 22px; position: relative; }
.legal-content li::before { content: "•"; color: var(--gold-600); position: absolute; left: 4px; }
.legal-content a { color: var(--gold-600); text-decoration: underline; }
.legal-content a:hover { color: var(--green-800); }
.legal-content .updated { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 30px; font-style: italic; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(251,247,238,0.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p { margin-top: 14px; font-size: 0.88rem; line-height: 1.7; }
.footer-links h4 { color: var(--gold-400); font-size: 0.95rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.footer-links a { display: block; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(251,247,238,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.legal-links { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; flex-wrap: wrap; justify-content: center; }
.legal-links a { transition: color 0.2s; }
.legal-links a:hover { color: var(--gold-400); }
.legal-links .sep { opacity: 0.4; }
.powered-by {
  margin-top: 8px;
  font-size: 0.72rem;
  color: rgba(251,247,238,0.5);
}
.powered-by a { color: rgba(251,247,238,0.7); text-decoration: underline; transition: color 0.2s; }
.powered-by a:hover { color: var(--gold-400); }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulseRing 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--gold-400);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ================= Responsive ================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px;
    background: var(--cream); flex-direction: column; padding: 100px 32px 32px; gap: 22px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15); transition: right 0.35s ease; z-index: 99; }
  .main-nav.open { right: 0; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .topbar-left { display: flex; flex-direction: column; gap: 2px; }
  .topbar-left .sep { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .drape-card, .whatsapp-float::before, .btn-primary::after {
    animation: none !important;
    transition: none !important;
  }
  .slider-track, .hero-slideshow img { transition: none !important; }
  .hero-slideshow img { transform: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
