/* ============================================================
   KM STEEL FRAMING — Main Stylesheet
   Design system: deep cobalt + gunmetal + brushed silver
   ============================================================ */

/* ---------- 1. CSS CUSTOM PROPERTIES ---------- */
:root {
  --blue-900: #022966;
  --blue-700: #08438E;
  --blue-500: #0955BA;
  --ink-900:  #12161C;
  --steel-800:#171C24;
  --steel-700:#34383D;
  --steel-500:#5E656F;
  --steel-400:#8E9197;
  --silver-300:#B7B9BC;
  --silver-200:#DDDEE0;
  --silver-100:#F4F5F7;
  --white:    #FFFFFF;
  --success:  #1FA463;
  --shadow-sm: 0 2px 10px rgba(18,22,28,.06);
  --shadow-md: 0 12px 34px rgba(18,22,28,.12);
  --shadow-lg: 0 24px 60px rgba(2,41,102,.20);
  --grad-blue: linear-gradient(135deg, #022966 0%, #0955BA 100%);
  --grad-steel: linear-gradient(135deg, #34383D 0%, #12161C 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1280px;
}

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

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

body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Saira Condensed', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue-500);
  vertical-align: middle;
  margin-right: 8px;
}

/* ---------- 4. LAYOUT UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark { background: var(--grad-steel); color: var(--white); }
.section--blue { background: var(--grad-blue); color: var(--white); }
.section--light { background: var(--silver-100); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(9,85,186,.35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(9,85,186,.5);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
}
.btn-outline:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--grad-steel);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- 6. HEADER / NAV ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#site-header.transparent {
  background: transparent;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(18,22,28,.1);
}

#site-header.page-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(18,22,28,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a,
.nav-links .nav-dropdown-toggle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.transparent .nav-links a,
.transparent .nav-links .nav-dropdown-toggle {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--blue-500);
  transition: left 0.3s ease, right 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  left: 0.85rem;
  right: 0.85rem;
}

.nav-links a:hover,
.nav-links .nav-dropdown-toggle:hover,
.nav-links a.active {
  color: var(--blue-500);
}

.transparent .nav-links a:hover,
.transparent .nav-links .nav-dropdown-toggle:hover {
  color: var(--silver-200);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--ink-900);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle .chevron {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.nav-dropdown:hover .chevron,
.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(18,22,28,.18);
  padding: 1rem;
  min-width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border: 1px solid var(--silver-200);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-900);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--silver-100);
  color: var(--blue-700);
}

.dropdown-menu a i {
  color: var(--blue-700);
  width: 16px;
  flex-shrink: 0;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
  transition: var(--transition);
}

.transparent .nav-phone {
  color: var(--white);
}

.nav-phone:hover { color: var(--blue-500); }

.nav-phone i {
  color: var(--blue-500);
  font-size: 0.95rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: var(--transition);
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: var(--transition);
}

.transparent .hamburger span { background: var(--white); }
.scrolled .hamburger span { background: var(--ink-900); }
.page-header .hamburger span { background: var(--ink-900); }

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

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(18,22,28,.25);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,22,28,.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--silver-200);
}

.mobile-menu-header img { height: 44px; }

.mobile-menu-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink-900);
  transition: var(--transition);
}

.mobile-menu-close:hover { background: var(--silver-200); }

.mobile-nav {
  padding: 1.5rem;
  flex: 1;
}

.mobile-nav a,
.mobile-nav-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  transition: var(--transition);
  width: 100%;
  text-align: left;
}

.mobile-nav a:hover,
.mobile-nav-accordion-toggle:hover {
  background: var(--silver-100);
  color: var(--blue-700);
}

.mobile-nav a.active { color: var(--blue-700); }

.mobile-accordion-panel {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-accordion-panel.open { display: block; }

.mobile-accordion-panel a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.75rem;
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--silver-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--silver-100);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900);
}

.mobile-phone-link i { color: var(--blue-700); font-size: 1.1rem; }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }

/* ---------- 7. HERO (HOMEPAGE SLIDER) ---------- */
.hero-slider {
  height: 100svh;
  min-height: 600px;
  position: relative;
}

.hero-slider .swiper { height: 100%; }

.hero-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,41,102,0.75) 0%,
    rgba(18,22,28,0.60) 60%,
    rgba(18,22,28,0.30) 100%
  );
}

