/* =============================================
   NN BIOKINETICS – Main Stylesheet
   Colours: #3EAEBA (teal) | #222222 (dark) | #fff
   Fonts: Playfair Display (headings) | DM Sans (body)
   ============================================= */

:root {
  --teal:        #3EAEBA;
  --teal-dark:   #2d8a94;
  --teal-light:  #e8f7f8;
  --dark:        #222222;
  --dark2:       #2e2e2e;
  --mid:         #555;
  --light:       #edeef0;
  --white:       #f4f5f7;
  --radius:      12px;
  --shadow:      0 4px 32px rgba(62,174,186,.14);
  --font-head:   'Playfair Display', serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       86px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: clip; }
img   { max-width: 100%; display: block; }
a     { color: inherit; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(62,174,186,.12);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }

.nav-logo {
  font-family: var(--font-head); font-size: 1.45rem;
  color: var(--dark); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--teal); }

/* Full logo image wrapper — dark pill so logo with black bg looks sharp */
.nav-logo-img-wrap {
  background: var(--dark);
  border-radius: 10px;
  padding: 5px 8px;
  display: flex; align-items: center;
  height: 70px;
  flex-shrink: 0;
}
.nav-logo-img-wrap img {
  height: 95px;
  width: auto;
  display: block;
}

.logo-icon {
  width: 38px; height: 38px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 700; flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid); font-size: .92rem; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal); transition: width .2s;
}
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid rgba(62,174,186,.18);
  border-radius: 8px; min-width: 200px; box-shadow: var(--shadow);
  padding: 14px 0 8px;  /* top padding replaces the removed gap */
  margin-top: 0;
}
/* Invisible bridge fills the gap between link and menu so mouse doesn't fall through */
.dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0;
  width: 100%; height: 10px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 9px 18px; font-size: .88rem; color: var(--mid); }
.dropdown-menu a:hover { background: var(--teal-light); color: var(--teal); }
.dropdown-menu a::after { display: none !important; }

/* Book Now button */
.nav-book {
  background: var(--teal) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 30px; font-weight: 600 !important;
  transition: background .2s, transform .1s !important;
}
.nav-book:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.nav-book::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 12px; margin-right: -12px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: #fff; z-index: 1100;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.3rem; font-weight: 500; color: var(--dark); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2.5rem; cursor: pointer; line-height: 1; color: var(--dark); background: none; border: none; padding: 8px; }

