/* =========================================================
   Vortex Steel Welders — Industrial Design System
   Durban | Local SEO + CRO Static Site
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --slate: #1E293B;
  --slate-dark: #0F172A;
  --slate-mid: #334155;
  --slate-soft: #475569;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-glow: rgba(245, 158, 11, 0.18);
  --steel: #94A3B8;
  --steel-light: #E2E8F0;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --success: #16A34A;
  --wa: #25D366;
  --wa-dark: #1DA851;
  --danger: #DC2626;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.28);
  --header-h: 78px;
  --topbar-h: 40px;
  --bottombar-h: 64px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max: 1180px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--off-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--slate-dark);
  color: var(--steel-light);
  font-size: 0.85rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a { color: var(--steel-light); }
.topbar a:hover { color: var(--amber); }
.topbar-left, .topbar-right { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(30, 41, 59, 0.97);
  backdrop-filter: blur(10px);
  color: var(--white);
  position: sticky;
  top: var(--topbar-h);
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  overflow: visible;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, var(--amber), var(--amber-dark));
  color: var(--slate-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.logo-text span {
  display: block;
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.logo-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list > li {
  position: relative;
  list-style: none;
}

.nav-list a,
.mega-trigger {
  color: var(--steel-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius);
}

.nav-list a:hover,
.nav-list a.active,
.mega-trigger:hover,
.mega-trigger.active,
.has-mega.open > .mega-trigger {
  color: var(--amber);
  background: rgba(245, 158, 11, 0.08);
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--steel-light);
  font-family: var(--font-body);
}

.mega-caret {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.has-mega.open > .mega-trigger .mega-caret {
  transform: rotate(180deg);
}

/* Mega panels */
.has-mega {
  /* Keep hover continuous from trigger into panel */
  padding-bottom: 0;
}

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 520px;
  background: var(--white);
  color: var(--slate);
  border: 1px solid var(--steel-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s;
  z-index: 1200;
}

/* Invisible hover bridge — closes the gap so the menu stays open while moving to it */
.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.mega-panel--areas {
  min-width: 640px;
  left: 0;
  transform: none;
}

.has-mega.open > .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-mega.open > .mega-panel--areas {
  transform: none;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 0.95fr;
  gap: 1rem 1.25rem;
}

.mega-inner--areas {
  grid-template-columns: repeat(3, 1fr) 0.95fr;
}

.mega-heading {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 0.65rem;
}

.mega-col a {
  display: block;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius);
  color: var(--slate);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
}

.mega-col a strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--slate-dark);
}

.mega-col a span {
  display: block;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--slate-soft);
  margin-top: 0.15rem;
}

.mega-col a:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--slate-dark);
}

.mega-cta-col {
  background: var(--off-white);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}

.mega-note {
  font-size: 0.84rem;
  color: var(--slate-soft);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.mega-link-all {
  display: inline-flex !important;
  color: var(--amber-dark) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  padding: 0 !important;
  background: transparent !important;
}

.mega-link-all:hover {
  color: var(--slate-dark) !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--amber) !important;
  color: var(--slate-dark) !important;
  font-weight: 700 !important;
  padding: 0.65rem 1.1rem !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--steel);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--amber);
  color: var(--slate-dark);
  border-color: var(--amber);
}

.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

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

.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline:hover { background: var(--slate); color: var(--white); }

.btn-wa {
  background: var(--wa);
  color: var(--white);
  border-color: var(--wa);
}

.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); }

.btn-dark {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
}

.btn-dark:hover { background: var(--slate-dark); }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Hero ---------- */
.hero,
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-areas: "content media";
  align-items: stretch;
  color: var(--white);
  background: var(--slate-dark);
  overflow: hidden;
}

.page-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.hero-media {
  grid-area: media;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  background: #070b14;
  min-height: 360px;
  padding: clamp(1rem, 2.2vw, 1.75rem);
  overflow: hidden;
}

.hero-media img {
  /* Fit inside the media slot without stretch/squash */
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, 560px);
  object-fit: contain;
  object-position: center center;
  aspect-ratio: auto; /* ignore incorrect HTML width/height hints */
  display: block;
}