/* Steel frame motif lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.08) 30%, rgba(255,255,255,.12) 60%, transparent 100%);
}

.hero-lines::before { left: 20%; }
.hero-lines::after { left: 80%; }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(9,85,186,.3);
  border: 1px solid rgba(9,85,186,.5);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-200);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--blue-500); }

.hero-text h1 {
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 1.25rem;
}

.hero-text h1 span { color: #5BA3F5; }

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,.6);
  border-radius: 3px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% { top: 5px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* Swiper custom */
.hero-slider .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--white);
  width: 28px;
  border-radius: 4px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

/* ---------- 8. TRUST STRIP ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--silver-200);
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-700);
  white-space: nowrap;
}

.trust-item i {
  color: var(--blue-700);
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--silver-200);
}

/* ---------- 9. STATS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--steel-800);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-blue);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span { color: var(--blue-500); }

.stat-label {
  font-size: 0.875rem;
  color: var(--silver-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ---------- 10. SECTION HEADERS ---------- */
.section-header {
  margin-bottom: 3rem;
}

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

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  font-size: 1.05rem;
  color: var(--steel-500);
  max-width: 620px;
  line-height: 1.7;
}

.section-header.centered p {
  margin: 0 auto;
}

/* ---------- 11. SERVICE CARDS ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.08); }

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(2,41,102,.08), rgba(9,85,186,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--blue-700);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--ink-900);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--steel-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-700);
  transition: var(--transition);
}

.service-card .btn-link:hover {
  color: var(--blue-500);
  gap: 0.7rem;
}

/* ---------- 12. BENEFITS / FEATURES GRID ---------- */
.benefit-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--silver-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: rgba(9,85,186,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(9,85,186,.3);
}

.benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--ink-900);
  font-family: 'Inter', sans-serif;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--steel-500);
  line-height: 1.65;
}

/* Dark variant for dark sections */
.section--dark .benefit-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}

.section--dark .benefit-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(9,85,186,.4);
}

.section--dark .benefit-card h4 { color: var(--white); }
.section--dark .benefit-card p { color: var(--silver-400); }

/* ---------- 13. PROCESS TIMELINE ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--silver-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(9,85,186,.35);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: 'Inter', sans-serif;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--steel-500);
  line-height: 1.6;
}

/* ---------- 14. SECTOR TILES ---------- */
.sector-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  group: true;
}

.sector-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-tile:hover img { transform: scale(1.06); }

.sector-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,41,102,.85) 0%, rgba(18,22,28,.2) 60%, transparent 100%);
}

.sector-tile-content {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  width: 100%;
}

.sector-tile-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.sector-tile-content p {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.sector-tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}

.sector-tile:hover .sector-tile-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 16. FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--silver-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(9,85,186,.25); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  gap: 1rem;
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--blue-700); }
.faq-item.open .faq-question { color: var(--blue-700); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--blue-700);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--steel-500);
  line-height: 1.7;
}

/* ---------- 17. CTA BAND ---------- */
.cta-band {
  background: var(--grad-blue);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ---------- 18. PAGE HERO BANNER ---------- */
.page-hero {
  padding: 7rem 0 4rem;
  background: var(--grad-steel);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,41,102,.5) 0%, rgba(18,22,28,.8) 100%);
}

.page-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-lines::before,
.page-hero-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.06) 40%, rgba(255,255,255,.06) 60%, transparent 100%);
}

.page-hero-lines::before { right: 25%; }
.page-hero-lines::after { right: 60%; }

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; }