/* ── Buttons ── */
.btn-primary {
  background: var(--teal); color: #fff; padding: 14px 32px; border-radius: 30px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(62,174,186,.35); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,.35); color: #fff; padding: 14px 32px;
  border-radius: 30px; text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── Section commons ── */
section { padding: 90px 5%; }
.light-bg { background: var(--light); }
.section-label {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark); line-height: 1.25; margin-bottom: .8rem;
}
.section-sub { color: var(--mid); font-size: 1rem; max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Hero ── */
.hero {
  min-height: 100vh; background: var(--dark); position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a3a3d 100%);
}
.hero-accent {
  position: absolute; top: -100px; right: -100px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(62,174,186,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-accent2 {
  position: absolute; bottom: -150px; left: -80px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(62,174,186,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 120px 5% 80px; max-width: 700px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,174,186,.15); border: 1px solid rgba(62,174,186,.3);
  color: var(--teal); padding: 7px 16px; border-radius: 30px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--teal);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-family: var(--font-head); font-size: clamp(3rem, 2vw, 3.5rem);
  color: #fff; line-height: 1.15; margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero > .hero-content > p {
  color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.75;
  margin-bottom: 2.2rem; max-width: 560px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 50px; right: 5%; display: flex; gap: 2rem; z-index: 2;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 700; color: var(--teal); }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

/* ── Services ── */
.services-bg { background: var(--light); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(62,174,186,.12); transition: all .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: var(--teal); border-radius: 0 0 4px 0; transition: height .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px; height: 52px; background: var(--teal-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 2; }

.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .4rem; }
.service-card .sub {
  font-size: .82rem; color: var(--teal); font-weight: 600; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.service-card ul li {
  font-size: .9rem; color: var(--mid);
  display: flex; align-items: center; gap: .6rem;
}
.service-card ul li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233EAEBA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  border-radius: 50%;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-size: .88rem; font-weight: 600;
  text-decoration: none; margin-top: 1.2rem; transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-placeholder {
  width: 100%; aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--teal-light), rgba(62,174,186,.25));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .8rem;
  color: var(--teal-dark); font-family: var(--font-head); font-size: 1rem;
}
.about-image-placeholder small { font-size: .78rem; opacity: .6; font-family: var(--font-body); }
.about-image-placeholder svg { opacity: .5; }
.about-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;  /* centre horizontally, slightly above middle to show faces */
  border-radius: var(--radius);
  display: block;
  /* Ensure browser uses high-quality resampling */
  image-rendering: auto;
}
.about-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--teal); color: #fff; padding: 10px 18px;
  border-radius: 8px; font-size: .85rem; font-weight: 600;
}
.about-text p { color: var(--mid); line-height: 1.8; margin-bottom: 1.2rem; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.pillar { background: var(--teal-light); border-radius: 10px; padding: 1rem; border-left: 3px solid var(--teal); }
.pillar strong { display: block; font-size: .9rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.pillar span { font-size: .82rem; color: var(--mid); }

/* ── Steps (Biokinetics explainer) ── */
.steps-grid { display: grid; gap: 1rem; }
.step-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid rgba(62,174,186,.12); display: flex; gap: 1rem; align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px; background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.step-card strong { display: block; margin-bottom: .3rem; font-weight: 600; }
.step-card p { font-size: .88rem; color: var(--mid); line-height: 1.6; margin: 0; }

/* ── Conditions ── */
.conditions-bg { background: var(--dark); }
.conditions-bg .section-label { background: rgba(62,174,186,.15); color: var(--teal); }
.conditions-bg .section-title { color: #fff; }
.conditions-bg .section-sub { color: rgba(255,255,255,.6); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.condition-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.6rem 1rem 1.3rem;
  text-align: center; transition: all .25s; cursor: default;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
.condition-card:hover {
  background: rgba(62,174,186,.12); border-color: rgba(62,174,186,.35);
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(62,174,186,.15);
}
/* Icon container — teal circle with image inside */
.condition-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(62,174,186,.15);
  border: 1.5px solid rgba(62,174,186,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .25s, border-color .25s;
}
.condition-card:hover .condition-icon-wrap {
  background: rgba(62,174,186,.25); border-color: rgba(62,174,186,.5);
}
.condition-icon-wrap img {
  width: 36px; height: 36px; object-fit: contain;
  /* White-tint filter so any colour icon looks good on dark bg */
  filter: brightness(0) invert(1) opacity(.85);
  transition: filter .25s;
}
.condition-card:hover .condition-icon-wrap img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(60%) saturate(400%) hue-rotate(155deg) opacity(1);
}
/* Placeholder when no image is set */
.condition-icon-placeholder {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(62,174,186,.4);
}
.condition-card span {
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; line-height: 1.4;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.team-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(62,174,186,.12); transition: all .25s;
  display: flex; flex-direction: column; background: #fff;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo {
  width: 100%;
  height: 380px;
  background: #e8f2f3;           /* neutral background matches the photo backdrop */
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: flex-end; justify-content: center;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* show whole subject — no cropping ever */
  object-position: bottom center;/* align subject to bottom so head isn't cut */
  display: block;
}
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.2rem; color: #fff; font-weight: 700;
  margin: auto;
}
.team-info { padding: 1.5rem; flex: 1; }
.team-info h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: .3rem; }
.team-info .role {
  color: var(--teal); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .9rem;
}
.team-info p { color: var(--mid); font-size: .88rem; line-height: 1.8; }

/* ── Reviews – auto-scroll marquee ── */
.reviews-wrap {
  margin-left: -5vw;
  margin-right: -5vw;
  overflow: hidden;
  margin-top: 2.5rem;
  padding-bottom: 4px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-wrap:hover .reviews-track { animation-play-state: paused; }

/* The track holds TWO identical sets of cards side by side */
.reviews-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding: .3rem 0 .6rem;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - .6rem)); } /* -50% moves exactly one set; -.6rem accounts for half the gap */
}

