/* ═══════════════════════════════════════════════════════════════
   KRGS DOORS — MODERN REDESIGN
   Design direction: Industrial precision. Dark authority. Red accent.
   Typography: Barlow Condensed (headings) + Barlow (body)
   Palette: Deep charcoal #111318 | KRGS Red #E8171E | Off-white #F5F4F2
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --red:       #E8171E;
  --red-dark:  #C01218;
  --dark:      #111318;
  --dark-2:    #1C1F26;
  --dark-3:    #252930;
  --mid:       #4A4E58;
  --light-mid: #8A8E98;
  --border:    #2E3138;
  --off-white: #F5F4F2;
  --white:     #FFFFFF;
  --bg-light:  #F0EEE9;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.16);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius:    4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

.container {
  max-width: 1320px;
  padding: 0 24px;
  margin: 0 auto;
}

.section-pad { padding: 96px 0; }
.bg-light { background: var(--bg-light); }
.mt-2 { margin-top: 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: rgba(255,255,255,0.6); }

.section-heading {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.section-heading.light { color: var(--white); }

.accent { color: var(--red); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,23,30,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

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

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header-top {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-contact-strip {
  display: flex;
  gap: 28px;
}

.hdr-phone, .hdr-email {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition);
}
.hdr-phone:hover, .hdr-email:hover { color: var(--white); }
.hdr-phone svg, .hdr-email svg { width: 13px; height: 13px; flex-shrink: 0; }

.header-social { display: flex; gap: 12px; }
.header-social .social-link {
  color: rgba(255,255,255,.4);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.header-social .social-link:hover { color: var(--red); }
.header-social svg { width: 15px; height: 15px; }

.header-main {
  background: rgba(17,19,24,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 70px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { height: 48px; width: auto; display: block; }
.logo-mark {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .04em;
  line-height: 1;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-doors {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav ul > li { position: relative; }
.main-nav ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 70px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.7);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.main-nav ul > li > a:hover,
.main-nav ul > li > a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* Megamenu */
.has-megamenu { position: static; }
.megamenu {
  position: fixed;
  left: 0;
  right: 0;
  top: 71px;
  background: var(--dark-2);
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.has-megamenu:hover .megamenu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.megamenu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
}
.megamenu-col {
  padding: 32px 0;
}
.megamenu-col-head {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.megamenu-col a {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  padding: 9px 0;
  transition: all var(--transition);
}
.megamenu-col a:hover { color: var(--white); padding-left: 6px; }
.megamenu-col-cta {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
.megamenu-all-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 24px !important;
  white-space: nowrap;
}
.megamenu-all-btn:hover {
  background: #c0001a;
  color: var(--white) !important;
  padding-left: 24px !important;
}

/* Simple dropdown (non-megamenu) */
.has-dropdown:not(.has-megamenu) { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark-2);
  border-top: 2px solid var(--red);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.has-dropdown:not(.has-megamenu):hover .dropdown-menu,
.has-dropdown:not(.has-megamenu):focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  padding: 10px 20px;
  transition: all var(--transition);
  white-space: nowrap;
}
.dropdown-menu li a:hover { color: var(--white); background: rgba(255,255,255,.05); }

.hdr-cta { margin-left: auto; flex-shrink: 0; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 114px; /* header height */
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,19,24,.88) 0%,
    rgba(17,19,24,.65) 55%,
    rgba(17,19,24,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.hero-text { max-width: 600px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(64px, 7vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero panel */
.hero-panel { flex-shrink: 0; }
.hero-map-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
  width: 280px;
}
.map-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.hero-map-img {
  height: 140px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-map-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.7); }

.hero-call-list { display: flex; flex-direction: column; gap: 8px; }
.call-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.call-item:last-child { border-bottom: none; }
.call-state {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--red);
  text-transform: uppercase;
}
.call-num {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.call-num:hover { color: var(--red); }

.hero-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
}

