/* =============================================================
   TRADIE PRO — style.css
   Change the entire colour scheme by editing the :root block.
   ============================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --primary:        #1a2e4a;   /* dark navy   */
  --secondary:      #f97316;   /* orange      */
  --text:           #1f2937;
  --background:     #ffffff;
  --accent:         #f3f4f6;

  /* Derived shades — adjust freely */
  --primary-dark:   #0f1c30;
  --primary-light:  #253d60;
  --secondary-dark: #ea6c05;
  --secondary-light:#fb923c;

  /* Neutral palette */
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-300: #d1d5db;
  --grey-500: #6b7280;
  --grey-700: #374151;
  --white:    #ffffff;
  --black:    #000000;

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter',  sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-h:  72px;

  /* UI */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.15);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.20);
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 640px;
  margin-top: var(--space-xs);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin-top: var(--space-sm);
}

.divider.centered { margin-inline: auto; }

/* ── Page padding helper ── */
.page-section {
  padding-block: var(--space-xl);
}

.page-section--alt {
  background: var(--accent);
}

.page-section--dark {
  background: var(--primary);
  color: var(--white);
}

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Top bar */
.header-top {
  background: var(--primary-dark);
  padding: 0.35rem 0;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: var(--grey-300);
}

.header-top-left a { color: var(--grey-300); }
.header-top-left a:hover { color: var(--secondary); }

.header-top-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--grey-300);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.social-link:hover { color: var(--secondary); }

/* Main nav row */
.header-main {
  padding: 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-sm);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-200);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* Call CTA in header */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.call-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-decoration: none;
}

.call-block:hover { background: var(--secondary-dark); }

.call-icon {
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.call-label {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.call-label .call-now {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.call-label .call-number {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.hamburger:hover { border-color: var(--secondary); }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-nav.is-open {
  max-height: 500px;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-200);
  padding: 1rem var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color var(--transition), background var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--secondary);
  background: rgba(255,255,255,0.05);
}

.mobile-nav .mobile-cta {
  margin: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--secondary);
  color: var(--white);
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: none;
}

.mobile-nav .mobile-cta:hover {
  background: var(--secondary-dark);
  color: var(--white);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--primary-dark);
  color: var(--grey-300);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-lg);
}

.footer-brand .site-logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--grey-500);
  max-width: 280px;
  margin-bottom: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--grey-300);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: var(--grey-500);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a::before {
  content: '›';
  color: var(--secondary);
  font-weight: 700;
}

.footer-col ul a:hover { color: var(--secondary); }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--grey-500);
}

.footer-contact-item .icon {
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a { color: var(--grey-500); }
.footer-contact-item a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-lg);
  padding: var(--space-sm) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--grey-500);
}

.footer-bottom a { color: var(--grey-500); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--secondary); }

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('[HERO-BACKGROUND-IMAGE-URL]');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,74,0.97) 0%,
    rgba(26,46,74,0.80) 60%,
    rgba(249,115,22,0.15) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl);
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--secondary);
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero h1 span { color: var(--secondary); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.trust-item .check {
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--secondary);
  padding: var(--space-md) 0;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  text-align: center;
}

.stat-item {
  padding: var(--space-xs);
  border-right: 1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ================================================================
   INTRO / WHY US
   ================================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.intro-image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--secondary);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  text-align: center;
}

.intro-image-badge .big-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.intro-image-badge .big-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.intro-feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* ================================================================
   SERVICES GRID (Home teaser + full Services page)
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  height: 200px;
  background: var(--grey-200);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.service-card-img.placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: rgba(255,255,255,0.15);
  font-size: 5rem;
}

.service-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--grey-500);
  flex: 1;
  margin-bottom: var(--space-sm);
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.75rem; }

/* Full services list on services.html */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition);
}

.service-detail-card:hover { box-shadow: var(--shadow-md); }

.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
}

.service-detail-img.placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.service-detail-body {
  padding: var(--space-lg);
}

.service-detail-body h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.service-detail-body p {
  color: var(--grey-500);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.service-checklist li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-xs);
}

.star { color: #f59e0b; font-size: 1rem; }

.review-text {
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.reviewer-info .location {
  font-size: 0.78rem;
  color: var(--grey-500);
}

/* Google Reviews badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-sm);
}

.google-logo {
  font-size: 1.8rem;
}

.google-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.google-badge-text .rating {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.google-badge-text .rating-label {
  font-size: 0.8rem;
  color: var(--grey-500);
}

.google-badge-stars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ================================================================
   CREDENTIALS / LICENCES
   ================================================================ */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.cred-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary);
  transition: transform var(--transition);
}

.cred-card:hover { transform: translateY(-3px); }

.cred-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto var(--space-sm);
}

.cred-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cred-card p {
  font-size: 0.82rem;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--secondary) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.cta-band .btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: relative;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--grey-300);
  background: transparent;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grey-200);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,74,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.ba-pair {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ba-image {
  position: relative;
}

.ba-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ba-image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--grey-300);
}

.ba-tag {
  position: absolute;
  top: var(--space-xs);
  left: var(--space-xs);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.ba-tag.after { background: var(--secondary); }

.ba-info {
  padding: var(--space-sm) var(--space-md);
}

.ba-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.ba-info p {
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.12);
}

.team-card-body {
  padding: var(--space-md);
}

.team-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.team-role {
  font-size: 0.82rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.team-card-body p {
  font-size: 0.88rem;
  color: var(--grey-500);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  transition: transform var(--transition);
}

.value-card:hover { transform: translateY(-2px); }

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.value-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.value-text p {
  font-size: 0.88rem;
  color: var(--grey-500);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.contact-form-wrap p {
  font-size: 0.9rem;
  color: var(--grey-500);
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select { appearance: none; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; }

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--white);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--secondary);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-detail-text .value {
  font-size: 0.95rem;
  color: var(--white);
}

.contact-detail-text a {
  color: var(--white);
  transition: color var(--transition);
}

.contact-detail-text a:hover { color: var(--secondary); }

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--grey-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  border-radius: var(--radius-md);
}

.map-placeholder .map-icon { font-size: 2.5rem; color: var(--grey-300); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: rgba(249,115,22,0.08);
  border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
}

.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--secondary); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb .current { color: var(--secondary); }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-content {
  max-width: 820px;
  margin-inline: auto;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.privacy-content p {
  color: var(--grey-700);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.privacy-content ul {
  list-style: disc;
  padding-left: var(--space-md);
  color: var(--grey-700);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Tablets 1024px ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .creds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .intro-image img { height: 340px; }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-detail-img { min-height: 200px; height: 200px; }
  .service-detail-card.reverse { direction: ltr; }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header-top { display: none; }

  .site-nav { display: none; }

  .header-cta .call-block .call-label .call-number {
    font-size: 0.9rem;
  }

  .hamburger { display: flex; }

  .mobile-nav { display: flex; }

  .hero { min-height: 75vh; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

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

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

  .creds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }
}

/* ── Small Mobile 480px ── */
@media (max-width: 480px) {
  .creds-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar .container {
    grid-template-columns: 1fr;
  }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }

  .call-block .call-label { display: none; }
  .call-block { padding: 0.5rem 0.75rem; }
  .call-icon { font-size: 1.3rem; }
}
