/* ============================================================
   AJ's Clinic — Main Stylesheet
   Theme: Deep Medical Green #1F7A4C | Blue #2563EB | Soft Gray #F8FAFC
   Font: Nunito
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --green:        #1F7A4C;
  --green-light:  #27a362;
  --green-dark:   #155c38;
  --green-pale:   #e8f5ee;
  --blue:         #2563EB;
  --blue-dark:    #1d4ed8;
  --blue-pale:    #eff6ff;
  --accent:       #f0a500;
  --bg:           #F8FAFC;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f1f5f9;
  --gray-200:     #e2e8f0;
  --gray-300:     #cbd5e1;
  --gray-400:     #94a3b8;
  --gray-500:     #64748b;
  --gray-600:     #475569;
  --gray-700:     #334155;
  --gray-800:     #1e293b;
  --gray-900:     #0f172a;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 8px rgba(31,122,76,0.08);
  --shadow:       0 4px 24px rgba(31,122,76,0.12);
  --shadow-lg:    0 12px 48px rgba(31,122,76,0.18);
  --shadow-xl:    0 24px 64px rgba(31,122,76,0.22);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.display { font-family: 'Playfair Display', serif; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-white { color: white; }
.fw-900 { font-weight: 900; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  padding: 5px 16px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.white { background: rgba(255,255,255,0.18); color: #a7f3d0; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800; color: var(--gray-800);
  line-height: 1.2; margin-bottom: 16px;
}
.section-title.white { color: white; }
.section-title em { font-style: italic; color: var(--green); }
.section-title.white em { color: #a7f3d0; }

.section-sub {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 580px; line-height: 1.7;
}
.section-sub.white { color: rgba(255,255,255,0.78); }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 800; font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.btn-green {
  background: var(--green); color: white;
  box-shadow: 0 4px 16px rgba(31,122,76,0.35);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(31,122,76,0.45); }
.btn-white-solid {
  background: white; color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.btn-white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.24); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: white; }
.btn-blue {
  background: var(--blue); color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── NAV ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  height: 74px;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.09); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 700; color: var(--gray-600);
  transition: all var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: var(--green-pale); }
.nav-links a.active { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-shop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700; color: var(--blue);
  background: var(--blue-pale); transition: all var(--transition);
}
.nav-shop-btn:hover { background: var(--blue); color: white; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 800; color: white;
  background: var(--green); transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(31,122,76,0.3);
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(31,122,76,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { width: 23px; height: 2px; background: var(--gray-800); border-radius: 2px; display: block; transition: var(--transition); }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative; width: 100%;
  height: calc(100vh - 74px); min-height: 580px;
  overflow: hidden; margin-top: 74px;
}
.carousel-track {
  display: flex; height: 100%;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%; height: 100%;
  position: relative; flex-shrink: 0;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(8,35,22,0.88) 0%,
    rgba(20,80,50,0.62) 42%,
    rgba(37,99,235,0.30) 100%);
  display: flex; align-items: center;
}
.slide-content {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  width: 100%;
}
.slide-inner { max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a7f3d0; padding: 6px 16px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.hero-badge::before { content: "●"; color: #34d399; margin-right: 2px; animation: live 1.5s infinite; }
@keyframes live { 0%,100%{opacity:1} 50%{opacity:.2} }
.slide-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 900; color: white; line-height: 1.1;
  margin-bottom: 18px;
}
.slide-inner h1 em { font-style: italic; color: #a7f3d0; }
.slide-inner p {
  font-size: 1.08rem; color: rgba(255,255,255,0.82);
  margin-bottom: 34px; line-height: 1.7; max-width: 500px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hstat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.hstat-label { font-size: 0.72rem; color: rgba(255,255,255,0.58); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* Carousel nav */
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; transition: all var(--transition);
  font-size: 1.2rem; font-weight: 700;
}
.car-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.06); }
.car-btn.prev { left: 28px; }
.car-btn.next { right: 28px; }
.car-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.38); border: none; cursor: pointer; transition: all var(--transition);
}
.car-dot.active { background: white; width: 28px; border-radius: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; color: var(--gray-600);
}
.trust-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── SECTION WRAPPER ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-white { background: white; }
.bg-gray { background: var(--bg); }
.bg-green { background: linear-gradient(135deg, #0b3d25 0%, #1F7A4C 100%); }
.bg-dark { background: var(--gray-900); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--green-pale); line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.service-card:hover .svc-number { color: rgba(31,122,76,0.15); }
.svc-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-pale), var(--blue-pale));
  border-radius: var(--radius); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--gray-800); }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }
