/* ═══════════════════════════════════════════════════
   Inna F. Cosmetics — Stylesheet
   Palette sampled from brand reference:
     --cream:     #d8c8bc
     --plum:      #7b6068
     --rose:      #b58a7e
     --blush:     #cfadab
     --stone:     #cdc0bc
     --mist:      #d7d7d7
   ═══════════════════════════════════════════════════ */

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

:root {
  --cream:   #d8c8bc;
  --blush:   #cfadab;
  --petal:   #cdc0bc;
  --mauve:   #a97b71;
  --plum:    #6f545d;
  --deep:    #4c3940;
  --gold:    #b08a7d;
  --mist:    #d7d7d7;
  --white:   #ffffff;
  --text:    #3f3137;
  --muted:   #6f5e62;
  --radius:  18px;
  --shadow:  0 8px 40px rgba(123, 96, 104, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 96, 104, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 200, 188, 0.92) 0%, rgba(216, 200, 188, 0.52) 34%, transparent 68%),
    radial-gradient(circle at top right, rgba(123, 96, 104, 0.14) 0%, transparent 40%),
    linear-gradient(180deg, #d2c3b8 0%, #c8b9ae 48%, #d0c1b6 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #58424b;
  line-height: 1.2;
}
em { font-style: italic; color: #b18074; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7065;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 1px;
  background: #9b7065;
}
.section-title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 18px; }
.section-sub   { max-width: 540px; color: var(--muted); margin-bottom: 52px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #6f545d 0%, #5d4450 100%);
  color: #fffaf7;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #8f6960 0%, #7b5a55 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 92, 110, 0.30);
}
.btn-ghost {
  background: rgba(255, 252, 250, 0.36);
  color: #5f4550;
  border: 1.5px solid rgba(111, 84, 93, 0.28);
}
.btn-ghost:hover {
  background: rgba(255, 252, 250, 0.55);
  border-color: rgba(111, 84, 93, 0.45);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }


/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav-header.scrolled {
  background: rgba(250,245,241,0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(122,92,110,0.10);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #5b444d;
}
.nav-logo span { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo em   { font-size: 13px; letter-spacing: 2px; color: var(--mauve); font-style: normal; }
.logo-mark { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: #5b444d;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--mauve);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--mauve); }
.nav-cta {
  background: linear-gradient(135deg, #6f545d 0%, #5d4450 100%);
  color: #fffaf7 !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta:hover { background: linear-gradient(135deg, #8f6960 0%, #7b5a55 100%) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: #5b444d;
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 60px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
}
.hero-bg-shapes {
  position: fixed;
  inset: 0; z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--cream);
  top: -100px; right: -100px;
  opacity: 0.28;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--stone);
  bottom: 100px; left: -80px;
  opacity: 0.22;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--blush);
  top: 50%; right: 30%;
  opacity: 0.14;
}

.hero-content {
  flex: 1;
  max-width: 580px;
}
.hero-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b7065;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: #9b7065;
}
.hero-title {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.05;
  color: #59414a;
  margin-bottom: 24px;
}
.hero-title em {
  font-size: clamp(60px, 7vw, 100px);
  display: block;
}
.hero-sub {
  font-size: 16px;
  color: #6d5a5e;
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #59414a;
  line-height: 1;
}
.stat span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7b676b;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--petal);
}

