/* ============================================
   BIO-FITT STUDIO — STYLESHEET v2
   Deep Forest Green + Electric Lime + Cream
   Syne (display) + DM Sans (body)
   Fully responsive: mobile 320px → desktop 1440px
   ============================================ */

:root {
  --green-deep: #0d2818;
  --green-mid: #1a4731;
  --green-light: #2d6e4a;
  --lime: #b5e550;
  --lime-dark: #8fba2e;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --text-dark: #0d1f0f;
  --text-mid: #2a4030;
  --text-muted: #5a7060;
  --border: rgba(45,110,74,0.15);
  --shadow-sm: 0 2px 12px rgba(13,40,24,0.08);
  --shadow-md: 0 8px 32px rgba(13,40,24,0.12);
  --shadow-lg: 0 20px 60px rgba(13,40,24,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-mid); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.accent { color: var(--lime); }
.tag {
  display: inline-block;
  background: var(--lime); color: var(--green-deep);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 0.8rem;
}
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-header p { max-width: 540px; margin: 0.8rem auto 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  padding: 0.75rem clamp(1.1rem, 2.5vw, 1.6rem);
  border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--lime); color: var(--green-deep); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1da855; transform: translateY(-2px); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: clamp(0.8rem,2vw,1rem) clamp(1.4rem,3vw,2.2rem); font-size: clamp(0.9rem,1.8vw,1.05rem); }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: clamp(0.7rem,1.5vw,1rem) 0;
  background: transparent; transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(13,40,24,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
}
.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem); color: var(--white);
  flex-shrink: 0;
}
.logo-accent { color: var(--lime); }
.main-nav { display: flex; align-items: center; gap: clamp(1rem,2.5vw,1.8rem); margin-left: auto; }
.main-nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: clamp(0.82rem,1.4vw,0.95rem); transition: var(--transition); }
.main-nav a:hover { color: var(--lime); }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100svh; background: var(--green-deep);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding: clamp(5rem,12vw,7rem) clamp(1rem,4vw,2rem) clamp(3rem,6vw,4rem);
}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 70% 40%,rgba(45,110,74,0.5) 0%,transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%,rgba(181,229,80,0.08) 0%,transparent 60%); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(181,229,80,0.03) 60px,rgba(181,229,80,0.03) 61px),repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(181,229,80,0.03) 60px,rgba(181,229,80,0.03) 61px); }
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 3rem; }
.hero-content { flex: 1; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(181,229,80,0.12); border: 1px solid rgba(181,229,80,0.3); color: var(--lime); font-size: clamp(0.75rem,1.5vw,0.85rem); font-weight: 600; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1.2rem; animation: fadeInDown 0.6s ease; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; animation: fadeInUp 0.7s ease 0.1s both; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: clamp(1rem,2vw,1.15rem); margin-bottom: 1.8rem; animation: fadeInUp 0.7s ease 0.2s both; }
.hero-sub strong { color: var(--lime); }
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2.5rem; animation: fadeInUp 0.7s ease 0.3s both; }
.hero-stats { display: flex; gap: clamp(1.2rem,3vw,2.5rem); flex-wrap: wrap; animation: fadeInUp 0.7s ease 0.4s both; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--lime); line-height: 1; display: block; }
.stat-label { font-size: clamp(0.7rem,1.2vw,0.8rem); color: rgba(255,255,255,0.6); margin-top: 0.2rem; }

/* USP BADGES */
.hero-usps { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; animation: fadeInUp 0.7s ease 0.5s both; }
.usp-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); font-size: clamp(0.72rem,1.3vw,0.82rem); font-weight: 500; padding: 0.35rem 0.9rem; border-radius: 100px; }
.usp-badge span { color: var(--lime); }