/* ── PRODUCTS INTRO ─────────────────────────────────────────── */
.products-intro-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.intro-text-col p {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.product-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}
.product-card:hover { background: var(--off-white); }
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 42px; height: 42px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.product-card-icon img { width: 22px; height: 22px; }

.product-card-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-card-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: gap var(--transition);
}
.product-card:hover .card-cta { gap: 10px; }

/* ── VISUALISER PROMO ───────────────────────────────────────── */
.visualiser-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.visualiser-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.visualiser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(17,19,24,1) 100%);
}

.visualiser-content {
  background: var(--dark-2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visualiser-content h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
}
.visualiser-content p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── CONTENT SECTIONS ───────────────────────────────────────── */
.content-sections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
}

.content-block h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}
.content-block p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.styled-list {
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.styled-list li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ── SPLIT FEATURE ──────────────────────────────────────────── */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-left {
  background: var(--dark);
  padding: 96px 80px;
}
.split-right {
  background: var(--red);
  padding: 96px 80px;
}
.split-inner .section-heading { font-size: 40px; }

.split-intro { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 32px; }
.feature-list { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* Projects slider in split-right */
.project-slides { margin-bottom: 16px; }
.project-slide-item {
  position: relative;
  overflow: hidden;
  display: none;
}
.project-slide-item.active { display: block; }
.project-slide-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.project-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-slide-nav { display: flex; gap: 8px; }
.proj-prev, .proj-next {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.proj-prev:hover, .proj-next:hover { background: rgba(255,255,255,.3); }

/* ── ENQUIRY SECTION ────────────────────────────────────────── */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.enquiry-main .section-heading { font-size: 40px; }
.enquiry-main > p {
  color: var(--mid);
  margin-bottom: 36px;
  line-height: 1.65;
}

.enquiry-form, .agent-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #DDD;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,23,30,.1);
}
.form-control::placeholder { color: #AAA; }

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

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4E58' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.agent-card {
  background: var(--dark);
  padding: 40px;
  height: 100%;
}
.agent-card h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.agent-card > p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 28px;
}
.agent-card .form-control {
  background: var(--dark-3);
  border-color: var(--border);
  color: var(--white);
}
.agent-card .form-control::placeholder { color: rgba(255,255,255,.3); }
.agent-card .form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,23,30,.15);
}
.agent-card .form-group label { color: rgba(255,255,255,.45); }

/* ── NEWS ───────────────────────────────────────────────────── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #DDD;
}

.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.news-card:hover { background: var(--off-white); }
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-img {
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.news-card-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); }

.footer-main { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social .social-link {
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-social .social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-social svg { width: 15px; height: 15px; }

.footer-heading {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-heading.mt-2 { margin-top: 32px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before {
  content: '';
  width: 4px; height: 1px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
  transition: width var(--transition), background var(--transition);
}
.footer-links li a:hover { color: var(--white); }
.footer-links li a:hover::before { width: 8px; background: var(--red); }

.footer-locations { display: flex; flex-direction: column; gap: 16px; }
.footer-location {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.footer-location:last-child { border-bottom: none; padding-bottom: 0; }
.footer-location strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .06em;
}
.footer-location span {
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-location a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-location a:hover { color: var(--red); }

.footer-certs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.footer-certs-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-certs-inner > span {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cert-logos { display: flex; gap: 12px; flex-wrap: wrap; }
.cert-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,.3);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   INNER PAGES — COMMON
   ══════════════════════════════════════════════════════════════ */

.page-banner {
  background: var(--dark);
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://krgsdoors.com.au/wp-content/uploads/2024/03/ftimg-new-compressed.webp');
  background-size: cover;
  background-position: center top;
  opacity: .35;
}
.page-banner .container { position: relative; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.page-breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--white); }
.page-breadcrumb .sep { color: rgba(255,255,255,.2); }
.page-breadcrumb .current { color: rgba(255,255,255,.7); }
.page-banner h1 {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-banner h1 span { color: var(--red); }

/* Content + Sidebar layout */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 2px; }