.svc-list { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li {
  font-size: 0.82rem; color: var(--gray-600);
  display: flex; align-items: center; gap: 8px; padding: 2px 0;
}
.svc-list li::before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.svc-learn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.83rem; font-weight: 800;
  color: var(--green); transition: gap var(--transition);
}
.svc-learn:hover { gap: 10px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.why-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 30px 26px;
  color: white; transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-5px); }
.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: rgba(255,255,255,0.12); line-height: 1; margin-bottom: 12px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 220px;
  gap: 14px; margin-top: 52px;
}
.gallery-mosaic-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-mosaic-item:first-child { grid-row: 1 / 3; }
.gallery-mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.gallery-mosaic-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,40,22,0.78) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 18px 20px;
}
.gallery-mosaic-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span { color: white; font-weight: 800; font-size: 0.88rem; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.team-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
  position: relative;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img { height: 280px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--green); color: white;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.team-body { padding: 24px; }
.team-body h3 { font-size: 1.1rem; font-weight: 900; color: var(--gray-800); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--green); font-weight: 700; margin-bottom: 8px; }
.team-qual { font-size: 0.78rem; color: var(--gray-400); line-height: 1.5; }
.team-social { display: flex; gap: 8px; margin-top: 16px; }
.team-social a {
  width: 32px; height: 32px; background: var(--gray-100);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 0.75rem; font-weight: 700;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--green); color: white; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all var(--transition); position: relative;
}
.testi-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 6rem; color: var(--green-pale);
  position: absolute; top: 10px; right: 24px;
  line-height: 1; font-weight: 900;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testi-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: 0.88rem; color: var(--gray-800); }
.testi-role { font-size: 0.75rem; color: var(--gray-400); }

/* ── CTA STRIP ── */
.cta-strip { padding: 72px 0; background: linear-gradient(135deg, var(--blue), #1a44c4); position: relative; overflow: hidden; }
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.cta-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: white; }
.cta-strip p { color: rgba(255,255,255,0.78); margin-top: 6px; font-size: 1rem; }
.cta-strip-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 52px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 20px 22px;
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 44px; height: 44px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h4 { font-size: 0.72rem; font-weight: 800; color: var(--gray-400); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.92rem; font-weight: 700; color: var(--gray-800); text-decoration: none; }
.contact-card a:hover { color: var(--green); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 4px; }
.hours-row { font-size: 0.8rem; color: var(--gray-600); font-weight: 600; }
.hours-row span { color: var(--green); font-weight: 700; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: all var(--transition);
}
.social-ic:hover { background: var(--green); color: white; }
.social-ic svg { width: 16px; height: 16px; }

/* Contact Form */
.contact-form {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 26px; color: var(--gray-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 800; color: var(--gray-600); margin-bottom: 6px; letter-spacing: .03em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--gray-200); border-radius: 10px;
  padding: 11px 14px; font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  color: var(--gray-800); background: var(--bg); transition: all var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,122,76,0.1);
  background: white;
}
.form-group textarea { height: 110px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--green); color: white; border: none;
  padding: 14px; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(31,122,76,0.35); }

/* ── MAP ── */
.map-wrapper { height: 400px; overflow: hidden; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FOOTER ── */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.65); padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.footer-logo { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; margin-top: 10px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 900; color: white; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #6ee7b7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom span { color: #6ee7b7; font-weight: 700; }

/* ── FLOATING WA ── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55);
  transition: all var(--transition); animation: popIn .5s 1.2s both;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
@keyframes popIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.wa-fab svg { width: 30px; height: 30px; fill: white; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .65s, transform .65s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .65s, transform .65s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0b3d25 0%, #1F7A4C 60%, #1e50a0 100%);
  padding: 80px 0 70px; margin-top: 74px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  font-weight: 600; margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: white; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  color: white; margin-bottom: 14px; line-height: 1.15;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 520px; }

/* ── SHOP PAGE ── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; margin-top: 48px; align-items: start; }

/* Sidebar */
.shop-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 26px; margin-bottom: 18px;
}
.sidebar-card h4 { font-size: 0.78rem; font-weight: 900; color: var(--gray-700); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 8px; cursor: pointer;
  transition: all var(--transition); font-size: 0.875rem; font-weight: 600; color: var(--gray-600);
}
.filter-item:hover, .filter-item.active { background: var(--green-pale); color: var(--green); }
.filter-count {
  background: var(--gray-100); color: var(--gray-500);
  padding: 2px 8px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
}
.filter-item.active .filter-count { background: rgba(31,122,76,0.15); color: var(--green); }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type="range"] { width: 100%; accent-color: var(--green); }
.price-vals { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 700; color: var(--gray-500); }