.page-hero h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 620px;
  line-height: 1.7;
}

/* ---------- 19. INTRO SPLIT ---------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.intro-split.reverse { direction: rtl; }
.intro-split.reverse > * { direction: ltr; }

.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.intro-image-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}

.intro-image-badge i { color: var(--blue-700); }

.intro-text h2 { margin-bottom: 1rem; }

.intro-text p {
  font-size: 1.025rem;
  color: var(--steel-500);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.intro-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--steel-700);
}

.intro-check-list li i {
  color: var(--success);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- 20. GALLERY / PROJECT GRID ---------- */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--steel-700);
  border: 2px solid var(--silver-200);
  transition: var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,41,102,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

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

.gallery-item-caption {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(18,22,28,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ---------- 21. CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-200);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(9,85,186,.12);
}

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

.form-group.full { grid-column: 1 / -1; }

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

.form-success,
.form-error {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  margin-top: 1rem;
}

.form-success { background: rgba(31,164,99,.1); color: var(--success); border: 1px solid rgba(31,164,99,.3); }
.form-error { background: rgba(220,50,47,.08); color: #DC322F; border: 1px solid rgba(220,50,47,.2); }

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

.contact-info-card {
  background: var(--grad-steel);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(9,85,186,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--silver-200);
}

.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--silver-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.contact-info-text a,
.contact-info-text span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-info-text a:hover { color: var(--silver-300); }

/* ---------- 22. AREAS CHIPS ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel-700);
  transition: var(--transition);
  cursor: default;
}

.area-chip:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
  background: rgba(9,85,186,.05);
}

.area-chip i { font-size: 0.75rem; color: var(--blue-700); }

.area-region {
  margin-bottom: 2.5rem;
}

.area-region h3 {
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.area-region h3 i { color: var(--blue-700); }

/* ---------- 23. COMPARISON TABLE ---------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-200);
}

.compare-table th {
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-table th:first-child { background: var(--silver-100); color: var(--steel-700); }
.compare-table th.col-steel { background: var(--grad-blue); color: var(--white); }
.compare-table th.col-timber { background: var(--steel-700); color: var(--white); }

.compare-table td {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--silver-200);
  font-size: 0.9rem;
}

.compare-table tr:nth-child(even) td { background: var(--silver-100); }
.compare-table td:first-child { font-weight: 600; color: var(--steel-700); }
.compare-table td.yes { color: var(--success); font-weight: 700; }
.compare-table td.no { color: #DC322F; font-weight: 700; }

/* ---------- 24. FOOTER ---------- */
#site-footer {
  background: var(--grad-steel);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-steel-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-steel-lines::before,
.footer-steel-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.04) 50%, transparent 100%);
}

.footer-steel-lines::before { left: 25%; }
.footer-steel-lines::after { right: 30%; }

.footer-main {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-300);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--silver-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--white);
  gap: 0.65rem;
}

.footer-links a i { font-size: 0.65rem; color: var(--blue-500); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(9,85,186,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--silver-300);
}

.footer-contact-text {
  font-size: 0.875rem;
  color: var(--silver-400);
}

.footer-contact-text a {
  color: var(--silver-300);
  transition: var(--transition);
}

.footer-contact-text a:hover { color: var(--white); }

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--silver-500, #6B7280);
}

/* ---------- 25. FLOATING BUTTONS ---------- */
.float-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(9,85,186,.5);
  transition: var(--transition);
  text-decoration: none;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(9,85,186,.6);
}

.float-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(9,85,186,.4);
  animation: callRing 2s ease infinite;
}

@keyframes callRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem; right: 1.5rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--silver-200);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--steel-700);
  font-size: 0.9rem;
  z-index: 900;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top:hover {
  background: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
}

