/* ============================================================
   Lanar Beauty — Global Stylesheet (v2)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bg:           #fdf8f5;
  --primary:      #f2c4ce;
  --primary-dark: #e8a0b0;
  --secondary:    #d4b8e0;
  --accent:       #b8d8d8;
  --text:         #4a4a4a;
  --heading:      #3a3a3a;
  --footer-bg:    #f7eff4;
  --white:        #ffffff;
  --radius:       14px;
  --radius-lg:    24px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 36px rgba(0,0,0,0.11);
  --shadow-pink:  0 12px 40px rgba(232,160,176,0.25);
  --transition:   0.3s ease;
  --max-width:    1120px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--heading); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { font-size: 1rem; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes float      { 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(-18px) rotate(3deg); } }
@keyframes floatAlt   { 0%,100%{ transform:translateY(0) rotate(0deg); } 50%{ transform:translateY(14px) rotate(-4deg); } }
@keyframes scrollBounce { 0%,100%{ transform:translateX(-50%) translateY(0); } 60%{ transform:translateX(-50%) translateY(9px); } }
@keyframes shimmer    { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes spin       { to { transform:rotate(360deg); } }
@keyframes pulse-ring { 0%{ box-shadow:0 0 0 0 rgba(242,196,206,0.55); } 70%{ box-shadow:0 0 0 16px rgba(242,196,206,0); } 100%{ box-shadow:0 0 0 0 rgba(242,196,206,0); } }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .75s ease,transform .75s ease; }
.reveal-right { opacity:0; transform:translateX(40px);  transition:opacity .75s ease,transform .75s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Utilities ────────────────────────────────────────────── */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.section   { padding: 100px 0; }
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 10px;
}
.section-title    { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: #999; font-size: 1.02rem; margin-bottom: 56px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: var(--heading); border: none; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-pink); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--heading); }
.btn-outline:hover { background: var(--primary); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253,248,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(237,228,233,0.8);
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--heading); letter-spacing: 0.3px; }
.nav-logo span { color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > li > a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links > li > a:hover { color: var(--heading); }
.nav-links > li > a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  padding-top: 16px;
  background: transparent;
  min-width: 220px;
  animation: fadeInDown 0.25s ease;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid #f0e8ed;
  z-index: -1;
}
.dropdown-menu a { display: block; padding: 11px 22px; font-size: 0.88rem; color: var(--text); transition: color .2s, background .2s; }
.dropdown-menu a:hover { background: var(--bg); color: var(--primary-dark); }
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--heading); border-radius: 2px; transition: var(--transition); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,12,22,0.42) 0%, rgba(30,12,22,0.22) 50%, rgba(30,12,22,0.55) 100%);
}
/* Floating blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.hero-blob-1 { width: 520px; height: 520px; background: rgba(242,196,206,0.3); top: -140px; right: -120px; animation: float 8s ease-in-out infinite; }
.hero-blob-2 { width: 380px; height: 380px; background: rgba(212,184,224,0.25); bottom: 0px; left: -80px; animation: floatAlt 7s 1s ease-in-out infinite; }
.hero-blob-3 { width: 260px; height: 260px; background: rgba(184,216,216,0.2); bottom: 100px; right: 10%; animation: float 9s 3s ease-in-out infinite; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 5%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
  margin-bottom: 22px;
  animation: fadeInUp 0.9s 0.15s ease both;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--primary);
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
  animation: fadeInUp 0.9s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s 0.45s ease both;
}
/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.2s 1.2s ease both;
}
.scroll-indicator span {
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  animation: scrollBounce 1.8s infinite;
}

/* Service page hero (shorter) */
.hero-sm { min-height: 54vh; text-align: left; }
.hero-sm .hero-content { margin: 0; padding-left: 5%; text-align: left; }
.hero-sm .hero-content h1 { animation: none; }
.hero-sm .hero-content p  { animation: none; font-size: 1.05rem; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid #f0e8ed;
  padding: 52px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #f0e8ed;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #aaa;
}