.hero-visual {
  flex: 1;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 45%, rgba(181, 138, 126, 0.24) 0%, rgba(216, 200, 188, 0.2) 40%, rgba(216, 200, 188, 0) 75%);
  filter: blur(24px);
  z-index: -1;
  pointer-events: none;
}
.hero-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 70%, rgba(0, 0, 0, 0.9) 82%, rgba(0, 0, 0, 0.55) 92%, transparent 100%);
  mask-image: radial-gradient(circle at 50% 45%, #000 70%, rgba(0, 0, 0, 0.9) 82%, rgba(0, 0, 0, 0.55) 92%, transparent 100%);
  filter: drop-shadow(0 22px 50px rgba(90, 69, 76, 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}


/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-strip {
  background: #5d454e;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  padding: 100px 0;
  background: rgba(248, 241, 237, 0.82);
}
.services .container { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
  text-align: left;
}

.service-card {
  background: rgba(255, 251, 249, 0.92);
  border: 1px solid rgba(205, 192, 188, 0.8);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216,200,188,0.35) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--petal);
}
.service-card--facial::after {
  background-image: url('Images/Facial Treatment.png');
}
.service-card--permanent::after {
  background-image: url('Images/permanent makeup.png');
}
.service-card--optimas::after {
  background-image: url('Images/Laser.jpg');
}
.service-card--featured {
  background: linear-gradient(135deg, rgba(216,200,188,0.45) 0%, rgba(207,173,171,0.35) 100%);
  border-color: var(--petal);
  box-shadow: var(--shadow);
}
.featured-badge {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.card-icon-wrap {
  width: 80px; height: 80px;
  margin-bottom: 24px;
}
.card-icon-wrap svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 14px;
  color: #131212;
  margin-bottom: 20px;
}
.service-list { margin-bottom: 28px; }
.service-list li {
  font-size: 13px;
  color: #0f0f0f;
  padding: 6px 0;
  border-bottom: 1px solid #f5eaef;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✦';
  font-size: 8px;
  color: var(--gold);
}
.card-link {
  font-size: 13px;
  font-weight: 500;
  color: #5b444d;
  letter-spacing: 0.5px;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
}
.card-link:hover { color: var(--mauve); }


/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--blush);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame svg,
.about-img-frame img {
  width: 100%;
  display: block;
}
.about-img-frame img {
  aspect-ratio: 380 / 460;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(61,43,54,0.25);
}
.about-badge svg { width: 100%; height: 100%; }