.sidebar-widget {
  background: var(--off-white);
  padding: 28px;
}
.sidebar-widget + .sidebar-widget { margin-top: 4px; }

.sidebar-widget-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.sidebar-nav-list { display: flex; flex-direction: column; }
.sidebar-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all var(--transition);
}
.sidebar-nav-list li a::after {
  content: '›';
  color: var(--light-mid);
  font-size: 18px;
  transition: transform var(--transition);
}
.sidebar-nav-list li a:hover { color: var(--dark); padding-left: 6px; }
.sidebar-nav-list li a:hover::after { color: var(--red); }
.sidebar-nav-list li.active a { color: var(--red); font-weight: 600; }

.sidebar-enquiry-form { display: flex; flex-direction: column; gap: 12px; }
.sidebar-enquiry-form .form-control {
  font-size: 14px;
  padding: 10px 12px;
}
.sidebar-enquiry-form .btn { width: 100%; justify-content: center; }

.sidebar-cta-card {
  background: var(--red);
  padding: 28px;
  text-align: center;
}
.sidebar-cta-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.sidebar-cta-card p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sidebar-cta-card .btn-white { width: 100%; justify-content: center; }

/* CTA Box (inner_page_cta_content) */
.cta-box {
  background: var(--dark);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
}
.cta-box-text h3 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-box-text p { font-size: 15px; color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════════════════════
   PRODUCTS LISTING PAGE
   ══════════════════════════════════════════════════════════════ */
.products-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.product-list-card {
  background: var(--white);
  overflow: hidden;
  transition: background var(--transition);
}
.product-list-card:hover { background: var(--off-white); }

.product-list-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.product-list-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-list-card:hover .product-list-img img { transform: scale(1.05); }

.product-list-body {
  padding: 28px;
}
.product-list-body h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-list-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-card-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid #DDD;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.product-card-links a:hover {
  color: var(--white);
  background: var(--dark);
  border-color: var(--dark);
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT CATEGORY LIST (aluminium-shutters, folding-doors, roller-grilles)
   ══════════════════════════════════════════════════════════════ */
.product-items-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 40px;
}

.product-item-card {
  background: var(--white);
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.product-item-card:hover { background: var(--off-white); }

.product-item-img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-item-card:hover .product-item-img img { transform: scale(1.05); }

.product-item-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.product-item-card:hover .product-item-body { border-top-color: var(--red); }

.product-item-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.product-item-body h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-item-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAILS PAGE
   ══════════════════════════════════════════════════════════════ */
.product-detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.product-detail-img {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: var(--off-white);
}
.product-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-detail-info h1 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 20px;
}
.product-detail-info p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.enquire-btn { margin-top: 24px; }

/* Tabs */
.product-tabs-wrapper {
  margin-top: 8px;
  border: 1px solid #E0E0E0;
}
.tab-nav {
  display: flex;
  background: var(--off-white);
  border-bottom: 1px solid #E0E0E0;
}
.tab-btn {
  flex: 1;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mid);
  border-right: 1px solid #E0E0E0;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.tab-btn:last-child { border-right: none; }
.tab-btn:hover { color: var(--dark); background: rgba(0,0,0,.03); }
.tab-btn.active {
  color: var(--red);
  background: var(--white);
  border-bottom-color: var(--red);
}
.tab-btn svg { width: 16px; height: 16px; }

.tab-panel { display: none; padding: 36px; }
.tab-panel.active { display: block; }

.tech-spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #E0E0E0;
  margin-bottom: 24px;
}
.tech-spec-item {
  background: var(--white);
  padding: 20px;
}
.tech-spec-item .spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 4px;
}
.tech-spec-item .spec-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.pdf-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.pdf-item {
  border: 1px solid #E0E0E0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: all var(--transition);
}
.pdf-item:hover {
  border-color: var(--red);
  background: rgba(232,23,30,.03);
}
.pdf-icon {
  width: 48px; height: 48px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
}
.pdf-item span {
  font-size: 13px;
  color: var(--mid);
}
.pdf-item .cad-link {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.08); }