/* ── Services Grid (home) ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,12,22,0.82) 0%, rgba(30,12,22,0.08) 55%);
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(30,12,22,0.9) 0%, rgba(30,12,22,0.45) 100%);
}
.service-card-overlay h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.service-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease, margin 0.35s ease;
  margin-bottom: 0;
}
.service-card:hover .service-card-overlay p { max-height: 80px; opacity: 1; margin-bottom: 16px; }
.service-card-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.1s ease, transform 0.35s ease;
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.82rem;
}
.service-card:hover .service-card-overlay .btn { opacity: 1; transform: translateY(0); }

/* ── Why Us ───────────────────────────────────────────────── */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 38px 26px 34px;
  text-align: center;
  border: 1px solid #f0e8ed;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pink); border-color: var(--primary); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.1); animation: pulse-ring 1.5s 1; }
.why-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: #888; line-height: 1.65; }

/* ── About Section ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-lg); height: 480px; width: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-pink);
  text-align: center;
}
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--heading); line-height: 1; }
.about-img-badge span   { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; color: var(--heading); opacity: 0.7; text-transform: uppercase; }
.about-text .section-label { text-align: left; }
.about-text h2  { margin-bottom: 18px; }
.about-text p   { margin-bottom: 16px; color: #666; }
.about-features { display: flex; flex-direction: column; gap: 10px; margin: 26px 0 32px; }
.about-feature  { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); }
.about-feature .check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.about-feature .check svg { width: 12px; height: 12px; stroke: var(--heading); stroke-width: 2.5; fill: none; }

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-section {
  background: linear-gradient(135deg, #fce8ee 0%, #ede0f5 50%, #dceef0 100%);
  padding: 100px 0;
  text-align: center;
}
.testimonial-inner { max-width: 740px; margin: 0 auto; padding: 0 5%; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 7rem; color: rgba(232,160,176,0.5); line-height: 0.8; margin-bottom: 20px; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--heading);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-dark); }
.testimonial-stars  { color: #f2a44d; font-size: 1.1rem; margin-bottom: 18px; letter-spacing: 3px; }

/* ── Contact Bar ──────────────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-text p   { color: #666; margin-bottom: 32px; }
.contact-card {
  background: var(--bg);
  border: 1px solid #f0e8ed;
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0e8ed;
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 22px; height: 22px; stroke: var(--heading); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-text strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p { color: var(--heading); font-weight: 700; font-size: 0.97rem; }
.contact-item-text a:hover { color: var(--primary-dark); }

/* ── Service Page ─────────────────────────────────────────── */
.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 90px 0;
}
.service-body img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-md); }
.service-text h2 { margin-bottom: 20px; }
.service-text p  { margin-bottom: 18px; color: #666; }
.service-text ul { list-style: none; margin-bottom: 36px; }
.service-text ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid #f0e8ed;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}
.service-text ul li::before { content: '✦'; position: absolute; left: 0; color: var(--primary-dark); font-size: 0.65rem; top: 14px; }

/* ── Legal Pages ──────────────────────────────────────────── */
.legal-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 90px 5%; text-align: center; }
.legal-hero h1 { color: var(--heading); }
.legal-hero p  { color: #777; margin-top: 10px; font-size: 0.92rem; }
.legal-content { max-width: 800px; margin: 0 auto; padding: 70px 5%; }
.legal-content h2 { font-size: 1.25rem; margin: 40px 0 12px; }
.legal-content p, .legal-content li { color: #555; font-size: 0.97rem; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: var(--footer-bg); border-top: 1px solid #ede4e9; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { font-size: 1.35rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: #999; line-height: 1.85; }
.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.76rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--heading); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: #888; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary-dark); }
.footer-bottom { border-top: 1px solid #ede4e9; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: #bbb; }
.footer-bottom a { color: #bbb; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--primary-dark); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid #f0e8ed; border-top: 1px solid #f0e8ed; }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid #f0e8ed; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0 0 0 28%; background: var(--bg); padding: 90px 32px 40px; box-shadow: -4px 0 30px rgba(0,0,0,0.1); gap: 22px; z-index: 300; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 400; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-radius: 0; padding: 8px 0 0 18px; animation: none; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .hero-blob-1 { width: 280px; height: 280px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { display: none; }
  .hero { min-height: 92vh; }
  .hero-sm { min-height: 46vh; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { height: 280px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .service-body { grid-template-columns: 1fr; gap: 36px; }
  .service-body img { height: 280px; }
  .about-img-badge { bottom: -12px; right: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
}
