/* ============================================================
   CARTER PAINTERS -- Main Stylesheet (Light Theme)
   carterpainters.co.za | Western Cape, South Africa
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --bg:          #ffffff;
  --bg-2:        #f7f7f7;
  --bg-3:        #f0f0f0;
  --accent:      #e63030;
  --accent-dark: #c42020;
  --accent-glow: rgba(230, 48, 48, 0.09);
  --text:        #0d0d0d;
  --text-muted:  #666666;
  --text-dim:    #bbbbbb;
  --border:      #e8e8e8;
  --border-2:    #d2d2d2;
  --white:       #ffffff;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --wa-green:    #25D366;
  --font:        'Space Grotesk', -apple-system, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.28s var(--ease);
  --radius:      3px;
  --container:   1200px;
  --nav-h:       72px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.06);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}
select option { background: var(--bg); color: var(--text); }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--dark); color: #f0f0f0; }
.section-dark .section-subtitle { color: rgba(240,240,240,0.6); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- Typography Blocks ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 48px;
}
.section-head { margin-bottom: 56px; }

/* ---- Divider ---- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0 30px;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAVIGATION -- Light
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  margin-left: auto;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 48, 48, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.btn-lg { padding: 17px 36px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   HERO -- Light with brand accent + background image
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 24px 80px;
  background: var(--bg);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.02);
}
.hero-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(230, 48, 48, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(230, 48, 48, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
.hero-inner { z-index: 2; }
.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  position: relative;
}
.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.hero-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--accent); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-areas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hero-areas-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-right: 4px;
}
.hero-areas-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  background: rgba(0,0,0,0.18);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 14px; height: 14px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--bg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 1px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(230,48,48,0.15);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--accent); }
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-link:hover svg { transform: translateX(4px); }

/* Service Card Image Thumbnails */
.service-card-img {
  width: calc(100% + 56px);
  margin: -36px -28px 24px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: calc(var(--radius) + 1px) calc(var(--radius) + 1px) 0 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

/* Services Detail Cards */
.service-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 44px 36px;
  border-radius: calc(var(--radius) + 1px);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(230,48,48,0.15);
  transform: translateY(-2px);
}
.service-detail-img {
  width: calc(100% + 72px);
  margin: -44px -36px 28px;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: calc(var(--radius) + 1px) calc(var(--radius) + 1px) 0 0;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-detail-card:hover .service-detail-img img { transform: scale(1.03); }
.service-detail-card .service-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.service-detail-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-detail-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-detail-card ul { margin-bottom: 28px; }
.service-detail-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-detail-card ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 auto 24px;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: calc(var(--radius) + 1px);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #f5a623;
}
.testimonial-stars svg { width: 15px; height: 15px; fill: currentColor; }
.testimonial p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text-dim); }

/* ============================================================
   SERVICES IMAGE REEL  (vertical auto-scroll)
   ============================================================ */
