/* =========================================================================
   Sri Lakshmi Roofing Industry — Design System
   Palette: Dark Blue + Steel Grey + White, Orange/Red accent for CTAs
   ========================================================================= */

:root {
  /* Brand palette */
  --navy-950: #0a1628;
  --navy-900: #0f1f38;
  --navy-800: #16304f;
  --navy-700: #1e3f66;
  --navy-600: #2a5289;
  --steel-700: #3d4b5c;
  --steel-500: #64748b;
  --steel-300: #cbd5e1;
  --steel-100: #eef1f5;
  --white: #ffffff;
  --off-white: #f7f9fb;

  --accent-500: #e8590c;
  --accent-600: #d1470a;
  --accent-400: #ff7a29;
  --accent-glow: rgba(232, 89, 12, 0.35);

  --success-500: #16a34a;
  --error-500: #dc2626;

  /* Typography */
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Shape & elevation */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.18);
  --shadow-glow: 0 10px 30px var(--accent-glow);

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --container-w: 1240px;
}

/* ---------- Reset & base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* The off-canvas mobile menu sits just past the right edge. `clip` stops
     that creating a horizontal scrollbar, and unlike `hidden` it does NOT
     make a scroll container — so the sticky header keeps working. */
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  color: var(--navy-900);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy-950);
}
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

:focus-visible {
  outline: 3px solid var(--accent-400);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-500);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Section helpers --------------------------------------------- */
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--steel-100);
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--grey { background: var(--steel-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-500);
  display: inline-block;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--steel-500); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--steel-300); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--accent:hover { box-shadow: 0 16px 40px var(--accent-glow); }

.btn--whatsapp {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 10px 30px rgba(30, 190, 93, 0.35);
}
.btn--whatsapp:hover { box-shadow: 0 16px 40px rgba(30, 190, 93, 0.4); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-800);
}
.btn--outline-dark:hover { background: var(--navy-900); color: #fff; }

.btn--sm { padding: 10px 20px; font-size: 0.86rem; }
.btn--block { width: 100%; }
.btn--icon-only { padding: 12px; border-radius: 50%; }

/* ---------- Header / Navigation ----------------------------------------- */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { transition: color var(--transition); }
.topbar a:hover { color: var(--accent-400); }
.topbar__contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(15, 31, 56, 0.08);
  transition: box-shadow var(--transition);
}
.navbar.is-scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  gap: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy-950); }
.brand__tagline { font-size: 0.72rem; color: var(--accent-500); font-weight: 600; letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 9px 10px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-800);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active { background: var(--steel-100); color: var(--accent-600); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  padding: 8px;
}