/* Hero visual */
.hero-visual { flex: 0 0 340px; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; animation: fadeInRight 0.8s ease 0.3s both; }
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(181,229,80,0.2); border-radius: var(--radius); padding: clamp(1rem,2vw,1.3rem); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: clamp(0.85rem,1.5vw,1rem); transition: var(--transition); }
.hero-card:hover { border-color: rgba(181,229,80,0.5); transform: translateY(-3px); }
.hero-card.wide { grid-column: 1/-1; }
.card-icon { font-size: clamp(1.4rem,3vw,1.8rem); margin-bottom: 0.4rem; }
.card-sub { font-family: var(--font-body); font-size: clamp(0.72rem,1.2vw,0.8rem); color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 0.2rem; }

/* ---- SERVICES ---- */
.services { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem,3vw,2rem); }
.service-card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); position: relative; border: 2px solid transparent; transition: var(--transition); }
.service-card:hover { border-color: var(--lime); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.featured { background: var(--green-deep); }
.service-card.featured p, .service-card.featured .service-list li { color: rgba(255,255,255,0.8); }
.service-card.featured h3 { color: var(--white); }
.service-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--lime); color: var(--green-deep); font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.25rem 0.7rem; border-radius: 100px; }
.service-icon-wrap { width: clamp(50px,8vw,64px); height: clamp(50px,8vw,64px); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: clamp(1.4rem,3vw,1.8rem); }
.s1 { background: rgba(181,229,80,0.15); }
.s2 { background: rgba(181,229,80,0.12); }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { margin-bottom: 1.2rem; font-size: clamp(0.9rem,1.5vw,1rem); }
.service-list { list-style: none; margin-bottom: 1.5rem; }
.service-list li { padding: 0.35rem 0; font-size: clamp(0.85rem,1.4vw,0.95rem); }

/* ---- USP SECTION ---- */
.usp-section { padding: clamp(3rem,7vw,5rem) 0; background: var(--lime); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.usp-card { background: rgba(255,255,255,0.25); border-radius: var(--radius); padding: clamp(1.2rem,3vw,1.8rem); border: 1px solid rgba(13,40,24,0.1); text-align: center; }
.usp-card .usp-icon { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 0.8rem; }
.usp-card h3 { color: var(--green-deep); font-size: clamp(0.95rem,1.8vw,1.15rem); margin-bottom: 0.4rem; }
.usp-card p { color: var(--green-mid); font-size: clamp(0.82rem,1.4vw,0.92rem); margin: 0; }

/* ---- WHY US ---- */
.why-us { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--green-deep); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: center; }
.why-text h2 { color: var(--white); margin-bottom: 1rem; }
.why-text > p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: clamp(0.95rem,1.8vw,1.1rem); }
.why-points { display: flex; flex-direction: column; gap: 1.2rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.wp-icon { font-size: clamp(1.3rem,2.5vw,1.6rem); flex-shrink: 0; margin-top: 0.1rem; }
.why-point strong { display: block; color: var(--lime); font-family: var(--font-display); font-size: clamp(0.9rem,1.6vw,1rem); margin-bottom: 0.2rem; }
.why-point p { color: rgba(255,255,255,0.65); font-size: clamp(0.82rem,1.4vw,0.92rem); margin: 0; }
.trainer-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(181,229,80,0.2); border-radius: var(--radius-lg); padding: clamp(1.2rem,3vw,2rem); display: flex; gap: 1.2rem; align-items: center; margin-bottom: 1.2rem; }
.trainer-avatar { width: clamp(56px,10vw,72px); height: clamp(56px,10vw,72px); background: linear-gradient(135deg,var(--lime),var(--green-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(1rem,2vw,1.3rem); color: var(--green-deep); flex-shrink: 0; }
.trainer-info h3 { color: var(--white); font-size: clamp(1rem,2vw,1.2rem); margin-bottom: 0.2rem; }
.trainer-info p { color: rgba(255,255,255,0.65); font-size: clamp(0.8rem,1.4vw,0.9rem); margin: 0; }
.trainer-exp { color: var(--lime) !important; font-weight: 600 !important; margin-top: 0.3rem !important; }
.trainer-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.6rem; }
.trainer-tags span { background: rgba(181,229,80,0.12); border: 1px solid rgba(181,229,80,0.25); color: var(--lime); font-size: clamp(0.7rem,1.2vw,0.75rem); font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 100px; }
.why-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ws { background: rgba(255,255,255,0.04); border: 1px solid rgba(181,229,80,0.12); border-radius: var(--radius); padding: clamp(0.8rem,2vw,1rem); text-align: center; }
.ws strong { display: block; font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,1.6rem); font-weight: 800; color: var(--lime); }
.ws span { font-size: clamp(0.7rem,1.2vw,0.8rem); color: rgba(255,255,255,0.55); }

