/* ═══════════════════════════════════════════════════════════════
   TEQERS DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --green:       #FF7F00;
  --green-light: #DD8C3C;
  --green-dark:  #CC6600;
  --navy:        #0D1B2A;
  --navy-mid:    #162436;
  --charcoal:    #1E2B38;
  --slate:       #2C3E50;
  --white:       #FFFFFF;
  --off-white:   #F4F7F5;
  --grey-light:  #E8EDE9;
  --grey-mid:    #8FA399;
  --grey-text:   #5A6B5E;
  --orange:      #E8611A;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.20);

  --max-w: 1200px;
  --section-pad: 80px 24px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
═══════════════════════════════════════════════════════════════ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.0;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}
.body-lg  { font-size: 18px; line-height: 1.7; color: var(--grey-text); }
.body-md  { font-size: 16px; line-height: 1.6; color: var(--grey-text); }
.body-sm  { font-size: 14px; line-height: 1.5; color: var(--grey-mid); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn .arrow { font-size: 18px; transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   SECTION LABEL / SLASH DIVIDER
═══════════════════════════════════════════════════════════════ */
.slash-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.slash-divider::before {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: var(--green);
  transform: skewX(-20deg);
}
.slash-divider::after {
  content: '';
  display: block;
  width: 12px;
  height: 4px;
  background: var(--green-light);
  transform: skewX(-20deg);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img,
.custom-logo-link img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links li.current-menu-item > a { color: var(--green); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-icon {
  position: relative;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.cart-icon:hover { background: rgba(255,255,255,0.1); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--navy-mid) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.45;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,122,60,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,122,60,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow .eyebrow { color: var(--green-light); }
.hero-eyebrow::before {
  content: '🇦🇺';
  font-size: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.5vw, 100px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  width: 100%;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(26,122,60,0.3);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}
.hero-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.hero-img-placeholder .icon { font-size: 48px; }
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(26,122,60,0.4);
  z-index: 3;
}
.hero-badge .badge-num { font-size: 28px; line-height: 1; }
.hero-badge .badge-txt { font-size: 10px; letter-spacing: 0.08em; opacity: 0.9; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════════════ */
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .slash-divider { justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   WHAT IS TEQBALL
═══════════════════════════════════════════════════════════════ */
.what-is { padding: var(--section-pad); background: var(--off-white); }
.what-is-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.what-is-text .display-md { color: var(--navy); margin-bottom: 20px; margin-top: 8px; }
.what-is-text .body-lg { margin-bottom: 16px; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-frame iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; }
.play-btn {
  width: 72px; height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(26,122,60,0.5);
  color: white;
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT TABLES
═══════════════════════════════════════════════════════════════ */
.shop-tables { padding: var(--section-pad); background: var(--white); }
.products-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.product-card.featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green); }
.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--green);
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.product-badge.orange { background: var(--orange); }
.product-img {
  aspect-ratio: 4/3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--grey-mid);
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--off-white), var(--grey-light));
  color: var(--grey-mid);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 8px;
  text-align: center;
  padding: 12px;
}
.product-img-placeholder .big-icon { font-size: 48px; }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.product-tagline { font-size: 13px; color: var(--grey-text); margin-bottom: 16px; line-height: 1.5; flex: 1; }
.product-features { margin-bottom: 16px; }
.product-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--grey-text);
  padding: 2px 0;
}
.product-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 11px; }
.product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
  gap: 10px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.product-price ins { text-decoration: none; }