/* ---------- 26. MAP EMBED ---------- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--silver-200);
}

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

/* ---------- 27. CHECKBOXES (QUOTE FORM) ---------- */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--steel-700);
  cursor: pointer;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--silver-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.checkbox-label:hover { border-color: var(--blue-700); background: rgba(9,85,186,.04); }
.checkbox-label input[type="checkbox"] { accent-color: var(--blue-700); width: 16px; height: 16px; }

/* ---------- 28. RELATED SERVICES ---------- */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-service-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--silver-200);
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.related-service-card:hover {
  border-color: var(--blue-700);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-service-card i {
  font-size: 2rem;
  color: var(--blue-700);
  margin-bottom: 0.75rem;
  display: block;
}

.related-service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
  font-family: 'Inter', sans-serif;
}

/* ---------- 29. ANIMATIONS (AOS-LIKE) ---------- */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-in"] { transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.92); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ---------- 30. RESPONSIVE ---------- */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-split { gap: 2.5rem; }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .float-call { display: flex; }
  .back-to-top { display: flex; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 2px; }
  .stats-grid .stat-card {
    padding: 1.75rem 1rem;
    text-align: center;
  }
  .stats-grid .stat-number { font-size: 2.4rem; }
  .stats-grid .stat-label { font-size: 0.8rem; letter-spacing: 0.06em; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-split,
  .intro-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .trust-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 0.75rem 1rem; font-size: 0.82rem; }
  .related-services { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
}

/* ---------- 31. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-aos] { opacity: 1; transform: none; }
}

/* ---------- 32. UTILITIES ---------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }

.text-blue { color: var(--blue-700); }
.text-steel { color: var(--steel-500); }
.text-white { color: var(--white); }
.text-muted { color: var(--steel-400); }

.fw-700 { font-weight: 700; }
.uppercase { text-transform: uppercase; }

.divider {
  height: 1px;
  background: var(--silver-200);
  margin: 2rem 0;
}

/* Victoria map placeholder */
.vic-map-placeholder {
  background: var(--silver-100);
  border: 2px dashed var(--silver-200);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--steel-500);
}

.vic-map-placeholder i { font-size: 3rem; color: var(--blue-700); margin-bottom: 1rem; display: block; }

/* Image placeholder fallback */
.img-placeholder {
  background: linear-gradient(135deg, var(--silver-200) 0%, var(--silver-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-400);
  font-size: 2rem;
  min-height: 200px;
}


/* ============================================================
   KM HEADER — New premium design (replaces old #site-header)
   ============================================================ */

/* ── Accent stripe ── */
.km-header__stripe {
  height: 3px;
  background: linear-gradient(90deg, #022966 0%, #0955BA 50%, #08438E 100%);
}

/* ── Wrapper ── */
.km-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.km-header--transparent,
.km-header--solid {
  background: #fff;
  box-shadow: 0 2px 16px rgba(18,22,28,.08), 0 1px 0 rgba(18,22,28,.04);
}

/* ── Inner flex row ── */
.km-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 1rem;
}

/* ── Logo ── */
.km-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.km-logo__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.km-logo__mark img {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.km-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.km-logo__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
}

.km-logo__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-top: 2px;
}

/* ── Desktop nav ── */
.km-nav { display: flex; }

.km-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}

.km-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-700);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.km-nav__link:hover,
.km-nav__link--active {
  color: var(--blue-700);
  background: rgba(9,85,186,.06);
}

.km-nav__chevron {
  transition: transform 0.3s ease;
}

.km-nav__item--mega.km-nav__item--open .km-nav__chevron {
  transform: rotate(180deg);
}

/* ── Mega menu ── */
.km-nav__item--mega {
  position: static;
}

.km-mega {
  position: fixed;
  top: 85px;    /* below header accent + inner */
  left: 0; right: 0;
  background: #0a0e17;
  border-top: 1px solid rgba(9,85,186,.35);
  border-bottom: 3px solid rgba(9,85,186,.5);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 999;
}