/* ---- PROCESS ---- */
.process { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--cream-dark); }
.steps { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.step { flex: 1; min-width: clamp(140px,20vw,180px); background: var(--white); border-radius: var(--radius); padding: clamp(1.2rem,3vw,2rem); transition: var(--transition); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 0.8rem; }
.step h3 { margin-bottom: 0.4rem; font-size: clamp(0.95rem,1.8vw,1.1rem); }
.step p { font-size: clamp(0.82rem,1.4vw,0.9rem); }
.step-arrow { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--lime-dark); padding: 0 0.3rem; font-weight: 700; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.5vw,1.5rem); }
.testi-card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.2rem,3vw,2rem); border: 2px solid transparent; transition: var(--transition); }
.testi-card:hover { border-color: var(--lime); transform: translateY(-3px); }
.testi-card.featured { background: var(--green-deep); border-color: rgba(181,229,80,0.3); }
.testi-card.featured p { color: rgba(255,255,255,0.8); }
.testi-stars { color: var(--lime); font-size: 0.9rem; margin-bottom: 0.8rem; }
.testi-card p { font-size: clamp(0.85rem,1.5vw,0.95rem); margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar { width: 38px; height: 38px; background: linear-gradient(135deg,var(--lime),var(--green-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.72rem; color: var(--green-deep); flex-shrink: 0; }
.testi-author strong { display: block; font-size: clamp(0.82rem,1.4vw,0.9rem); }
.testi-card.featured .testi-author strong { color: var(--white); }
.testi-author span { font-size: clamp(0.72rem,1.2vw,0.8rem); color: var(--text-muted); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.5); }

/* ---- FAQ ---- */
.faq { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--cream-dark); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.8rem; overflow: hidden; border: 1px solid var(--border); }
.faq-q { padding: clamp(1rem,2.5vw,1.3rem) clamp(1rem,3vw,1.5rem); font-family: var(--font-display); font-weight: 600; font-size: clamp(0.9rem,1.6vw,1rem); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--lime-dark); transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-q { color: var(--green-mid); }
.faq-a { padding: 0 clamp(1rem,3vw,1.5rem); max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; font-size: clamp(0.85rem,1.5vw,0.95rem); color: var(--text-mid); }
.faq-item.open .faq-a { max-height: 400px; padding: 0 clamp(1rem,3vw,1.5rem) clamp(1rem,2.5vw,1.3rem); }

/* ---- LOCATIONS ---- */
.locations-section { padding: clamp(3rem,7vw,5rem) 0; background: var(--white); }
.loc-tabs { display: flex; gap: 0.8rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.loc-tab { background: var(--cream); border: 2px solid var(--border); border-radius: 100px; padding: 0.5rem 1.2rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(0.8rem,1.4vw,0.9rem); cursor: pointer; transition: var(--transition); }
.loc-tab.active, .loc-tab:hover { background: var(--green-deep); color: var(--lime); border-color: var(--green-deep); }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(clamp(140px,18vw,180px),1fr)); gap: 0.8rem; }
.loc-card { display: flex; flex-direction: column; gap: 0.3rem; background: var(--cream); border: 2px solid var(--border); border-radius: var(--radius); padding: clamp(0.8rem,2vw,1rem) clamp(0.8rem,2vw,1.2rem); transition: var(--transition); color: var(--text-dark); }
.loc-card:hover { border-color: var(--lime); background: rgba(181,229,80,0.08); transform: translateY(-2px); }
.loc-card-name { font-weight: 600; font-size: clamp(0.85rem,1.5vw,0.95rem); display: flex; align-items: center; gap: 0.4rem; }
.loc-card-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.loc-link { font-size: clamp(0.7rem,1.2vw,0.75rem); font-weight: 600; padding: 0.2rem 0.5rem; border-radius: 100px; transition: var(--transition); }
.loc-link.wl { background: rgba(181,229,80,0.15); color: var(--green-mid); }
.loc-link.pm { background: rgba(13,40,24,0.08); color: var(--text-mid); }
.loc-link:hover { opacity: 0.8; }