.hero-overlay {
  display: none;
}

.hero-content {
  grid-area: content;
  position: relative;
  z-index: 2;
  padding: 3.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, #0f172a 0%, #0f172a 78%, rgba(15, 23, 42, 0.92) 100%);
}

.hero .container.hero-content,
.page-hero .container.hero-content {
  width: min(100% - 2rem, 560px);
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  margin-right: 1rem;
  padding-left: 0;
  padding-right: 0;
}

.brand-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.brand-hero em {
  font-style: normal;
  color: var(--amber);
  display: block;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--steel-light);
  margin-bottom: 1rem;
  max-width: 34ch;
}

.hero-lead {
  color: var(--steel);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

.page-hero .brand-hero { font-size: clamp(2rem, 4.5vw, 3.1rem); margin-bottom: 0.5rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--steel-light);
  margin-bottom: 0.75rem;
  max-width: 40ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--amber); }
.breadcrumb span { opacity: 0.6; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-dark {
  background:
    linear-gradient(160deg, var(--slate-dark) 0%, var(--slate) 55%, #1a2740 100%);
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}

.section-dark .eyebrow { color: var(--amber); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--slate-dark);
}

.section-dark h2 { color: var(--white); }

.lead {
  color: var(--slate-soft);
  font-size: 1.05rem;
}

.section-dark .lead { color: var(--steel); }

h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.55rem;
  color: var(--slate-dark);
}

.section-dark h3 { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Service cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--steel-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--slate);
}

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

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

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

.service-card-body p {
  color: var(--slate-soft);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  flex: 1;
}