.reviews-grid {
  display: contents; /* children flow directly into .reviews-track */
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(62,174,186,.12);
  flex: 0 0 300px;
  width: 300px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  cursor: default;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.stars {
  color: #f59e0b;                 /* amber — matches Google's star colour */
  font-size: .95rem; letter-spacing: 1px; margin-bottom: .8rem; flex-shrink: 0;
}
.review-text {
  color: var(--mid); font-size: .88rem; line-height: 1.75;
  margin-bottom: 1.2rem; flex: 1;
  /* clamp long reviews to ~6 lines with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: auto; flex-shrink: 0; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .88rem; font-weight: 600; }
.reviewer span { font-size: .76rem; color: var(--mid); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; background: var(--teal-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact-item strong { display: block; font-size: .92rem; font-weight: 600; margin-bottom: .2rem; }
.contact-item span { font-size: .88rem; color: var(--mid); line-height: 1.6; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(62,174,186,.15); }

/* Contact form */
.contact-form-wrap {
  background: var(--light); border-radius: var(--radius); padding: 2rem;
  border: 1px solid rgba(62,174,186,.1);
}
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.req { color: var(--teal); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(62,174,186,.2); border-radius: 8px;
  font-family: var(--font-body); font-size: .9rem; color: var(--dark);
  background: #fff; transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { height: 110px; resize: vertical; }

.form-submit {
  width: 100%; padding: 14px; background: var(--teal); color: #fff;
  border: none; border-radius: 30px; font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.form-submit:hover { background: var(--teal-dark); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }

.form-msg {
  padding: 12px 16px; border-radius: 8px; margin-bottom: 1.2rem;
  font-size: .9rem; font-weight: 500;
}
.form-msg.success { background: #e8f7f0; color: #1a7a4a; border: 1px solid #a8dfc3; }
.form-msg.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }

/* ── Footer ── */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand {
  font-family: var(--font-head); font-size: 1.3rem; color: #fff;
  margin-bottom: 1rem; display: flex; align-items: center; gap: 10px;
}
.footer-brand .logo-icon { background: var(--teal); width: 34px; height: 34px; font-size: .9rem; }
.footer-desc { font-size: .88rem; line-height: 1.75; max-width: 260px; }
footer h4 { color: #fff; font-size: .85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .07em; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
footer ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s; }
footer ul li a:hover { color: var(--teal); }
.footer-contact li { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom span { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-credit { font-size: .78rem !important; }
.social-links { display: flex; gap: .8rem; margin-top: 1.2rem; }
.social-links a {
  width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .75rem; font-weight: 700;
  transition: all .2s;
}
.social-links a:hover { background: var(--teal); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* On mobile use a taller crop for the group photo so faces aren't cut */
  .about-image-wrap img,
  .about-image-placeholder { aspect-ratio: 3 / 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 70px 5%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .team-photo { height: 260px; }
  /* Slow scroll a little on mobile */
  .reviews-grid { animation-duration: 30s; }
  .review-card { flex: 0 0 260px; width: 260px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 300px; }
  .review-card { flex: 0 0 80vw; width: 80vw; }
}

/* ── Google Reviews ────────────────────────────────────────── */
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 1.5rem;
  background: #fff; border: 1px solid rgba(62,174,186,.15);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  margin: 1.2rem auto 0; box-shadow: var(--shadow);
}
.grb-logo { display: flex; align-items: center; gap: .5rem; font-size: .88rem; font-weight: 700; color: var(--dark); }
.grb-score { display: flex; align-items: center; gap: .6rem; }
.grb-score strong { font-size: 1.6rem; font-weight: 700; color: var(--dark); }
.grb-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.grb-score span { font-size: .8rem; color: var(--mid); }

.review-card--google { border-top: 3px solid #4285F4; }
.review-google-header {
  display: flex; align-items: center; gap: .7rem; margin-bottom: .7rem; flex-shrink: 0;
}
.reviewer-photo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.reviewer-name { display: block; font-size: .88rem; font-weight: 600; line-height: 1.3; }
.review-time { font-size: .74rem; color: var(--mid); display: block; margin-top: 1px; }
.review-google-logo { margin-left: auto; flex-shrink: 0; opacity: .85; }
.reviews-footer { text-align: center; margin-top: 2.5rem; }
.btn-reviews-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--teal); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1.5px solid var(--teal);
  padding: 10px 24px; border-radius: 30px; transition: all .2s;
}
.btn-reviews-link:hover { background: var(--teal); color: #fff; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; max-width: 820px; margin-left: auto; margin-right: auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid rgba(62,174,186,.15); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.2rem 1.5rem; cursor: pointer; font-family: var(--font-body);
  font-size: .98rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-question:hover { color: var(--teal); }
.faq-chevron {
  width: 22px; height: 22px; border-radius: 50%; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-chevron svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; transition: transform .3s; }
.faq-item.open .faq-chevron { background: var(--teal); }
.faq-item.open .faq-chevron svg { stroke: #fff; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; padding: 0 1.5rem; }
.faq-answer p { color: var(--mid); font-size: .92rem; line-height: 1.8; padding-bottom: 1.2rem; }

/* ── Scroll to top ───────────────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 100px; right: 30px; z-index: 1500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--dark); border: 2px solid rgba(62,174,186,.35);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ── WhatsApp button ─────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 1500;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  border-radius: 50px; padding: 12px 20px 12px 14px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .25s; white-space: nowrap;
}
.whatsapp-btn:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-btn svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.whatsapp-label { font-size: .88rem; }
@media (max-width: 480px) {
  .whatsapp-btn { padding: 12px; border-radius: 50%; }
  .whatsapp-label { display: none; }
  .scroll-top { bottom: 90px; right: 20px; }
  .whatsapp-btn { right: 20px; }
}

/* ── Photo gallery strip ─────────────────────────────────────────────────── */
.gallery-section { padding: 0; overflow: hidden; background: var(--dark); }
.gallery-track-wrap {
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.gallery-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: galleryScroll 50s linear infinite;
}
.gallery-track:hover { animation-play-state: paused; }
@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-photo {
  height: 220px;
  width: auto;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-photo img {
  height: 220px;
  width: auto;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.gallery-photo img:hover { opacity: .85; }
@media (max-width: 768px) {
  .gallery-photo { height: 160px; }
  .gallery-photo img { height: 160px; }
}
