/* ============================================================
   Epoxy Resin Solutions NI — style.css
   Brand: #3CC0E8 (cyan), #3A3D42 (charcoal), #FFF, #F5F5F5
   ============================================================ */

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

:root {
  --blue:   #3A3D42;
  --blue2:  #2a2d31;
  --orange: #3CC0E8;
  --orange2:#2aa8d0;
  --white:  #FFFFFF;
  --grey:   #F5F5F5;
  --grey2:  #e0e0e0;
  --text:   #1a1a1a;
  --muted:  #555;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --trans:  0.25s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { max-width: 72ch; }

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--blue); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-title {
  color: var(--blue);
  margin-bottom: 1rem;
}
.section--dark .section-title { color: var(--white); }

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 60ch;
}
.section--dark .section-intro { color: rgba(255,255,255,0.8); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
}

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

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

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span { color: var(--orange); }
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  max-width: 280px;
}

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

.nav-links a {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 4px;
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(60,192,232,0.10);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.45rem 1rem !important;
  border-radius: var(--radius) !important;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--orange2) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--blue);
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.5rem;
  border-radius: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--trans), background var(--trans);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--white); background: rgba(255,255,255,0.08); padding-left: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: url('homepage-hero.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 1.75rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,25,40,0.45) 0%, rgba(0,50,74,0.30) 50%, rgba(0,50,74,0.10) 100%);
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 70%;
  width: 70%;
  background: rgba(0, 15, 25, 0.55);
  padding: 2rem 3rem 1.75rem;
  border-radius: 8px;
  display: inline-block;
  margin-left: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(0,0,0,0.3);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--orange);
  margin-bottom: 1.2rem;
  -webkit-text-stroke: 1.5px #000000;
  paint-order: stroke fill;
  text-shadow: none;
}

.hero-sub {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ============================================================
   PAGE HERO (service / about pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #001f2e 0%, #00324A 60%, #004d73 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(232,119,34,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--trans); }
.page-hero-breadcrumb a:hover { color: var(--orange); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-sub {
  color: #ffffff;
  font-size: 1.05rem;
  max-width: 55ch;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--blue);
  flex-shrink: 0;
}

.service-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); border-color: var(--orange); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,50,74,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.service-card h3 { color: var(--blue); font-size: 1.1rem; }

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
  max-width: 100%;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--trans);
  margin-top: 0.25rem;
}
.service-card:hover .card-link { gap: 0.65rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey2);
  transition: transform var(--trans), box-shadow var(--trans);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,50,74,0.08), rgba(0,50,74,0.14));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue);
}