/* Shop toolbar */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-search {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  background: white; overflow: hidden; flex: 1; max-width: 340px;
}
.shop-search input {
  border: none; padding: 10px 14px; font-family: 'Nunito', sans-serif;
  font-size: 0.875rem; color: var(--gray-800); background: transparent; outline: none; flex: 1;
}
.shop-search button {
  padding: 10px 16px; background: var(--green); color: white; border: none; cursor: pointer;
}
.shop-search button svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sort-select {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 10px 14px; font-family: 'Nunito', sans-serif;
  font-size: 0.875rem; color: var(--gray-700); background: white; outline: none; font-weight: 600; cursor: pointer;
}
.results-count { font-size: 0.82rem; color: var(--gray-500); font-weight: 600; }

/* Product grid */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
}
.badge-new { background: var(--green); color: white; }
.badge-sale { background: #ef4444; color: white; }
.badge-popular { background: var(--accent); color: white; }
.badge-rx { background: var(--blue); color: white; }
.product-img { height: 200px; overflow: hidden; background: var(--gray-50); position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute; inset: 0; background: rgba(31,122,76,0.7);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-img-overlay { opacity: 1; }
.product-img-overlay button {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; color: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 0.8rem;
}
.product-img-overlay button:hover { background: var(--green); color: white; }
.product-img-overlay button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-body { padding: 18px 20px 20px; }
.product-cat { font-size: 0.68rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 5px; }
.product-name { font-size: 0.95rem; font-weight: 800; color: var(--gray-800); line-height: 1.3; margin-bottom: 6px; }
.product-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 12px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; }
.price-cur { font-size: 1.2rem; font-weight: 900; color: var(--gray-800); }
.price-old { font-size: 0.78rem; color: var(--gray-400); text-decoration: line-through; margin-left: 4px; }
.add-to-cart {
  background: var(--green); color: white;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; gap: 5px;
  transition: all var(--transition);
}
.add-to-cart:hover { background: var(--green-dark); transform: translateY(-1px); }
.add-to-cart svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.product-rating .stars { font-size: 0.75rem; color: #f59e0b; }
.product-rating span { font-size: 0.72rem; color: var(--gray-400); font-weight: 600; }

/* Cart button */
.cart-fab {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 52px; height: 52px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  transition: all var(--transition); animation: popIn .5s 1.4s both;
}
.cart-fab:hover { transform: scale(1.08); }
.cart-fab svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  position: absolute; top: -5px; right: -5px;
  width: 20px; height: 20px; background: #ef4444;
  border-radius: 50%; font-size: 0.68rem; font-weight: 900; color: white;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: white; z-index: 2000; box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  transition: right .4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 900; color: var(--gray-800); }
.cart-close { width: 36px; height: 36px; background: var(--gray-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); font-size: 1.1rem; }
.cart-close:hover { background: var(--gray-200); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); align-items: center; }
.cart-item-img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--gray-50); flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.875rem; font-weight: 800; color: var(--gray-800); margin-bottom: 3px; }
.cart-item-price { font-size: 0.82rem; font-weight: 700; color: var(--green); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn { width: 26px; height: 26px; border-radius: 6px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 900; cursor: pointer; transition: background var(--transition); }
.qty-btn:hover { background: var(--green); color: white; }
.qty-val { font-size: 0.875rem; font-weight: 800; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--gray-300); cursor: pointer; font-size: 1.1rem; transition: color var(--transition); }
.cart-item-remove:hover { color: #ef4444; }
.cart-empty { text-align: center; padding: 48px 0; color: var(--gray-400); }
.cart-empty svg { width: 56px; height: 56px; stroke: var(--gray-300); fill: none; stroke-width: 1.5; margin: 0 auto 14px; }
.cart-empty p { font-weight: 700; font-size: 0.9rem; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray-200); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span:first-child { font-weight: 700; color: var(--gray-600); }
.cart-total span:last-child { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; color: var(--gray-800); }
.checkout-btn {
  width: 100%; background: var(--green); color: white; border: none;
  padding: 14px; border-radius: var(--radius); font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 800; cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.checkout-btn:hover { background: var(--green-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid, .why-grid, .team-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: white; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-actions.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid, .why-grid, .team-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-mosaic-item:first-child { grid-row: auto; }
  .gallery-mosaic-item { height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100%; right: -100%; }
  .shop-sidebar { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