@media (max-width: 1320px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-950);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--steel-100); padding: 14px 16px; }
  .nav-links a:hover, .nav-links a.is-active { background: rgba(255,255,255,0.08); color: var(--accent-400); }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn span { display: none; }
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 22, 40, 0.5);
  z-index: 450;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(115deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.045) 0 2px, transparent 2px 34px);
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%; top: -20%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(10px);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .accent-text { color: var(--accent-400); }
.hero p.lead {
  font-size: 1.12rem;
  color: var(--steel-300);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.hero__stat-label { font-size: 0.8rem; color: var(--steel-300); }

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, var(--steel-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roof-pattern {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.09) 0 10px, transparent 10px 26px),
    linear-gradient(200deg, var(--navy-700), var(--steel-700));
}
.hero__visual-card {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__visual-card strong { display: block; color: #fff; font-size: 0.95rem; }
.hero__visual-card span { font-size: 0.78rem; color: var(--steel-300); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin-inline: auto; }
}

/* ---------- Cards ---------------------------------------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(15, 31, 56, 0.06);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Why choose us cards */
.feature-card {
  padding: 30px 26px;
  text-align: left;
}
.feature-card__icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  color: var(--accent-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; }
.feature-card p { color: var(--steel-500); font-size: 0.94rem; margin-bottom: 0; }

/* Product cards */
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card__media {
  aspect-ratio: 16/10;
  position: relative;
  background: linear-gradient(135deg, var(--steel-700), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
}
.product-card__media svg { width: 64px; height: 64px; }
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.product-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.product-card__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.product-card p.desc { color: var(--steel-500); font-size: 0.92rem; margin-bottom: 0; }
.product-card__specs { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; }
.product-card__specs li { display: flex; gap: 8px; color: var(--navy-800); }
.product-card__specs li b { color: var(--steel-500); font-weight: 600; min-width: 110px; }
.product-card__brands { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  background: var(--steel-100);
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15,31,56,0.08);
}
.product-card__footer { margin-top: auto; display: flex; gap: 10px; padding-top: 6px; }

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid var(--steel-300);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy-800);
  transition: all var(--transition);
}
.filter-chip:hover { border-color: var(--accent-500); color: var(--accent-600); }
.filter-chip.is-active { background: var(--navy-950); border-color: var(--navy-950); color: #fff; }

.search-box {
  position: relative;
  min-width: 240px;
}
.search-box input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--steel-300);
  font-size: 0.9rem;
  background: #fff;
}
.search-box input:focus { border-color: var(--accent-500); }
.search-box svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--steel-500); }

.no-results { text-align: center; padding: 60px 20px; color: var(--steel-500); display: none; }
.no-results.is-visible { display: block; }

/* ---------- Brands ---------------------------------------------------------- */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.brand-badge {
  background: #fff;
  border: 1px solid rgba(15,31,56,0.08);
  border-radius: var(--radius-md);
  padding: 18px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 150px;
  text-align: center;
}
.brand-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--accent-600); }
.brand-badge span { display: block; font-size: 0.7rem; font-weight: 500; color: var(--steel-500); margin-top: 4px; }

/* ---------- Testimonials ---------------------------------------------------- */
.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card__stars { color: var(--accent-500); display: flex; gap: 3px; }
.testimonial-card p.quote { font-style: italic; color: var(--navy-800); font-size: 0.98rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--accent-500));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: var(--font-display);
}
.testimonial-card__author strong { display: block; font-size: 0.92rem; }
.testimonial-card__author span { font-size: 0.8rem; color: var(--steel-500); }

/* ---------- FAQ accordion ---------------------------------------------------- */
.accordion { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,31,56,0.08);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}
.accordion-trigger .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--steel-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.accordion-item.is-open .accordion-trigger .plus { background: var(--accent-500); color: #fff; transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.accordion-panel__inner { padding: 0 24px 22px; color: var(--steel-500); font-size: 0.95rem; }

/* ---------- Forms ------------------------------------------------------------ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--navy-800); }
.field label .req { color: var(--accent-500); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--steel-300);
  font-size: 0.94rem;
  font-family: inherit;
  background: var(--off-white);
  transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-500);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error-500); }
.field-error { color: var(--error-500); font-size: 0.8rem; display: none; }
.field.has-error .field-error { display: block; }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert--success { background: #ecfdf3; color: #067a3f; border: 1px solid #a6f0c3; }
.alert--error { background: #fef2f2; color: #b42318; border: 1px solid #fecaca; }

/* ---------- Gallery ----------------------------------------------------------- */
.gallery-grid { columns: 3 260px; column-gap: 20px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.gallery-item__img {
  width: 100%;
  height: auto;
  display: block;
  background: linear-gradient(135deg, #16304f, #0a1628);
}
.gallery-item__ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--steel-700), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.gallery-item__caption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85), transparent);
  color: #fff;
  font-size: 0.82rem;
  padding: 30px 14px 12px;
}
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }

.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,22,40,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__content {
  max-width: 720px; width: 100%;
  background: linear-gradient(135deg, var(--steel-700), var(--navy-900));
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  padding: 30px;
  text-align: center;
}
.lightbox__img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__caption {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.lightbox__close {
  position: absolute; top: -50px; right: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* ---------- CTA Banner --------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--accent-600), var(--accent-500));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 6px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 0; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner .btn--accent { background: #fff; color: var(--accent-600); box-shadow: none; }
.cta-banner .btn--outline { border-color: rgba(255,255,255,0.6); }

/* ---------- Map / contact ------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-info-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--accent-400);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--steel-500); font-size: 0.92rem; margin-bottom: 0; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer -------------------------------------------------------------- */
.footer {
  background: var(--navy-950);
  color: var(--steel-300);
  padding-top: 72px;
}
.footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer .container { grid-template-columns: 1fr; } }

.footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-400); }
.footer-brand p { color: var(--steel-300); font-size: 0.9rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--accent-500); }

.newsletter-box { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-box input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.88rem;
}
.newsletter-box input::placeholder { color: var(--steel-500); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--steel-500);
}
.footer-bottom a:hover { color: var(--accent-400); }

/* ---------- Floating action buttons ---------------------------------------------- */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
  animation: fab-pop 400ms ease;
}
.fab:hover { transform: scale(1.08); }
.fab--whatsapp { background: #25d366; }
.fab--call { background: var(--navy-800); }
.fab--top {
  width: 44px; height: 44px;
  background: var(--accent-500);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}
.fab--top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@keyframes fab-pop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ---------- Page header (inner pages) --------------------------------------------- */
.page-header {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 30px);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: var(--steel-300); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--accent-400); }
.page-header h1 { color: #fff; margin-bottom: 8px; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.page-header p { color: var(--steel-300); max-width: 620px; margin-bottom: 0; }

/* ---------- Scroll reveal animation ---------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Page loader ---------------------------------------------------------- */
#page-loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 400ms ease, visibility 400ms ease;
}
#page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 56px; height: 56px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent-500);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Misc pages (privacy/terms/404) ---------------------------------------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 2em; font-size: 1.3rem; }
.prose p, .prose li { color: var(--steel-700); }
.prose ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.prose ul li { margin-bottom: 0.4em; }

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1;
  background: linear-gradient(135deg, var(--navy-900), var(--accent-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Narrow phones: keep the header from overflowing ------------- */
@media (max-width: 560px) {
  .nav-cta .btn--accent { display: none; }   /* floating buttons cover this */
  .brand__name { font-size: 0.95rem; }
  .topbar__contacts { gap: 10px; font-size: 0.76rem; }
}

/* ---------- About page facility photo ---------------------------------- */
.about-photo {
  margin: 0 0 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-950);
}
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo figcaption {
  padding: 12px 18px;
  font-size: 0.84rem;
  color: var(--steel-300);
  background: var(--navy-950);
}


/* =========================================================================
   Logo lockup, GST line, services, catalogue, brand logos, GPS card
   ========================================================================= */

/* ---------- Header brand ------------------------------------------------ */
.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.brand__logo {
  height: 54px;
  width: auto;
  display: block;
}
.brand__gst {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steel-500);
  white-space: nowrap;
}

.footer-brand__logo { display: inline-block; margin-bottom: 18px; }
.footer-brand__logo img { width: 250px; max-width: 100%; height: auto; }

@media (max-width: 1320px) {
  .brand__logo { height: 46px; }
  .brand__gst { font-size: 0.64rem; }
}
@media (max-width: 560px) {
  .brand__logo { height: 38px; }
  .brand__gst { font-size: 0.58rem; }
  .footer-brand__logo img { width: 210px; }
}