.service-card .link-more {
  color: var(--amber-dark);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card .link-more:hover { color: var(--slate); }

/* Area cards */
.area-card {
  background: var(--white);
  border-left: 4px solid var(--amber);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

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

.area-card p { color: var(--slate-soft); font-size: 0.92rem; margin: 0.4rem 0 0.9rem; }
.area-card .link-more { font-weight: 700; color: var(--amber-dark); font-size: 0.88rem; }

/* ---------- Split / feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--slate);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.split-content p { color: var(--slate-soft); margin-bottom: 1rem; }

.check-list { margin: 1.25rem 0 1.75rem; }
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--slate-soft);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--amber);
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 80% 0%, 38% 62%);
}

.section-dark .check-list li { color: var(--steel-light); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--slate);
}

.gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; min-height: 100%; }

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

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

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(15,23,42,0.88));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Process / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem 1.25rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step p { color: var(--steel); font-size: 0.92rem; }

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

.review {
  background: var(--white);
  border: 1px solid var(--steel-light);
  padding: 1.5rem;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.review p {
  color: var(--slate-soft);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-dark);
}

.review-author span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--slate-soft);
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--steel-light);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.2rem 2.2rem 1.2rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--slate-dark);
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-item.active button::after { content: '–'; }

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

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 1.2rem;
}

.faq-answer p { color: var(--slate-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(15,23,42,0.92), rgba(30,41,59,0.85)),
    url('images/image18.jpeg') center/cover;
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: var(--steel-light); max-width: 560px; margin: 0 auto 1.5rem; }
.cta-band .btn-group { justify-content: center; }

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--steel-light);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--slate); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--slate-soft); margin-bottom: 0.55rem; }
.blog-card-body p { color: var(--slate-soft); font-size: 0.94rem; margin: 0.5rem 0 1rem; flex: 1; }

.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 2rem; font-size: 1.55rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p { margin-bottom: 1rem; color: var(--slate-soft); }
.prose ul { margin: 0 0 1.25rem 1.2rem; list-style: disc; }
.prose li { margin-bottom: 0.45rem; color: var(--slate-soft); }
.prose img { margin: 1.5rem 0; width: 100%; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}

.contact-info {
  background: var(--slate);
  color: var(--white);
  padding: 2rem;
}

.contact-info h3 { color: var(--white); margin-top: 1.5rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { color: var(--steel-light); }
.contact-info a:hover { color: var(--amber); }
.contact-info .btn { margin-top: 0.75rem; width: 100%; }

.map-embed {
  margin-top: 1.5rem;
  border: 0;
  width: 100%;
  min-height: 240px;
  filter: grayscale(0.2) contrast(1.05);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--steel-light);
  padding: 2rem;
}

.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--slate);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--slate);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

.form-row textarea { min-height: 130px; resize: vertical; }
.form-error { color: var(--danger); font-size: 0.82rem; margin-top: 0.3rem; display: none; }
.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea { border-color: var(--danger); }
.form-row.has-error .form-error { display: block; }
.form-success {
  display: none;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-dark);
  color: var(--steel);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.92rem;
  color: var(--steel);
}

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

.footer-bottom {
  border-top: 1px solid rgba(148,163,184,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: pulseWa 2.4s ease infinite;
}

.wa-float:hover { background: var(--wa-dark); transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

@keyframes pulseWa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ---------- Chat widget ---------- */
.chat-toggle {
  position: fixed;
  right: 1.1rem;
  bottom: 5.4rem;
  z-index: 1100;
  background: var(--slate);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.chat-toggle:hover { background: var(--amber); color: var(--slate-dark); }

.chat-panel {
  position: fixed;
  right: 1.1rem;
  bottom: 9.2rem;
  width: min(360px, calc(100vw - 1.5rem));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1101;
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: var(--slate);
  color: var(--white);
  padding: 1rem 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header strong { font-family: var(--font-display); font-size: 0.95rem; }
.chat-header span { display: block; font-size: 0.75rem; color: var(--steel); margin-top: 0.15rem; }

.chat-close {
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.chat-body { padding: 1.15rem; }
.chat-body p { font-size: 0.88rem; color: var(--slate-soft); margin-bottom: 0.9rem; }
.chat-body .form-row { margin-bottom: 0.75rem; }
.chat-body .btn { width: 100%; }

/* ---------- Mobile bottom bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: var(--slate-dark);
  border-top: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.55rem 0.75rem;
  gap: 0.55rem;
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius);
}

.mobile-bar .mb-call {
  background: var(--amber);
  color: var(--slate-dark);
}

.mobile-bar .mb-wa {
  background: var(--wa);
  color: var(--white);
}

/* ---------- Misc ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-top: 2px solid var(--amber);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--amber);
  margin-bottom: 0.2rem;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--steel);
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.keyword-cloud a,
.keyword-cloud span {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-dark .keyword-cloud a,
.section-dark .keyword-cloud span {
  background: rgba(245, 158, 11, 0.12);
  color: var(--steel-light);
}

.table-simple {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.94rem;
}

.table-simple th,
.table-simple td {
  border: 1px solid var(--steel-light);
  padding: 0.75rem 0.9rem;
  text-align: left;
}

.table-simple th {
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}

.table-simple tr:nth-child(even) td { background: var(--off-white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--slate-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.3);
    display: none;
    max-height: min(78vh, 640px);
    overflow-y: auto;
  }

  .nav-list.open { display: flex; }
  .nav-list > li { width: 100%; }
  .nav-list a,
  .mega-trigger {
    display: flex;
    width: 100%;
    padding: 0.85rem 1rem;
    justify-content: space-between;
  }
  .nav-cta { justify-content: center; margin-top: 0.35rem; }

  .mega-panel {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: rgba(15, 23, 42, 0.55);
    padding: 0.35rem 0.5rem 0.75rem;
    color: var(--steel-light);
  }

  .mega-panel--areas {
    left: auto;
    transform: none;
  }

  .has-mega.open > .mega-panel,
  .has-mega.open > .mega-panel--areas {
    display: block;
    transform: none;
  }

  .mega-inner,
  .mega-inner--areas {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .mega-heading { color: var(--amber); }
  .mega-col a,
  .mega-col a strong { color: var(--steel-light); }
  .mega-col a span { color: var(--steel); }
  .mega-col a:hover {
    background: rgba(245, 158, 11, 0.12);
    color: var(--white);
  }
  .mega-cta-col {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(148, 163, 184, 0.25);
  }
  .mega-note { color: var(--steel); }
  .mega-link-all { color: var(--amber) !important; }

  .grid-2, .grid-3, .split, .split.reverse,
  .reviews, .contact-grid, .areas-map-grid,
  .hero, .page-hero { grid-template-columns: 1fr; }

  .hero,
  .page-hero {
    grid-template-areas:
      "media"
      "content";
  }

  .hero-media {
    min-height: 0;
    padding: 1rem 1rem 0;
    background: #070b14;
  }

  .hero-media img {
    max-width: 100%;
    max-height: min(48vh, 400px);
    width: auto;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
  }

  .hero-content {
    padding: 2.5rem 0 2.75rem;
    background: var(--slate-dark);
  }

  .hero .container.hero-content,
  .page-hero .container.hero-content {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .split.reverse .split-media { order: 0; }

  .topbar-left { display: none; }

  .mobile-bar { display: flex; }
  body { padding-bottom: calc(var(--bottombar-h) + 0.5rem); }

  /* Floating widgets off on mobile — bottom bar handles call/WhatsApp */
  .wa-float,
  .chat-toggle,
  .chat-panel {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .grid-4, .steps, .trust-strip { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .hero-content { padding: 3rem 0 3.5rem; }
  .brand-hero { font-size: 2.2rem; }
  .btn { width: 100%; }
  .btn-group { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
/* SEO content blocks */
.seo-block { max-width: 820px; }
.seo-block p { color: var(--slate-soft); margin-bottom: 1rem; }
.seo-block h2 { margin-top: 2rem; font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
.seo-block h3 { margin-top: 1.35rem; font-size: 1.1rem; }
.seo-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.seo-service {
  border: 1px solid var(--steel-light);
  background: var(--white);
  padding: 1.15rem 1.2rem;
}
.seo-service h3 { margin-bottom: 0.4rem; font-size: 1.02rem; }
.seo-service p { color: var(--slate-soft); font-size: 0.9rem; margin: 0; }
.seo-service a { color: var(--amber-dark); font-weight: 700; font-size: 0.82rem; display: inline-block; margin-top: 0.65rem; }
.kw-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.5rem;
}
.kw-pill-row span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--slate);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.why-item {
  background: var(--off-white);
  border-left: 3px solid var(--amber);
  padding: 1.1rem 1rem;
}
.why-item h3 { font-size: 0.98rem; margin-bottom: 0.35rem; }
.why-item p { font-size: 0.88rem; color: var(--slate-soft); margin: 0; }

@media (max-width: 860px) {
  .seo-services, .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Areas + map strip ---------- */
.areas-map-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.areas-map-wrap h3 {
  color: var(--slate-dark);
  margin-bottom: 0.4rem;
}

.areas-map-iframe {
  min-height: 320px;
  width: 100%;
  border: 1px solid var(--steel-light);
  background: var(--steel-light);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-legal-links a {
  color: var(--steel);
}

.footer-legal-links a:hover {
  color: var(--amber);
}

/* ---------- Forms: honeypot + consent ---------- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-consent .consent-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--slate-soft);
  line-height: 1.45;
  cursor: pointer;
}

.form-consent .consent-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: auto;
}

.form-consent .consent-label a {
  color: var(--amber-dark);
  text-decoration: underline;
}

.form-consent.has-error .consent-label {
  color: var(--danger);
}

.page-hero.legal-hero,
.legal-page .page-hero {
  grid-template-columns: 1fr;
  grid-template-areas: "content";
}

.legal-page .page-hero .hero-content {
  margin-inline: auto;
  width: min(100% - 2rem, var(--max));
  max-width: 820px;
  background: var(--slate-dark);
}


.legal-page .prose h2 {
  margin-top: 2.25rem;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--slate-soft);
  margin-bottom: 1.5rem;
}

@media (max-width: 860px) {
  .areas-map-grid { grid-template-columns: 1fr; }
}