.km-nav__item--mega.km-nav__item--open .km-mega,
.km-nav__item--mega:hover .km-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.km-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.km-mega__col {
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid rgba(255,255,255,.06);
}

.km-mega__col:first-child { padding-left: 0; }

.km-mega__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5BA3F5;
  margin-bottom: 0.75rem;
}

.km-mega__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 0.1rem;
}

.km-mega__item:hover {
  background: rgba(255,255,255,.06);
}

.km-mega__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(9,85,186,.25);
  border: 1px solid rgba(9,85,186,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #5BA3F5;
  flex-shrink: 0;
}

.km-mega__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.km-mega__copy strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.km-mega__copy span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.45);
}

/* CTA panel */
.km-mega__cta {
  padding: 2rem 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.km-mega__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5BA3F5;
  background: rgba(9,85,186,.2);
  border: 1px solid rgba(9,85,186,.4);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  width: fit-content;
}

.km-mega__cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.km-mega__cta-body {
  font-size: 0.83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.km-mega__cta-btn {
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  min-height: 44px;
  width: 100%;
  justify-content: center;
}

.km-mega__cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}

.km-mega__cta-phone i { color: #5BA3F5; }
.km-mega__cta-phone a { color: #fff; }
.km-mega__cta-phone a:hover { color: #5BA3F5; }

/* Quick-links bar */
.km-mega__bar {
  border-top: 1px solid rgba(255,255,255,.06);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  display: flex;
  gap: 2rem;
}

.km-mega__bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  transition: color 0.2s;
}

.km-mega__bar a i { font-size: 0.75rem; color: #5BA3F5; }
.km-mega__bar a:hover { color: #fff; }

/* ── Phone pill ── */
.km-phone-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  border-radius: 100px;
  background: rgba(9,85,186,.06);
  border: 1px solid rgba(9,85,186,.15);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}

.km-phone-pill:hover {
  background: rgba(9,85,186,.12);
  border-color: rgba(9,85,186,.35);
}

.km-phone-pill__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  flex-shrink: 0;
}

.km-phone-pill__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.km-phone-pill__label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin-bottom: 2px;
}

.km-phone-pill__num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-900);
}

/* ── Header CTA ── */
.km-header__cta {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  min-height: 42px;
}

/* ── Header right actions ── */
.km-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Hamburger ── */
.km-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(9,85,186,.06);
  border: 1px solid rgba(9,85,186,.15);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s;
}

.km-hamburger:hover {
  background: rgba(9,85,186,.12);
}

.km-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}

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

/* ── Mobile overlay ── */
.km-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,23,.7);
  backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.km-mobile-overlay--open { opacity: 1; visibility: visible; }

/* ── Mobile drawer ── */
.km-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 100vw);
  height: 100dvh;
  background: #0a0e17;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
  border-left: 1px solid rgba(9,85,186,.25);
}

.km-mobile-menu--open { transform: translateX(0); }

.km-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.km-mobile-menu__head img { height: 40px; border-radius: 6px; }