/* ---- CTA BANNER ---- */
.cta-banner { padding: clamp(3rem,7vw,5rem) clamp(1rem,4vw,2rem); background: linear-gradient(135deg,var(--green-deep),var(--green-mid)); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 60% 40%,rgba(181,229,80,0.08),transparent 50%); }
.cta-banner h2 { color: var(--white); position: relative; z-index: 2; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---- CONTACT ---- */
.contact { padding: clamp(3.5rem,8vw,6rem) 0; background: var(--cream-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.ci-icon { font-size: clamp(1.2rem,2.5vw,1.4rem); flex-shrink: 0; margin-top: 0.1rem; }
.ci-item strong { display: block; font-family: var(--font-display); font-size: clamp(0.75rem,1.3vw,0.9rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.ci-item a, .ci-item span { display: block; color: var(--text-dark); font-size: clamp(0.9rem,1.6vw,1rem); font-weight: 500; }
.ci-item a:hover { color: var(--green-mid); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); box-shadow: var(--shadow-md); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: clamp(0.65rem,1.5vw,0.85rem) clamp(0.8rem,2vw,1.1rem); border: 2px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: clamp(0.85rem,1.5vw,0.95rem); color: var(--text-dark); background: var(--cream); margin-bottom: 0.8rem; transition: var(--transition); outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--lime-dark); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.form-row input { margin-bottom: 0; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; justify-content: center; }

/* ---- FOOTER ---- */
.site-footer { background: var(--green-deep); padding: clamp(3rem,7vw,5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: clamp(1.5rem,3vw,2.5rem); margin-bottom: clamp(2rem,4vw,3rem); }
.footer-brand .logo { margin-bottom: 0.8rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: clamp(0.8rem,1.3vw,0.9rem); max-width: 260px; margin-bottom: 1rem; line-height: 1.6; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.footer-social a:hover { background: rgba(181,229,80,0.2); }
.footer-links h4 { color: var(--lime); font-family: var(--font-display); font-size: clamp(0.72rem,1.2vw,0.85rem); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: clamp(0.8rem,1.3vw,0.9rem); transition: var(--transition); }
.footer-links a:hover { color: var(--lime); }
.footer-contact h4 { color: var(--lime); font-family: var(--font-display); font-size: clamp(0.72rem,1.2vw,0.85rem); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: clamp(0.8rem,1.3vw,0.9rem); margin-bottom: 0.4rem; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: clamp(0.75rem,1.2vw,0.85rem); margin-bottom: 0.3rem; }

/* ---- LOCATION PAGES ---- */
.loc-hero { background: var(--green-deep); padding: clamp(6rem,12vw,9rem) clamp(1rem,4vw,2rem) clamp(3rem,6vw,5rem); text-align: center; position: relative; overflow: hidden; }
.loc-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%,rgba(45,110,74,0.4),transparent 70%); }
.breadcrumb { position: relative; z-index: 2; color: rgba(255,255,255,0.5); font-size: clamp(0.78rem,1.4vw,0.85rem); margin-bottom: 1rem; }
.breadcrumb a { color: var(--lime); }
.loc-hero h1 { color: var(--white); position: relative; z-index: 2; margin-bottom: 1rem; }
.loc-hero > .container > p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 1.8rem; position: relative; z-index: 2; }
.loc-hero .hero-cta { justify-content: center; position: relative; z-index: 2; }

/* USP ROW on location pages */
.loc-usp-row { background: var(--lime); padding: clamp(1rem,3vw,1.5rem) 0; }
.loc-usp-inner { display: flex; gap: clamp(1rem,3vw,2rem); justify-content: center; align-items: center; flex-wrap: wrap; }
.loc-usp-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(0.8rem,1.5vw,0.92rem); color: var(--green-deep); }

.loc-body { padding: clamp(2.5rem,6vw,5rem) 0; background: var(--white); }
.loc-grid-2 { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,1fr); gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.loc-content h2 { margin-bottom: 1rem; font-size: clamp(1.3rem,3vw,2rem); }
.loc-content p { margin-bottom: 1rem; font-size: clamp(0.88rem,1.6vw,1rem); }
.loc-content h3 { margin: 1.8rem 0 0.7rem; color: var(--green-mid); font-size: clamp(1rem,2vw,1.25rem); }
.loc-content ul { padding-left: 1.2rem; }
.loc-content ul li { margin-bottom: 0.4rem; font-size: clamp(0.85rem,1.5vw,0.95rem); color: var(--text-mid); line-height: 1.6; }
.checklist { list-style: none; padding: 0 !important; }
.checklist li { display: flex; gap: 0.6rem; align-items: flex-start; }
.checklist li::before { content: '✅'; flex-shrink: 0; margin-top: 0.1rem; font-size: 0.85rem; }

.loc-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1rem; }
.loc-sidebar-card { background: var(--green-deep); border-radius: var(--radius-lg); padding: clamp(1.2rem,3vw,2rem); color: var(--white); }
.loc-sidebar-card h3 { color: var(--lime); margin-bottom: 1rem; font-size: clamp(0.95rem,1.8vw,1.1rem); }
.loc-sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 0.7rem; font-size: clamp(0.8rem,1.4vw,0.9rem); }
.loc-sidebar-card p { color: rgba(255,255,255,0.6); font-size: clamp(0.78rem,1.3vw,0.88rem); margin-bottom: 0.3rem; }
.loc-sidebar-card a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.loc-sidebar-card a:hover { color: var(--lime); }