.why-card h3 { color: var(--blue); font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; margin: 0 auto; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--trans), border-color var(--trans);
}
.industry-tag:hover { background: rgba(232,119,34,0.2); border-color: var(--orange); }
.industry-tag svg { color: var(--orange); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #001f2e 0%, #00324A 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(232,119,34,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: #ffffff; font-size: 1.05rem; margin: 0 auto 2rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CLIENT LOGOS CAROUSEL
   ============================================================ */

.section--clients {
  padding: 1.75rem 0;
  background: var(--white);
  border-top: 1px solid var(--grey2);
  border-bottom: 1px solid var(--grey2);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.clients-track-wrap {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.clients-track:hover { animation-play-state: paused; }

.client-logo {
  height: 70px;
  width: 180px;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: opacity var(--trans);
  flex-shrink: 0;
  opacity: 0.85;
}

.client-logo:hover { opacity: 1; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #001825;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

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

.footer-brand { max-width: 320px; }
.footer-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
  display: block;
}
.footer-logo span { color: var(--orange); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--trans), padding-left var(--trans);
}
.footer-links a:hover { color: var(--orange); padding-left: 0.35rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p, .footer-trading {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   SERVICE PAGE CONTENT
   ============================================================ */
.content-section { padding: 5rem 0; }
.content-section:nth-child(even) { background: var(--grey); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.benefits-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.benefit-icon {
  width: 28px;
  height: 28px;
  background: rgba(232,119,34,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.benefit-item p { margin: 0; font-size: 0.93rem; color: var(--text); }

.uses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.use-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}
.use-item svg { color: var(--orange); flex-shrink: 0; }

.why-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item-num {
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
}
.why-item-text h4 { color: var(--blue); font-size: 0.98rem; margin-bottom: 0.2rem; }
.why-item-text p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--grey);
  border-radius: 10px;
  border: 1px solid var(--grey2);
}
.stat-box .stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-box .stat-num span { color: var(--orange); }
.stat-box p { font-size: 0.85rem; color: var(--muted); margin: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey2);
  box-shadow: var(--shadow);
}
.value-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.value-card h4 svg { color: var(--orange); }
.value-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,50,74,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-text h4 { color: var(--blue); font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-info-text p, .contact-info-text a {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.contact-info-text a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--blue); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey2);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--grey);
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,50,74,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }

.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.75rem; text-align: center; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-top: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { gap: 3rem; }
  .about-intro-grid { gap: 3rem; }
}

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

  .section { padding: 3.5rem 0; }

  .hero { min-height: 380px; padding: 2.5rem 0; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .uses-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 1rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* Page hero with photo background */
.page-hero[style*="background-image"]::before {
  background: rgba(0, 25, 40, 0.20);
}


/* Photo hero — no full overlay, dark box behind text only */
.page-hero[style*="background-image"]::before {
  background: transparent;
}
.page-hero[style*="background-image"] .page-hero-content {
  background: rgba(0, 20, 35, 0.65);
  display: inline-block;
  padding: 2rem 2.5rem;
  border-radius: 6px;
  max-width: 680px;
}

/* Video background hero */
.page-hero--video {
  position: relative;
  overflow: hidden;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero--video::before {
  background: rgba(0, 20, 35, 0.25) !important;
  z-index: 1;
}
.page-hero--video .container {
  position: relative;
  z-index: 2;
}

/* Centred quote form */
.quote-form-centred {
  max-width: 780px;
  margin: 0 auto;
}

/* Mobile nav CTA button */
.nav-mobile-cta {
  display: none;
  background: var(--orange);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 0.5rem;
  border: none;
}
@media (max-width: 768px) {
  .nav-mobile-cta { display: inline-block; }
}

/* Hero left-aligned wrapper */
.hero-left-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100% !important;
    width: 100% !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
}

/* Mobile hero h1 — white text with shadow (box is transparent on mobile) */
@media (max-width: 768px) {
  .hero h1 {
    color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 0 24px rgba(0,0,0,0.6) !important;
  }
  .hero-sub {
    text-shadow: 0 1px 6px rgba(0,0,0,0.8) !important;
  }
}

/* =============================================
   VIDEO / PHOTO HERO — full spec (added/fixed)
   ============================================= */
.page-hero--video {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero--photo {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,15,25,0.30);
  z-index: 1;
}
.page-hero--video .page-hero-content,
.page-hero--photo .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto 0 calc((100% - 1180px) / 2);
  color: #fff;
}
@media (max-width: 1220px) {
  .page-hero--video .page-hero-content,
  .page-hero--photo .page-hero-content {
    margin-left: 1.25rem;
  }
}
.page-hero--video .page-hero-content h1,
.page-hero--photo .page-hero-content h1 {
  color: #3CC0E8;
  -webkit-text-stroke: 1.5px #000000;
  paint-order: stroke fill;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.page-hero--video .page-hero-content p,
.page-hero--photo .page-hero-content p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-hero--video,
  .page-hero--photo { height: 380px; }
  .page-hero--video .page-hero-content h1,
  .page-hero--photo .page-hero-content h1 {
    font-size: 1.5rem;
    color: #fff;
    -webkit-text-stroke: 0;
    text-shadow: 1px 2px 8px rgba(0,0,0,0.7);
  }
}

/* Mobile nav Get a Quote button */
.nav-mobile-cta { display: none; }
@media (max-width: 1024px) {
  .nav-mobile-cta {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
  .nav-mobile-quote {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
}

/* mobile CTA shown at all sizes */


/* Logo left alignment on mobile */
@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .nav-logo-img { height: 44px; }
}