.km-mobile-menu__close {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.km-mobile-menu__close:hover {
  background: rgba(220,50,47,.2);
  color: #fff;
  border-color: rgba(220,50,47,.4);
}

/* Mobile nav links */
.km-mobile-nav {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
}

.km-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.km-mobile-nav__link i:first-child {
  width: 20px;
  color: #5BA3F5;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.km-mobile-nav__link:hover,
.km-nav__link--active {
  background: rgba(9,85,186,.2);
  color: #fff;
}

/* Mobile accordion */
.km-mobile-accordion__toggle {
  justify-content: space-between;
}

.km-mobile-accordion__chevron {
  color: rgba(255,255,255,.4) !important;
  font-size: 0.75rem !important;
  transition: transform 0.3s !important;
  width: auto !important;
}

.km-mobile-accordion--open .km-mobile-accordion__chevron {
  transform: rotate(180deg);
}

.km-mobile-accordion__body {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  border-left: 2px solid rgba(9,85,186,.4);
  margin: 0 0 0.25rem 1.5rem;
}

.km-mobile-accordion--open .km-mobile-accordion__body {
  display: flex;
}

.km-mobile-accordion__body a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.km-mobile-accordion__body a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* Mobile footer */
.km-mobile-menu__foot {
  padding: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.km-mobile-call {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: rgba(9,85,186,.18);
  border: 1px solid rgba(9,85,186,.35);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s;
}

.km-mobile-call:hover { background: rgba(9,85,186,.35); }

.km-mobile-call__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.km-mobile-call em {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.km-mobile-call strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* body offset for fixed header */
body { padding-top: 85px; }


/* ============================================================
   KM FOOTER — New premium design (replaces old #site-footer)
   ============================================================ */

.km-footer {
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
}

/* 3px gradient accent bar */
.km-footer__accent {
  height: 3px;
  background: linear-gradient(90deg, #022966 0%, #0955BA 40%, #08438E 70%, #022966 100%);
  background-size: 200% 100%;
  animation: footerAccent 6s ease infinite;
}

@keyframes footerAccent {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}

/* Main dark body */
.km-footer__body {
  background: #0a0e17;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
}

/* Subtle grid pattern overlay */
.km-footer__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9,85,186,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,85,186,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* 4-column grid */
.km-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  position: relative;
}

/* Brand column */
.km-footer__col--brand {}

.km-footer__logo {
  display: block;
  margin-bottom: 1.25rem;
}

.km-footer__logo img {
  height: 52px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.1);
}

.km-footer__col--brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

/* Contact items */
.km-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.km-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.km-footer__contact-item:hover .km-footer__contact-text strong {
  color: #5BA3F5;
}

.km-footer__contact-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(9,85,186,.25);
  border: 1px solid rgba(9,85,186,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #5BA3F5;
  flex-shrink: 0;
}

.km-footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.km-footer__contact-text em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.km-footer__contact-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color 0.2s;
}

/* Social icons */
.km-footer__socials {
  display: flex;
  gap: 0.5rem;
}

.km-footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.km-footer__social:hover {
  background: var(--blue-700, #08438E);
  border-color: var(--blue-700, #08438E);
  color: #fff;
}

/* Column heading */
.km-footer__col-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.1rem;
}

/* Link list */
.km-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
  margin: 0; padding: 0;
}

.km-footer__links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  padding: 0.2rem 0;
}

.km-footer__links a i {
  font-size: 0.6rem;
  color: rgba(9,85,186,.8);
  flex-shrink: 0;
}

.km-footer__links a:hover {
  color: #fff;
  gap: 0.75rem;
}

/* CTA column */
.km-footer__col--cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.km-footer__cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.8rem 1.25rem;
  min-height: 46px;
  margin-bottom: 0.65rem;
}

.km-footer__call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  margin-bottom: 1.25rem;
}

.km-footer__call-btn i { color: #5BA3F5; }

.km-footer__call-btn:hover {
  background: rgba(9,85,186,.25);
  color: #fff;
  border-color: rgba(9,85,186,.5);
}

/* Trust badges */
.km-footer__badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.km-footer__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
}

.km-footer__badge i {
  font-size: 0.9rem;
  color: rgba(9,85,186,.7);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* Bottom bar */
.km-footer__bottom {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1rem 0;
}

.km-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}

.km-footer__bottom-mid {
  color: rgba(255,255,255,.2);
}

.km-footer__bottom-inner a {
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.km-footer__bottom-inner a:hover {
  color: #fff;
}

/* ============================================================
   FLOATING CALL + BACK TO TOP (new KM classes)
   ============================================================ */
.km-float-call {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-blue, linear-gradient(135deg, #022966 0%, #0955BA 100%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(9,85,186,.55);
  z-index: 900;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseCall 3s ease infinite;
}

.km-float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(9,85,186,.75);
}

@keyframes pulseCall {
  0%, 100% { box-shadow: 0 6px 24px rgba(9,85,186,.55); }
  50%       { box-shadow: 0 6px 32px rgba(9,85,186,.85), 0 0 0 10px rgba(9,85,186,.08); }
}

.km-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(10,14,23,.85);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  z-index: 901;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(8px);
}

