/* ═══════════════════════════════════════════════════
   SOCAL LANDSCAPE & GARDENING — Premium Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --green-900: #0b1a13;
  --green-800: #143424;
  --green-700: #1b4332;
  --green-600: #2d6a4f;
  --green-500: #40916c;
  --green-400: #52b788;
  --green-300: #74c69d;
  --green-100: #d8f3dc;
  --gold-500:  #e9c46a;
  --gold-400:  #f4a261;
  --gold-300:  #f4a261;
  --cream:     #f7f9f6;
  --dark:      #0d1f16;
  --dark-2:    #163224;
  --text:      #1b3227;
  --text-muted:#526c5f;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(13,38,23,.08);
  --shadow-md: 0 8px 32px rgba(13,38,23,.14);
  --shadow-lg: 0 20px 60px rgba(13,38,23,.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* ── RESET & BASE ─────────────────────────── */
*, *::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(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--green-500); }

/* ── CONTAINER ─────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-500) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(64,145,108,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(64,145,108,.5);
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
}
.btn-outline {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.25);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-500);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.full-width { width: 100%; justify-content: center; }

/* ── SECTION HEADER ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title,
.section-header.light .section-subtitle { color: var(--white); }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-100), #b7e4c7);
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 26, 16, .96);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  color: var(--green-300);
  letter-spacing: .04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white) !important;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(64,145,108,.4);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-600)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(64,145,108,.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 26, 16, .78) 0%,
    rgba(13, 38, 23, .55) 50%,
    rgba(10, 26, 16, .4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  animation: fadeSlideUp .9s ease both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 8px 18px;
  margin-top: 80px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  animation: fadeSlideUp .9s ease .1s both;
}
.hero-badge .stars { color: var(--gold-400); font-size: 1rem; }
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  animation: fadeSlideUp .9s ease .2s both;
}
.hero-title-top {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--green-300);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-title-main {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-title-accent {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-400);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeSlideUp .9s ease .3s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeSlideUp .9s ease .4s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 18px 36px;
  animation: fadeSlideUp .9s ease .5s both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 10s both;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hero-scroll.fade-out {
  opacity: 0;
  visibility: hidden;
}
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-400));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-100), #b7e4c7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  transform: scale(1.1) rotate(5deg);
}
.service-card:hover .service-icon { filter: grayscale(0); }
.service-icon { font-size: 1.8rem; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   TRANSFORMATION / BEFORE & AFTER
══════════════════════════════════════════════ */
.transformation {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 60%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.transformation::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,145,108,.15) 0%, transparent 70%);
}
.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.ba-card:hover { }
.ba-card img { width: 100%; height: 340px; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  z-index: 1;
}
.before-label { background: rgba(0,0,0,.7); color: var(--white); }
.after-label {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
}
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: var(--white);
}
.ba-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.ba-caption p { font-size: .82rem; opacity: .85; }
.ba-arrow {
  color: var(--gold-400);
  flex-shrink: 0;
}
.ba-arrow svg { width: 60px; height: 60px; }

/* Slider */
.ba-slider-section { margin-top: 40px; }
.slider-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  cursor: col-resize;
  max-width: 780px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slider-before { z-index: 1; }