/* ---------- Services (shed construction) -------------------------------- */
.service-card {
  padding: 30px 26px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,31,56,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
/* The card itself is always white, so its heading must stay dark even when
   the card sits inside a .section--dark block (which whitens headings). */
.service-card h3,
.section--dark .service-card h3 { font-size: 1.06rem; color: var(--navy-900); }
.service-card p { color: var(--steel-500); font-size: 0.94rem; margin-bottom: 0; }

.service-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.service-list span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #e6ecf3;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Products page: sectioned catalogue -------------------------- */
.catalogue-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}
.catalogue-nav a {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid var(--steel-300);
  font-weight: 600; font-size: 0.86rem;
  color: var(--navy-800);
  transition: all var(--transition);
}
.catalogue-nav a:hover { border-color: var(--accent-500); color: var(--accent-600); }

.cat-section { padding: 56px 0; border-top: 1px solid rgba(15,31,56,0.08); }
.cat-section:first-of-type { border-top: 0; }
.cat-section__head {
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap; margin-bottom: 8px;
}
.cat-section__head h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-bottom: 0; }
.cat-section__count {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-500);
}
.cat-section__intro { color: var(--steel-500); max-width: 760px; }

.cat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
@media (max-width: 900px) { .cat-layout { grid-template-columns: 1fr; } }

.cat-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #16304f, #0a1628);
  aspect-ratio: 16 / 10;
}
.cat-photo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.cat-items { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
@media (max-width: 560px) { .cat-items { grid-template-columns: 1fr; } }
.cat-item {
  background: #fff;
  border: 1px solid rgba(15,31,56,0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.cat-item b { display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--accent-600); margin-bottom: 4px; }
.cat-item span { font-size: 0.92rem; color: var(--navy-800); }

.cat-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ---------- Brand logo tiles ------------------------------------------- */
.brand-logo-card {
  background: #fff;
  border: 1px solid rgba(15,31,56,0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 132px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.brand-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-logo-card img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.brand-logo-card__frame {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.brand-logo-card .wordmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; color: var(--navy-800);
  letter-spacing: 0.01em;
}
.brand-logo-card small { font-size: 0.72rem; color: var(--steel-500); }

/* ---------- GPS / location card ---------------------------------------- */
.gps-card {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 18px;
}
.gps-card h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.gps-card p { color: var(--steel-300); font-size: 0.9rem; margin-bottom: 14px; }
.gps-card__coords {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 1.02rem; color: var(--accent-400); font-weight: 600;
  display: block; margin-bottom: 14px;
}
.gps-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Brand cards: accent bar on top, and chips saying what we stock from them */
.brand-logo-card {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  min-height: 176px;
}
.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
}
.brand-supplies {
  display: flex; flex-wrap: wrap; gap: 6px;
  justify-content: center;
  margin-top: 4px;
}
.brand-supplies span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--steel-100);
  border: 1px solid rgba(15,31,56,0.07);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

/* Hero: the shed-construction offer is a second line of business, so it gets
   its own line with an accent rule rather than being buried in the list. */
.lead--build {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 3px solid var(--accent-500);
  padding-left: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  max-width: 560px;
}
.lead--build svg { flex-shrink: 0; margin-top: 3px; color: var(--accent-400); }
.lead--build strong { color: var(--accent-400); font-weight: 700; }

@media (max-width: 560px) {
  .lead--build { font-size: 0.98rem; padding-left: 13px; gap: 10px; }
}

/* ---- Shed construction photo strip -------------------------------------- */
/* Sits inside the dark shed-construction section on Home and Products.      */
.shed-shots{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:34px;
}
.shed-shot{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}
.shed-shot img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:16/10;
  object-fit:cover;
}
.shed-shot figcaption{
  padding:12px 14px 14px;
  font-size:.86rem;
  line-height:1.45;
  color:#cdd6e0;
}
@media (max-width:900px){
  .shed-shots{grid-template-columns:1fr 1fr;gap:14px;}
  .shed-shots figure:last-child{grid-column:1 / -1;}
}
@media (max-width:560px){
  .shed-shots{grid-template-columns:1fr;}
  .shed-shots figure:last-child{grid-column:auto;}
}