/* Related products */
.related-products { margin-top: 60px; }
.related-products-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.gallery-card {
  background: var(--white);
  overflow: hidden;
  transition: background var(--transition);
}
.gallery-card:hover { background: var(--off-white); }
.gallery-card:hover .gallery-card-img img { transform: scale(1.05); }

.gallery-card-img {
  height: 260px;
  overflow: hidden;
}
.gallery-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card-body { padding: 24px; }
.gallery-card-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-card-body p { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border: 1px solid #E8E8E8;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--off-white); }
.faq-question h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
}
.faq-toggle {
  width: 32px; height: 32px;
  background: var(--off-white);
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--mid);
}
.faq-item.open .faq-toggle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  border-top: 1px solid #F0F0F0;
}
.faq-item.open .faq-answer { display: block; }
.faq-toggle svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════════
   NEWS LISTING PAGE
   ══════════════════════════════════════════════════════════════ */
.news-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
}

.contact-state-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E0E0E0;
  margin-bottom: 40px;
  overflow-x: auto;
}
.state-tab {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}
.state-tab:hover { color: var(--dark); }
.state-tab.active { color: var(--red); border-bottom-color: var(--red); }

.state-contact-panel { display: none; }
.state-contact-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.state-info h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; }
.contact-detail-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 2px;
}
.contact-detail-text span, .contact-detail-text a {
  font-size: 16px;
  color: var(--dark);
}
.contact-detail-text a:hover { color: var(--red); }

.state-map {
  background: var(--off-white);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
  color: var(--light-mid);
  font-size: 13px;
}

.contact-form-col .section-heading { font-size: 36px; }

/* ══════════════════════════════════════════════════════════════
   SERVICE & REPAIRS
   ══════════════════════════════════════════════════════════════ */
.service-sections { display: flex; flex-direction: column; gap: 0; }

.service-section {
  padding: 48px 0;
  border-bottom: 1px solid #E8E8E8;
}
.service-section:last-child { border-bottom: none; }

.service-section h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-left: 4px solid var(--red);
  padding-left: 16px;
}
.service-section p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.service-grey-box {
  background: var(--off-white);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  margin: 24px 0;
}

.service-image-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}
.service-image-row img {
  width: 100%; height: 240px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════
   MAJOR PROJECTS
   ══════════════════════════════════════════════════════════════ */
.major-project-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid #E8E8E8;
}
.major-project-item:last-child { border-bottom: none; }