.km-back-top:hover {
  background: var(--blue-700, #08438E);
  border-color: transparent;
  transform: translateY(-3px);
  color: #fff;
}

/* Hide phone pill on mobile, show hamburger */
@media (max-width: 1023px) {
  .km-nav        { display: none; }
  .km-phone-pill { display: none; }
  .km-header__cta { display: none; }
  .km-hamburger  { display: flex; }
}

@media (max-width: 767px) {
  .km-float-call { bottom: 5.5rem; right: 1rem; }
  .km-back-top   { bottom: 1rem;   right: 1rem; }
}

/* Footer responsive */
@media (max-width: 1024px) {
  .km-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .km-mega__grid {
    grid-template-columns: 1fr 1fr;
  }
  .km-mega__cta { display: none; }
}

@media (max-width: 640px) {
  .km-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .km-footer__col--brand p { max-width: 100%; }
  .km-footer__bottom-inner { flex-direction: column; text-align: center; }
  .km-footer__bottom-mid { display: none; }
}

/* ============================================================
   ONE-PAGE ADDITIONS — installer positioning
   Notice box · Partner cards · Gallery captions · Simple footer
   ============================================================ */

/* ---------- NOTICE BOX ("we don't supply") ---------- */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  margin: 0 0 2rem;
  border-radius: var(--radius-md);
  background: rgba(9, 85, 186, .06);
  border: 1px solid rgba(9, 85, 186, .18);
  border-left: 4px solid var(--blue-500);
}

.notice-box > i {
  color: var(--blue-500);
  font-size: 1.15rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.notice-box strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink-900);
  margin-bottom: 0.15rem;
}

.notice-box span {
  display: block;
  font-size: 0.92rem;
  color: var(--steel-500);
  line-height: 1.6;
}

/* ---------- PARTNER CARDS (builders / manufacturers) ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: var(--transition);
}

.partner-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(9, 85, 186, .5);
  transform: translateY(-4px);
}

.partner-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-blue);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.partner-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.partner-card > p {
  color: var(--silver-300);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.partner-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.partner-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  color: var(--silver-200);
}

.partner-card__list li i {
  color: #5BA3F5;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.partner-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #5BA3F5;
  transition: var(--transition);
}

.partner-card .btn-link:hover {
  color: var(--white);
  gap: 0.8rem;
}

/* ---------- GALLERY CAPTION (two-line) ---------- */
.gallery-item-caption strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.gallery-item-caption span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver-300);
  margin-top: 2px;
}

/* ---------- SIMPLIFIED FOOTER GRID ---------- */
.km-footer__grid--simple {
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partner-card { padding: 2rem; }
}

@media (max-width: 1024px) {
  .km-footer__grid--simple { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .km-footer__grid--simple { grid-template-columns: 1fr; }
  .notice-box { padding: 1rem; }
}

/* Keep the closed mobile drawer out of the tab order (it is only translated off-screen) */
.km-mobile-menu {
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0.4s;
}

.km-mobile-menu--open {
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), visibility 0s linear 0s;
}

/* Hero arrows sit over the copy on small screens — swipe + pagination cover it there */
@media (max-width: 767px) {
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev { display: none; }
}

/* Landscape source photos left the intro image short beside the text column.
   object-fit: cover crops to fill, so give it a taller box on two-column layouts. */
@media (min-width: 769px) {
  .intro-image-wrap img { min-height: 560px; }
}

/* Single column: show the whole photo rather than a cropped middle band */
@media (max-width: 768px) {
  .intro-image-wrap img { min-height: 0; }
}