/* Service type badge on location pages */
.service-type-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; border-radius: 100px; font-family: var(--font-display); font-weight: 700; font-size: clamp(0.8rem,1.4vw,0.9rem); margin-bottom: 1.2rem; }
.badge-wl { background: rgba(181,229,80,0.15); color: var(--green-mid); border: 1.5px solid var(--lime); }
.badge-pm { background: rgba(13,40,24,0.08); color: var(--green-mid); border: 1.5px solid var(--green-light); }

/* Related pages link block */
.related-pages { background: var(--cream-dark); padding: clamp(2rem,5vw,3.5rem) 0; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1rem; }
.related-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 1rem 1.2rem; transition: var(--transition); }
.related-card:hover { border-color: var(--lime); transform: translateY(-2px); }
.related-card strong { display: block; font-size: clamp(0.85rem,1.5vw,0.95rem); margin-bottom: 0.3rem; }
.related-card span { font-size: clamp(0.75rem,1.2vw,0.82rem); color: var(--text-muted); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-visual { flex: 0 0 280px; }
  .why-grid { gap: 2.5rem; }
  .loc-grid-2 { grid-template-columns: 1fr; }
  .loc-sidebar { position: static; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { flex-direction: column; }
  .hero-visual { display: none; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-deep); align-items: center;
    justify-content: center; gap: 1.8rem; z-index: 1000; font-size: 1.3rem;
    padding: 2rem;
  }
  .main-nav.open a { font-size: 1.3rem; color: rgba(255,255,255,0.9); }
  .main-nav.open .btn-sm { font-size: 1rem; padding: 0.7rem 1.5rem; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; margin: 0.2rem 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .loc-usp-inner { gap: 0.8rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-usps { gap: 0.5rem; }
  .usp-badge { font-size: 0.72rem; padding: 0.3rem 0.7rem; }
  .loc-usp-inner { flex-direction: column; gap: 0.6rem; text-align: center; }
  .trainer-card { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .tag { font-size: 0.62rem; }
  .btn { font-size: 0.82rem; padding: 0.65rem 1rem; }
}