.major-project-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.major-project-content h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}
.major-project-content p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-intro-inner { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .section-pad { padding: 72px 0; }
  .split-feature { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 72px 48px; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-col.enquiry-agent { max-width: 520px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .products-intro-inner { grid-template-columns: 1fr; }
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { max-width: 520px; }
  .visualiser-promo { grid-template-columns: 1fr; }
  .visualiser-img { height: 400px; }
  .content-sections-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hdr-cta { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-contact-strip { gap: 16px; }
  .hdr-email { display: none; }
  .hero-headline { font-size: 56px; }
  .hero-panel { display: none; }
  .hero-inner { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { font-size: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .split-left, .split-right { padding: 48px 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-state-tabs .state-panel.active { grid-template-columns: 1fr; }
  .product-detail-top { grid-template-columns: 1fr; }
  .major-project-item { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 44px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pdf-list { grid-template-columns: 1fr 1fr; }
  .tech-spec-list { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   BANNER SUB-TEXT
   ══════════════════════════════════════════════════════════════ */
.banner-sub {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS RANGE NAV (products.html)
   ══════════════════════════════════════════════════════════════ */
.products-range-nav { overflow-x: auto; }

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV OPEN STATE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .main-nav.mobile-open ul {
    flex-direction: column;
  }
  .main-nav.mobile-open ul > li > a {
    height: auto;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    border-bottom-color: var(--border) !important;
  }
  .main-nav.mobile-open .megamenu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    border: none;
    border-top: 1px solid var(--border);
  }
  .megamenu-inner {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .megamenu-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }
  .megamenu-col a { padding-left: 8px; }
  .megamenu-col-cta { padding: 16px 24px; }
  .has-dropdown:hover > .megamenu,
  .has-dropdown:focus-within > .megamenu {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT PAGE BODY CONTENT
   ══════════════════════════════════════════════════════════════ */
.product-body { margin-top: 48px; }
.product-body h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}
.product-body h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin: 28px 0 10px;
}
.product-body p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.product-body ul {
  margin: 10px 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-body ul li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  list-style: none;
  padding-left: 14px;
  position: relative;
}
.product-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 2px;
  background: var(--red);
}
.product-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   DRAWINGS PAGES
   ══════════════════════════════════════════════════════════════ */
.drawings-intro {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 720px;
}
.drawings-section {
  border-left: 4px solid var(--red);
  padding-left: 24px;
  margin-bottom: 40px;
}
.drawings-section-head {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.download-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  color: var(--mid);
  transition: all var(--transition);
  background: var(--white);
}
.download-chip:hover { border-color: var(--red); color: var(--red); }
.download-chip.brochure {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.download-chip.brochure:hover { background: #c0001a; }
.download-chip svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   SERVICE REPAIRS DETAIL
   ══════════════════════════════════════════════════════════════ */
.service_details img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════════
   NEWS ARTICLE
   ══════════════════════════════════════════════════════════════ */
.article-content h2, .article-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  margin: 28px 0 12px;
  color: var(--dark);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about-top-grid { grid-template-columns: 1fr !important; }
  .about-videos-grid { grid-template-columns: 1fr !important; }
  .about-values-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLLED HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .header-main {
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

/* ══════════════════════════════════════════════════════════════
   ACTIVE NAV UNDERLINE
   ══════════════════════════════════════════════════════════════ */
.main-nav ul > li > a.active {
  color: var(--white) !important;
  border-bottom-color: var(--red) !important;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT NAV ITEM
   ══════════════════════════════════════════════════════════════ */
/* Podcast nav — ensure it appears when visited */
.main-nav ul > li > a[href="about.html"],
.main-nav ul > li > a[href="podcast.html"] {
  display: flex;
}

/* ══════════════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — STATES STRIP & BOTTOM BAR
   ══════════════════════════════════════════════════════════════ */
.footer-states { background: #181818; border-top: 1px solid rgba(255,255,255,0.06); padding: 36px 0; }
.footer-states-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.footer-state { text-align: center; padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.07); }
.footer-state:last-child { border-right: none; }
.footer-state-img { width: 70px; height: 50px; margin: 0 auto 14px; background-image: url('imgi_22_maps.png'); background-size: 600% auto; background-repeat: no-repeat; background-position: 0% center; opacity: 0.5; }
.footer-state-img.vic { background-position: 20% center; }
.footer-state-img.qld { background-position: 40% center; }
.footer-state-img.sa  { background-position: 60% center; }
.footer-state-img.wa  { background-position: 80% center; }
.footer-state-img.aus { background-position: 100% center; }
.footer-state-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-state-phone { display: block; font-size: 15px; font-weight: 700; color: var(--red); margin-bottom: 5px; text-decoration: none; }
.footer-state-phone:hover { opacity: 0.8; }
.footer-state-hours { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 4px; line-height: 1.4; }
.footer-state-email { display: block; font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; word-break: break-all; }
.footer-state-email:hover { color: var(--red); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-inner > p { margin: 0; }
.footer-licence { display: flex; flex-direction: column; }
.footer-licence-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.footer-licence-num { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 600; }
.footer-years-badge { height: 54px; width: auto; opacity: 0.85; }