.slider-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0,0,0,.4);
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  cursor: col-resize;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.slider-handle svg { width: 48px; height: 48px; }
.slider-tag {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  z-index: 4;
}
.before-tag { left: 16px; background: rgba(0,0,0,.6); color: var(--white); }
.after-tag { right: 16px; background: linear-gradient(135deg, var(--green-600), var(--green-400)); color: var(--white); }
.slider-hint {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio {
  padding: 120px 0;
  background: var(--white);
}
.portfolio-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--cream);
  border: 2px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  box-shadow: 0 4px 16px rgba(64,145,108,.3);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  group: true;
}
.portfolio-item.large { grid-column: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover img { transform: scale(1.02); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,16,.9) 0%, rgba(10,26,16,.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.portfolio-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.portfolio-overlay p {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.portfolio-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  top: 40px; right: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.badge-stars { color: var(--gold-500); font-size: 1rem; }
.badge-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.badge-count {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.about-content { display: flex; flex-direction: column; gap: 0; }
.about-content .section-tag { align-self: flex-start; }
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 16px;
}
.about-body {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--green-500);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar h4 {
  font-weight: 600;
  color: var(--dark);
  font-size: .95rem;
  margin-bottom: 4px;
}
.pillar p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews {
  padding: 120px 0;
  background: var(--white);
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.summary-stars { font-size: 1.4rem; color: var(--gold-500); }
.summary-score {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
}
.summary-label { font-size: .9rem; color: var(--text-muted); }
.reviews-track-wrap { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(248, 246, 240, 0.75); /* Cream glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-name { display: block; font-weight: 600; font-size: .92rem; color: var(--dark); }
.reviewer-meta { font-size: .75rem; color: var(--text-muted); }
.review-google { margin-left: auto; flex-shrink: 0; }
.review-stars {
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.review-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.rev-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  transition: var(--transition);
}
.rev-nav-btn:hover { background: var(--green-600); color: var(--white); border-color: var(--green-600); }
.rev-dots { display: flex; gap: 8px; align-items: center; }
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-200, #d8f3dc);
  transition: var(--transition);
  cursor: pointer;
}
.rev-dot.active {
  background: var(--green-600);
  width: 24px;
  border-radius: 4px;
}
.reviews-cta { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-800) 60%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,145,108,.12) 0%, transparent 70%);
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  transition: var(--transition);
}
a.contact-item:hover { color: var(--white); transform: translateX(4px); }
.ci-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; }
.ci-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.ci-value { font-weight: 500; color: rgba(255,255,255,.9); }
.service-area h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-tags span {
  padding: 6px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  padding: 28px 28px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(45,106,79,.12);
  font-family: inherit;
  font-size: .88rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(64,145,108,.12);
}
.form-group textarea { resize: vertical; min-height: 65px; }
.form-disclaimer {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  border: 2px solid var(--green-400);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 16px;
  animation: fadeSlideUp .4s ease both;
}
.form-success.show { display: flex; }
.form-success span { font-size: 2rem; }
.form-success strong { color: var(--green-700); font-size: 1.1rem; }
.form-success p { font-size: .88rem; color: var(--green-600); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--dark); color: var(--white); }
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.stars-sm { color: var(--gold-400); font-size: .9rem; }
.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green-300); transform: translateX(4px); }
.footer-contact-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 14px;
  transition: var(--transition);
  line-height: 1.5;
}
a.footer-contact-item:hover { color: var(--green-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ══════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(64,145,108,.4);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-700);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(64,145,108,.5);
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Full Device Coverage
   ══════════════════════════════════════════════

   Breakpoints:
   ── 1600px+  : Large desktops / 4K
   ── 1440px   : 15" laptops / large displays
   ── 1366px   : 14" laptops
   ── 1280px   : 13.5" laptops (Surface Laptop)
   ── 1024px   : Tablets landscape / small laptops
   ── 820px    : iPad Pro portrait
   ── 768px    : Tablets portrait / large phones
   ── 600px    : Large phones
   ── 480px    : Standard phones
   ── 375px    : Small phones (iPhone SE etc.)
   ── 320px    : Very small phones
══════════════════════════════════════════════ */

/* ── LARGE DESKTOPS (1600px+) ─────────────────── */
@media (min-width: 1600px) {
  .container { max-width: 1480px; }
  .nav-container { max-width: 1480px; }
  .hero-content { max-width: 900px; }
  .hero-title-main { font-size: 6.5rem; }
  .hero-title-accent { font-size: 5.5rem; }
  .hero-badge { margin-top: 100px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .section-title { font-size: 3.5rem; }
  .portfolio-grid { grid-auto-rows: 320px; }
  .footer-grid { gap: 80px; }
}

/* ── 15" LAPTOPS / 1440px ─────────────────────── */
@media (max-width: 1440px) {
  html { font-size: 15px; }
  .container { max-width: 1200px; padding: 0 32px; }
  .nav-container { max-width: 1200px; padding: 0 32px; }
  .hero { min-height: 680px; }
  .hero-content { max-width: 780px; }
  .hero-badge { margin-top: 80px; }
  .services { padding: 100px 0; }
  .transformation { padding: 100px 0; }
  .portfolio { padding: 100px 0; }
  .about { padding: 100px 0; }
  .reviews { padding: 100px 0; }
  .contact { padding: 100px 0; }
  .services-grid { gap: 24px; }
  .about-container { gap: 64px; }
  .contact-container { gap: 64px; }
  .footer-grid { gap: 48px; }
}

/* ── 14" LAPTOPS / 1366px ─────────────────────── */
@media (max-width: 1366px) {
  html { font-size: 14px; }
  .container { max-width: 1160px; padding: 0 28px; }
  .nav-container { max-width: 1160px; padding: 0 28px; }
  .hero { min-height: 600px; }
  .hero-badge { margin-top: 70px; }
  .hero-title-main { font-size: clamp(3rem, 6.5vw, 4.5rem); }
  .hero-title-accent { font-size: clamp(2.4rem, 5.2vw, 3.6rem); }
  .hero-actions { margin-bottom: 40px; }
  .services { padding: 90px 0; }
  .transformation { padding: 90px 0; }
  .portfolio { padding: 90px 0; }
  .about { padding: 90px 0; }
  .reviews { padding: 90px 0; }
  .contact { padding: 90px 0; }
  .services-grid { gap: 20px; }
  .portfolio-grid { grid-auto-rows: 240px; }
  .about-container { gap: 56px; }
  .about-visual { height: 460px; }
  .about-img-main { height: 360px; }
  .about-img-accent { height: 240px; }
  .contact-container { gap: 56px; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 40px; }
}

/* ── 13.5" LAPTOPS (Surface) / 1280px ─────────── */
@media (max-width: 1280px) {
  .container { max-width: 1080px; padding: 0 24px; }
  .nav-container { max-width: 1080px; padding: 0 24px; }
  .hero-content { max-width: 720px; }
  .hero-title-main { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .hero-title-accent { font-size: clamp(2.2rem, 5vw, 3.8rem); }
  .hero-badge { margin-top: 90px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-card { padding: 28px 24px; }
  .portfolio-grid { grid-auto-rows: 240px; gap: 14px; }
  .about-container { gap: 48px; }
  .about-visual { height: 480px; }
  .about-img-main { height: 380px; }
  .about-img-accent { height: 250px; }
  .contact-container { gap: 48px; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
  .slider-container { height: 380px; }
}

/* ── TABLET LANDSCAPE / 1024px ────────────────── */
@media (max-width: 1024px) {
  /* Layout */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .portfolio-item.large { grid-column: span 1; }
  .about-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-visual { height: 440px; }
  .about-img-main { width: 75%; height: 340px; }
  .about-img-accent { width: 58%; height: 220px; }
  .contact-container { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  /* Hero */
  .hero-badge { margin-top: 85px; }
  .hero-title-main { font-size: clamp(2.5rem, 5.5vw, 4rem); }
  .hero-title-accent { font-size: clamp(2rem, 4.5vw, 3.2rem); }
  .hero-stats { padding: 16px 24px; gap: 18px; }
  /* Before/After */
  .ba-wrapper { gap: 18px; }
  .ba-card img { height: 300px; }
  .slider-container { height: 360px; }
  /* Sections */
  .services { padding: 90px 0; }
  .transformation { padding: 90px 0; }
  .portfolio { padding: 90px 0; }
  .about { padding: 90px 0; }
  .reviews { padding: 90px 0; }
  .contact { padding: 90px 0; }
  .review-card { flex: 0 0 calc(50% - 12px); }
}

/* ── IPAD PRO PORTRAIT / 820px ────────────────── */
@media (max-width: 820px) {
  /* Hero */
  .hero { min-height: 680px; }
  .hero-badge { margin-top: 80px; font-size: .82rem; }
  .hero-title-main { font-size: clamp(2.4rem, 5vw, 3.6rem); }
  .hero-title-accent { font-size: clamp(1.9rem, 4vw, 3rem); }
  .hero-subtitle { font-size: .95rem; }
  .hero-stats { gap: 16px; padding: 14px 20px; }
  .stat-num { font-size: 1.5rem; }
  /* About */
  .about-container { grid-template-columns: 1fr; gap: 0; }
  .about-visual { height: 380px; margin-bottom: 40px; }
  .about-img-main { width: 72%; height: 300px; }
  .about-img-accent { width: 55%; height: 210px; }
  .section-title.left { text-align: center; }
  .about-content .section-tag { align-self: center; }
  /* Contact */
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  /* Before/After */
  .ba-wrapper { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .ba-card img { height: 260px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 0px); }
}

/* ── TABLET PORTRAIT / 768px ──────────────────── */
@media (max-width: 768px) {
  html { font-size: 15px; } /* Maintain readability on mobile */
  /* Navbar — mobile slide-in menu */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 300px;
    background: rgba(11, 22, 16, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    align-items: flex-start;
    box-shadow: -8px 0 40px rgba(0,0,0,.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li {
    width: 100%;
  }
  .nav-links > li:last-child {
    margin-top: auto; /* Push CTA to the bottom thumb zone per Fitts' Law */
  }
  .nav-link {
    display: block;
    font-size: 1.1rem;
    padding: 16px 0; /* Ensures touch target is >= 48px */
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
  }
  .nav-cta {
    margin-top: 0;
    width: 100%;
    justify-content: center;
    padding: 16px 20px; /* Large touch target for the CTA */
    border-radius: 50px;
  }
  .hamburger { display: flex; z-index: 1000; padding: 12px; margin-right: -12px; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero */
  .hero { min-height: 660px; }
  .hero-badge { margin-top: 75px; padding: 7px 14px; font-size: .8rem; }
  .hero-title-main { font-size: 2.8rem; }
  .hero-title-accent { font-size: 2.2rem; }
  .hero-subtitle { font-size: .92rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 14px; padding: 18px 24px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-num { font-size: 1.6rem; }

  /* Sections spacing */
  .services { padding: 80px 0; }
  .transformation { padding: 80px 0; }
  .portfolio { padding: 80px 0; }
  .about { padding: 80px 0; }
  .reviews { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .footer-top { padding: 60px 0 40px; }
  .section-header { margin-bottom: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; gap: 12px; }

  /* Before/After */
  .ba-wrapper { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); justify-self: center; }
  .ba-card img { height: 240px; }
  .slider-container { height: 280px; }

  /* About */
  .about-container { grid-template-columns: 1fr; }
  .about-visual { height: 320px; margin-bottom: 36px; }
  .about-img-main { width: 80%; height: 260px; }
  .about-img-accent { width: 58%; height: 190px; }
  .about-badge-float { right: -8px; top: 20px; padding: 12px 16px; }
  .badge-score { font-size: 1.6rem; }
  .section-title.left { text-align: center; }
  .about-content .section-tag { align-self: center; }

  /* Reviews */
  .review-card { flex: 0 0 100%; }

  /* Contact */
  .contact-container { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── LARGE PHONES / 600px ─────────────────────── */
@media (max-width: 600px) {
  html { font-size: 16px; }
  .container { padding: 0 18px; }
  /* Hero */
  .hero { min-height: 640px; }
  .hero-badge { margin-top: 72px; }
  .hero-title-main { font-size: 2.4rem; }
  .hero-title-accent { font-size: 1.9rem; }
  .hero-title-top { font-size: .85rem; letter-spacing: .08em; }
  .hero-actions .btn { max-width: 280px; }
  .hero-stats { padding: 16px 18px; }
  /* Before/After */
  .ba-wrapper { gap: 12px; }
  .slider-container { height: 260px; }
  .slider-handle { width: 40px; height: 40px; }
  .slider-handle svg { width: 40px; height: 40px; }
  /* Services */
  .service-card { padding: 24px 20px; }
  /* Contact */
  .contact-form-wrap { padding: 28px 18px; }
  /* Portfolio */
  .portfolio-grid { grid-auto-rows: 200px; }
  /* Reviews */
  .review-card { padding: 24px 20px; }
  /* Section */
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: .95rem; }
}

/* ── COMPACT PHONES / 450px ───────────────────── */
@media (max-width: 450px) {
  html { font-size: 13px; }
  .container { padding: 0 16px; }
  /* Hero */
  .hero { min-height: 480px; }
  .hero-badge { margin-top: 50px; padding: 4px 8px; font-size: .65rem; gap: 4px; }
  .hero-badge .stars { font-size: .75rem; }
  .hero-title-main { font-size: 1.8rem; line-height: 1.1; }
  .hero-title-accent { font-size: 1.4rem; }
  .hero-title-top { font-size: .7rem; }
  .hero-subtitle { font-size: .8rem; margin-bottom: 20px; }
  .hero-actions { gap: 10px; margin-bottom: 24px; }
  .hero-actions .btn { padding: 10px 18px; font-size: .8rem; }
  .hero-stats { padding: 10px 12px; gap: 8px; }
  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: .6rem; }
  /* Before/After */
  .ba-card img { height: 160px; }
  .slider-container { height: 190px; }
  /* About */
  .about-visual { height: 240px; margin-bottom: 20px; }
  .about-img-main { width: 85%; height: 190px; }
  .about-img-accent { width: 65%; height: 140px; }
  /* Services */
  .services { padding: 36px 0; }
  .transformation { padding: 36px 0; }
  .portfolio { padding: 36px 0; }
  .about { padding: 36px 0; }
  .reviews { padding: 36px 0; }
  .contact { padding: 36px 0; }
  /* Contact form */
  .contact-form-wrap { padding: 16px 12px; border-radius: var(--radius-md); }
  .contact-form h3 { font-size: 1.1rem; margin-bottom: 12px; }
  /* Portfolio */
  .portfolio-grid { grid-auto-rows: 140px; }
  /* Reviews */
  .review-card { padding: 16px 12px; }
  .review-header { gap: 8px; }
  /* Footer */
  .footer-top { padding: 32px 0 20px; }
  /* Back to top */
  .back-to-top { bottom: 12px; right: 12px; width: 32px; height: 32px; }
  /* Section */
  .section-header { margin-bottom: 20px; }
  .section-title { font-size: 1.35rem; }
}

/* ── IPHONE SE / SMALL PHONES (375px) ────────── */
@media (max-width: 375px) {
  html { font-size: 12px; }
  .container { padding: 0 12px; }
  /* Hero */
  .hero { min-height: 440px; }
  .hero-badge { margin-top: 40px; padding: 4px 6px; font-size: .65rem; }
  .hero-title-main { font-size: 1.6rem; }
  .hero-title-accent { font-size: 1.3rem; }
  .hero-title-top { font-size: .65rem; letter-spacing: .06em; }
  .hero-subtitle { font-size: .75rem; margin-bottom: 16px; }
  .hero-actions .btn { padding: 8px 14px; font-size: .75rem; max-width: 240px; }
  .hero-stats { padding: 8px 10px; gap: 6px; }
  .stat-num { font-size: 1rem; }
  .stat-divider { width: 40px; }
  /* Sections */
  .services { padding: 28px 0; }
  .transformation { padding: 28px 0; }
  .portfolio { padding: 28px 0; }
  .about { padding: 28px 0; }
  .reviews { padding: 28px 0; }
  .contact { padding: 28px 0; }
  /* Service card */
  .service-card { padding: 12px 10px; }
  .service-icon-wrap { width: 40px; height: 40px; border-radius: 10px; }
  .service-icon { font-size: 1.1rem; }
  /* Contact form */
  .contact-form-wrap { padding: 14px 10px; }
  /* About visual */
  .about-visual { height: 200px; margin-bottom: 16px; }
  .about-img-main { height: 150px; }
  .about-img-accent { height: 110px; }
  /* Section header */
  .section-title { font-size: 1.25rem; }
  .section-subtitle { font-size: .75rem; }
  .section-header { margin-bottom: 16px; }
  /* Filter btns */
  .filter-btn { padding: 6px 10px; font-size: .7rem; }
  /* Portfolio */
  .portfolio-grid { grid-auto-rows: 120px; gap: 6px; }
  /* Before/After */
  .slider-container { height: 150px; }
  .ba-card img { height: 130px; }
}

/* ── VERY SMALL PHONES (320px) ────────────────── */
@media (max-width: 320px) {
  html { font-size: 11.5px; }
  .container { padding: 0 8px; }
  .hero-title-main { font-size: 1.45rem; }
  .hero-title-accent { font-size: 1.15rem; }
  .hero-badge { font-size: .6rem; margin-top: 36px; }
  .hero-actions .btn { max-width: 200px; font-size: .7rem; padding: 8px 12px; }
  .hero-stats { padding: 6px 8px; }
  .stat-num { font-size: .95rem; }
  .contact-form-wrap { padding: 10px 8px; }
  .section-title { font-size: 1.15rem; }
  .nav-links { width: 100%; }
}