.services-reel-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 360px;
  overflow: hidden;
  gap: 4px;
  background: var(--bg-3);
}
.reel-col { overflow: hidden; position: relative; }
.reel-col::before,
.reel-col::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.reel-col::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-2) 0%, transparent 100%);
}
.reel-col::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-2) 0%, transparent 100%);
}
.reel-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: reelScroll 18s linear infinite;
}
.reel-track--2 { animation-duration: 24s; animation-delay: -6s; }
.reel-track--3 { animation-duration: 15s; animation-delay: -3s; }
@keyframes reelScroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.reel-slide {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   PAINT SUPPLIERS MARQUEE  (horizontal auto-scroll)
   ============================================================ */
.suppliers-section { padding-bottom: 56px; }
.suppliers-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 0;
}
.supplier-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  border-right: 1px solid var(--border);
}
.supplier-logo:first-child { border-left: 1px solid var(--border); }
.supplier-logo img {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.supplier-logo-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dim);
  transition: color var(--transition);
}
.supplier-logo:hover .supplier-logo-name { color: var(--text); }
.supplier-logo-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.6;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(230,48,48,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--white);
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.cta-banner .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.area-tag {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.area-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER -- Dark
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid #222;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; color: #888; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #888; transition: color var(--transition); }
.footer-col ul li a:hover { color: #f0f0f0; }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: #555; }
.footer-copy a { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #555; transition: color var(--transition); }
.footer-legal a:hover { color: #888; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); color: #888; transition: background var(--transition), color var(--transition); }
.social-link:hover { background: var(--accent); color: #fff; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(230,48,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-dim); }
.page-hero h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text);
}
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-story-visual {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,48,48,0.04) 0%, transparent 60%);
}
.about-story-visual img { width: 60%; mix-blend-mode: multiply; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  padding: 36px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 1px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 18px; }
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.certifications { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert-badge {
  padding: 6px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.gallery-item:hover { transform: scale(1.01); box-shadow: var(--shadow-md); }
.gallery-item:nth-child(4n+1) { grid-column: span 2; }
.gallery-thumb {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-thumb { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.gallery-overlay span { font-size: 11px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

/* Gallery color placeholders (deep rich tones) */
.g-warm-cream  { background: linear-gradient(135deg, #f5efe8 0%, #e8d5c0 100%); }
.g-deep-navy   { background: linear-gradient(135deg, #1a2a4a 0%, #2a4a7a 100%); }
.g-forest      { background: linear-gradient(135deg, #1a3020 0%, #2a4a2a 100%); }
.g-slate       { background: linear-gradient(135deg, #2a2e38 0%, #3a4050 100%); }
.g-rust        { background: linear-gradient(135deg, #8a2a1a 0%, #c43a20 100%); }
.g-sage        { background: linear-gradient(135deg, #e8ede0 0%, #c8d8b8 100%); }
.g-charcoal    { background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%); }
.g-teal        { background: linear-gradient(135deg, #0a3040 0%, #1a5060 100%); }
.g-white       { background: linear-gradient(135deg, #f8f8f8 0%, #ebebeb 100%); }
.g-burgundy    { background: linear-gradient(135deg, #4a1020 0%, #6a1a2a 100%); }
.g-olive       { background: linear-gradient(135deg, #3a3a18 0%, #5a5a20 100%); }
.g-stone       { background: linear-gradient(135deg, #d8cec0 0%, #c0b4a0 100%); }

.gallery-thumb::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: rgba(255,255,255,0.06);
  transform: rotate(-20deg);
  pointer-events: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.booking-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
}
.booking-form-wrap h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.booking-form-wrap > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
}
.form-control::placeholder { color: var(--text-dim); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--bg-2);
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12px; color: var(--text-dim); margin-top: 14px; line-height: 1.6; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.info-block { padding: 22px 0; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 7px;
}
.info-block-value { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.info-block-value a { color: var(--accent); transition: opacity var(--transition); }
.info-block-value a:hover { opacity: 0.75; }
.areas-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.area-pill {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.map-placeholder {
  margin-top: 28px;
  height: 180px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
}
.map-placeholder svg { width: 26px; height: 26px; opacity: 0.35; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa-green);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  opacity: 0;
  animation: waPulse 2.5s ease-out 0.5s infinite;
}
@keyframes waPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #f0f0f0;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE -- TABLET  (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-story-visual { aspect-ratio: 16/7; }

  .services-detail-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .areas-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 360px; justify-content: center; }
}

/* ============================================================
   RESPONSIVE -- MOBILE  (≤640px)
   ============================================================ */
@media (max-width: 640px) {

  /* ---- Root ---- */
  :root { --nav-h: 60px; }

  /* ---- Global layout ---- */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-title { margin-bottom: 14px; }
  .section-subtitle { font-size: 15px; margin-bottom: 28px; }
  .container { padding: 0 18px; }

  /* ---- Buttons – bigger touch targets ---- */
  .btn { padding: 15px 22px; font-size: 12px; min-height: 48px; }
  .btn-lg { padding: 16px 24px; font-size: 12px; }

  /* ---- Navigation ---- */
  .nav-inner { padding: 0 18px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu — slides in below the nav bar */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 28px 24px 100px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    animation: navSlideIn 0.26s cubic-bezier(0.4, 0, 0.2, 1);
  }
  @keyframes navSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.mobile-open li { width: 100%; }
  .nav-links.mobile-open a {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    color: var(--text);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links.mobile-open a::after { display: none; }
  .nav-links.mobile-open li:last-child a { border-bottom: none; }

  /* CTA button pinned to bottom of screen */
  .nav-cta.mobile-open {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px 24px 28px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 1001;
  }
  .nav-cta.mobile-open .btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 16px;
  }

  /* ---- Hero ---- */
  .hero { padding: calc(var(--nav-h) + 28px) 18px 56px; min-height: 100svh; }
  .hero-logo { width: 88px; height: 88px; margin-bottom: 10px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 12px; }
  .hero-title { font-size: clamp(44px, 12vw, 60px); margin-bottom: 8px; }
  .hero-tagline { font-size: 14px; letter-spacing: 0.05em; margin-bottom: 28px; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero-areas { gap: 4px 8px; justify-content: center; }
  .hero-areas-label { width: 100%; text-align: center; margin-bottom: 4px; }
  .hero-areas-tag { font-size: 11px; padding: 3px 9px; }
  .hero-scroll { bottom: 18px; }

  /* ---- Stats ---- */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat-number { font-size: 38px; }
  .stat-label { font-size: 10px; }

  /* ---- Service cards (index) ---- */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }
  .service-card-img {
    width: calc(100% + 40px);
    margin: -28px -20px 20px;
    aspect-ratio: 16/9;
  }
  .service-icon { width: 36px; height: 36px; margin-bottom: 14px; }
  .service-card h3 { font-size: 16px; }

  /* ---- Service detail cards (services page) ---- */
  .services-detail-grid { grid-template-columns: 1fr; }
  .service-detail-card { padding: 28px 20px; }
  .service-detail-img {
    width: calc(100% + 40px);
    margin: -28px -20px 24px;
    aspect-ratio: 16/7;
  }

  /* ---- Process steps ---- */
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step { padding: 0; }

  /* ---- Testimonials ---- */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 28px 20px; }

  /* ---- Areas grid ---- */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-tag { padding: 10px 12px; font-size: 12px; }

  /* ---- Services reel ---- */
  .services-reel-section { height: 240px; grid-template-columns: repeat(2, 1fr); }
  .services-reel-section .reel-col:last-child { display: none; }

  /* ---- Suppliers ---- */
  .supplier-logo { padding: 16px 36px; }
  .supplier-logo img { height: 40px; }

  /* ---- CTA banner ---- */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 26px; }
  .cta-banner p { font-size: 15px; margin-bottom: 28px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ---- Gallery filters – horizontal scroll ---- */
  .gallery-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-bottom: 4px;
    margin-bottom: 24px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; white-space: nowrap; padding: 8px 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-item:nth-child(4n+1) { grid-column: span 1; }

  /* ---- Page hero (inner pages) ---- */
  .page-hero { padding: calc(var(--nav-h) + 32px) 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 42px); }
  .page-hero p { font-size: 15px; }
  .breadcrumb { font-size: 11px; }

  /* ---- About ---- */
  .about-story { grid-template-columns: 1fr; gap: 32px; }
  .about-story-visual { aspect-ratio: 4/3; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 24px 20px; }
  .certifications { gap: 8px; }
  .cert-badge { font-size: 11px; }

  /* ---- Contact / Booking form ---- */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .booking-form-wrap { padding: 28px 20px; }
  .booking-form-wrap h2 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 16px; }
  .form-control { padding: 12px 14px; font-size: 16px; } /* 16px prevents iOS zoom */
  select.form-control { font-size: 16px; }
  .contact-info h3 { font-size: 18px; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 20px;
  }
  .footer-legal { gap: 14px; }
  .site-footer { padding: 48px 0 24px; }

  /* ---- WhatsApp float – cleaner position ---- */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; } /* no hover on mobile */
}