.about-text .section-title { margin-bottom: 12px; }
.about-lead {
  font-size: 18px;
  color: #58424b;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}
.about-text p {
  font-size: 15px;
  color: #6a595d;
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-features { margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4a3940;
}
.feature-icon {
  width: 28px; height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(196,154,138,0.2);
}


/* ══════════════════════════════
   RESULTS
══════════════════════════════ */
.results {
  padding: 100px 0;
  background: rgba(249, 243, 239, 0.86);
}
.results .container { text-align: center; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.result-card {
  border: 1px solid #f0e0ea;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.result-visual svg {
  width: 100%;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.result-card h4 {
  font-size: 20px;
  padding: 20px 22px 6px;
}
.result-card p {
  font-size: 13px;
  color: #6a595d;
  padding: 0 22px 24px;
  line-height: 1.6;
}


/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(205,189,180,0.74) 0%, rgba(194,181,174,0.7) 50%, rgba(208,206,205,0.58) 100%);
  position: relative;
  overflow: hidden;
}
.why-bg-shape {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(123,96,104,0.08);
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.why-text { position: sticky; top: 100px; }
.why-text p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-card {
  background: rgba(255, 252, 250, 0.9);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(232,197,216,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 50px; height: 50px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }


/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: rgba(249, 243, 239, 0.84);
}
.testimonials .container { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.testi-card {
  background: rgba(255, 252, 250, 0.88);
  border: 1px solid rgba(232,197,216,0.5);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-card--accent {
  background: var(--plum);
  border-color: transparent;
}
.testi-card--accent p,
.testi-card--accent .stars { color: rgba(255,255,255,0.9); }
.testi-card--accent .testi-author strong { color: white; }
.testi-card--accent .testi-author span   { color: rgba(255,255,255,0.6); }

.stars {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 14px;
  color: #4b3a41;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 15px;
  color: var(--plum);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.testi-author span {
  font-size: 11px;
  color: #7a676b;
  letter-spacing: 0.5px;
}


/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(208,186,176,0.88) 0%, rgba(198,178,169,0.8) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin: 36px 0; display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 38px; height: 38px;
  background: rgba(255, 252, 250, 0.92);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(196,154,138,0.15);
}
.contact-item strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5b444d;
  margin-bottom: 2px;
}
.contact-item span { font-size: 14px; color: var(--muted); }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 42px; height: 42px;
  background: rgba(255, 252, 250, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b444d;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(122,92,110,0.10);
}
.social-btn:hover {
  background: linear-gradient(135deg, #6f545d 0%, #5d4450 100%);
  color: #fffaf7;
  transform: translateY(-3px);
}

/* Form */
.contact-form-wrap {
  background: rgba(255, 251, 249, 0.94);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5b444d;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #f0e0ea;
  border-radius: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #3f3137;
  background: rgba(255, 252, 250, 0.94);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: #8b6359;
  box-shadow: 0 0 0 3px rgba(139,99,89,0.12);
}
input::placeholder, textarea::placeholder { color: #927b80; }
select { cursor: pointer; }
textarea { resize: vertical; min-height: 90px; }

.form-success {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #5b444d;
  min-height: 20px;
}


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 200px;
}

.footer-links h5,
.footer-contact h5 {
  color: white;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--petal); }

.footer-contact p {
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}


/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid,
  .results-grid { grid-template-columns: 1fr 1fr; }
  .about-inner  { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .why-inner    { grid-template-columns: 1fr; }
  .why-text     { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
  }
  .hero-tagline { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { max-width: 320px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    font-size: 20px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .burger { display: flex; z-index: 1001; }

  .services-grid,
  .results-grid,
  .testimonials-grid,
  .why-cards { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-badge  { width: 70px; height: 70px; bottom: -14px; right: -14px; }

  .section-sub { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .contact-form-wrap { padding: 28px 22px; }
  .services { padding: 70px 0; }
  .about, .results, .why-us, .testimonials, .contact { padding: 70px 0; }
}


/* ══════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0 12px;
}
.lang-btn {
  background: none;
  border: 1.5px solid transparent;
  border-radius: 7px;
  padding: 4px 9px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #5b444d;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
}
.lang-btn:hover {
  border-color: var(--petal);
  background: rgba(207, 173, 171, 0.28);
}
.lang-btn.active {
  background: #6f545d;
  color: #fff;
  border-color: #6f545d;
}
/* Keep switcher visible inside the mobile overlay */
@media (max-width: 768px) {
  .lang-switcher {
    position: fixed;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1002;
    background: rgba(255, 252, 250, 0.96);
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(122,92,110,0.15);
    margin: 0;
  }
}


/* ══════════════════════════════
   RTL SUPPORT  (Hebrew)
══════════════════════════════ */
html[dir="rtl"] body {
  font-family: 'Noto Sans Hebrew', 'Jost', sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5 {
  font-family: 'Noto Sans Hebrew', 'Cormorant Garamond', serif;
}

/* Section label — move the decorative line to the right */
html[dir="rtl"] .section-label {
  padding-left: 0;
  padding-right: 32px;
}
html[dir="rtl"] .section-label::before {
  left: auto;
  right: 0;
}

/* Hero tagline decorative line */
html[dir="rtl"] .hero-tagline::before {
  margin-right: 0;
  margin-left: 10px;
  order: 1;
}

/* Nav badge badge for RTL fix */
html[dir="rtl"] .about-badge {
  right: auto;
  left: -20px;
}

/* Form row stays LTR-like since inputs look better consistently */
html[dir="rtl"] .form-group label {
  text-align: right;
}
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea {
  text-align: right;
}

/* Contact item icons — keep icon on the right in RTL */
html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}
html[dir="rtl"] .contact-item > div:last-child {
  text-align: right;
}

/* Feature items */
html[dir="rtl"] .feature-item {
  flex-direction: row-reverse;
}

/* Testi author */
html[dir="rtl"] .testi-author {
  flex-direction: row-reverse;
  text-align: right;
}

/* Footer */
html[dir="rtl"] .footer-links ul,
html[dir="rtl"] .footer-brand p {
  text-align: right;
}

/* Why card text */
html[dir="rtl"] .why-card {
  text-align: right;
}

/* Hero stats */
html[dir="rtl"] .stat {
  align-items: flex-end;
}

/* Card link arrow direction already handled by Hebrew translation ("← הזמן") */