.product-price del { font-size: 14px; opacity: 0.5; font-family: var(--font-body); font-weight: 400; }
.compare-link { text-align: center; margin-top: 40px; }
.compare-link a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.compare-link a:hover { color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES STRIP
═══════════════════════════════════════════════════════════════ */
.services-strip { background: var(--navy); padding: 60px 24px; }
.services-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.services-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}
.service-card:hover { background: rgba(26,122,60,0.12); border-color: rgba(26,122,60,0.4); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.service-price { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--green-light); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════════
   HIRE SECTION
═══════════════════════════════════════════════════════════════ */
.hire-section { padding: var(--section-pad); background: var(--off-white); }
.hire-section-inner { max-width: var(--max-w); margin: 0 auto; }
.hire-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 56px; }
.hire-uses { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.use-tile {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.use-tile:hover { border-color: var(--green); }
.use-tile .use-icon { font-size: 22px; }
.use-tile-title { font-size: 13px; font-weight: 600; color: var(--navy); }
.use-tile-sub { font-size: 12px; color: var(--grey-mid); }
.hire-table-wrap { overflow-x: auto; }
.hire-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hire-table th {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.hire-table th:first-child { border-radius: var(--radius) 0 0 0; }
.hire-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.hire-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-light); color: var(--charcoal); vertical-align: middle; }
.hire-table tr:last-child td { border-bottom: none; }
.hire-table tr:nth-child(even) td { background: var(--off-white); }
.hire-table tr:hover td { background: #EBF4EE; }
.hire-table td.price { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--green-dark); }
.hire-table td.price.na { color: var(--grey-mid); font-size: 14px; font-weight: 400; }
.hire-table td.opt-name { font-weight: 600; color: var(--navy); }
.hire-table th.green-col { background: var(--green-dark); }
.hire-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hire-cta-text .display-md { color: var(--white); font-size: 28px; }
.hire-cta-text p { color: rgba(255,255,255,0.6); margin-top: 8px; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════════
   WHY TEQERS
═══════════════════════════════════════════════════════════════ */
.why-teqers { padding: var(--section-pad); background: var(--navy); }
.why-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: start; }
.why-left .display-lg { color: var(--white); margin-bottom: 20px; margin-top: 8px; }
.why-left .body-lg { color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}
.why-card:hover { background: rgba(26,122,60,0.1); border-color: rgba(26,122,60,0.35); transform: translateY(-3px); }
.why-card-icon { font-size: 32px; margin-bottom: 14px; }
.why-card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.why-card-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   DELIVERY SECTION
═══════════════════════════════════════════════════════════════ */
.delivery-section { padding: var(--section-pad); background: var(--white); }
.delivery-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.delivery-text .display-md { color: var(--navy); margin-bottom: 16px; margin-top: 8px; }
.delivery-text .body-lg { margin-bottom: 28px; }
.delivery-opt { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--grey-light); }
.delivery-opt:last-child { border-bottom: none; }
.delivery-opt-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.delivery-opt-title { font-weight: 600; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.delivery-opt-desc { font-size: 13px; color: var(--grey-text); line-height: 1.5; }
.note-box {
  background: #EBF4EE;
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-top: 8px;
}
.note-box p { font-size: 14px; color: var(--green-dark); line-height: 1.6; }
.note-box strong { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials { padding: var(--section-pad); background: var(--off-white); }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 60px;
  line-height: 1;
  color: var(--green);
  font-family: Georgia, serif;
  opacity: 0.2;
}
.testi-stars { color: #F5A623; font-size: 14px; margin-bottom: 12px; }
.testi-quote { font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--grey-mid); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.contact-section { padding: var(--section-pad); background: var(--white); }
.contact-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-info .display-md { color: var(--navy); margin-bottom: 16px; margin-top: 8px; }
.contact-info .body-lg { margin-bottom: 36px; }
.contact-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--grey-light); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-mid); margin-bottom: 2px; }
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--navy); }
.contact-item-value a:hover { color: var(--green); }

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-text);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,60,0.1);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--grey-mid); margin-top: 12px; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 64px 24px 0; }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); text-transform: uppercase; }
.footer-logo-text span { color: var(--green); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 24px; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.social-link:hover { background: var(--green); color: white; }
.footer-col-title { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: white;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--green);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .what-is-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-strip-inner { grid-template-columns: 1fr 1fr; }
  .services-label { display: none; }
  .hire-intro { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .delivery-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-bar-inner { justify-content: flex-start; overflow-x: auto; }
  .trust-item { flex-shrink: 0; }
  .hero-stats { gap: 20px; }
  .why-right { grid-template-columns: 1fr; }
  .services-strip-inner { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .hire-uses { grid-template-columns: 1fr; }
  .hire-cta { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 52px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   WORDPRESS / ACCESSIBILITY / BUILDER-COMPATIBILITY ADDITIONS
═══════════════════════════════════════════════════════════════ */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link.screen-reader-text:focus {
  position: fixed !important;
  top: 8px; left: 8px;
  width: auto; height: auto;
  clip: auto;
  z-index: 100000;
  background: var(--green);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13px;
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* Generic page wrapper used by page.php / page-templates (clears the fixed header) */
.site-main { padding-top: 68px; }
body.admin-bar .site-main { padding-top: 100px; }
@media (max-width: 782px) { body.admin-bar .site-main { padding-top: 114px; } }

/* Canvas template: no extra chrome, ready for a page builder's own sections */
.canvas-template { padding-top: 68px; }
.canvas-template .entry-content { max-width: none; }

/* WooCommerce default pages wrapped in .woocommerce-page-wrap by inc/woocommerce.php */
.woocommerce-page-wrap .woocommerce { font-family: var(--font-body); }
.woocommerce-page-wrap a.button,
.woocommerce-page-wrap button.button,
.woocommerce-page-wrap input.button {
  background: var(--green) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-display) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.woocommerce-page-wrap a.button:hover,
.woocommerce-page-wrap button.button:hover { background: var(--green-dark) !important; }
.woocommerce-page-wrap .price { color: var(--navy); font-family: var(--font-display); }

/* WooCommerce/core gallery + caption fallback (from html5 theme support) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--grey-mid); margin-top: 6px; }
.alignleft { float: left; margin: 0 20px 12px 0; }
.alignright { float: right; margin: 0 0 12px 20px; }
.aligncenter { display: block; margin: 0 auto 12px; }
