/* ============================================================
   Page Sections
   ============================================================ */

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

/* Background image */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gradient overlay — dark at bottom, slightly lighter at top */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11, 21, 38, 0.88) 0%,
    rgba(11, 21, 38, 0.60) 60%,
    rgba(11, 21, 38, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 0 7rem;
  max-width: 740px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 158, 122, 0.18);
  border: 1px solid rgba(0, 158, 122, 0.4);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4DFFC7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1.35rem;
}
.hero-h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

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

/* Bottom stat strip */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(11, 21, 38, 0.70);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats-inner {
  display: flex;
  align-items: stretch;
}
.hstat {
  flex: 1;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hstat:last-child { border-right: none; }
.hstat-ico {
  width: 40px;
  height: 40px;
  background: rgba(0,158,122,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.hstat-n {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hstat-n span { color: var(--accent); }
.hstat-l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 0.2rem;
}

/* ── ABOUT ── */
.about {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Dot grid decorative pattern — Redington style */
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background-image: radial-gradient(circle, rgba(0, 120, 90, 0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-title {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.about-body {
  color: var(--body);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

/* Image side */
.about-visual {
  position: relative;
}

/* Duotone wrapper — grayscale image + teal-green colour overlay */
.about-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 120, 90, 0.38);
  mix-blend-mode: multiply;
  border-radius: 14px;
  pointer-events: none;
}
.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

/* ── Hexagon shapes — Redington signature element ── */
.hex-group {
  position: absolute;
  top: -1.5rem;
  right: -2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 2;
}
.hex {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
}
.hex-lg {
  width: 130px;
  height: 130px;
  background: var(--accent);
  font-size: 0.9rem;
  padding: 0 1.2rem;
}
.hex-sm {
  width: 65px;
  height: 65px;
  background: var(--accent-dark);
  font-size: 0.65rem;
  align-self: flex-start;
  margin-left: 2rem;
}
/* Floating stat cards */
.about-float {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
  border: 1px solid var(--border);
}
.about-float-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-faint);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.about-float-n  { font-size: 1.6rem; font-weight: 900; color: var(--heading); letter-spacing: -0.04em; line-height: 1; }
.about-float-l  { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.about-float-2  { bottom: auto; top: -1.5rem; left: auto; right: -1.5rem; }

/* Pillars below text */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.pillar-ico {
  width: 38px; height: 38px;
  background: var(--accent-faint);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--accent);
  margin-bottom: 0.6rem;
}
.pillar-name { font-size: 0.87rem; font-weight: 700; color: var(--heading); margin-bottom: 0.2rem; }
.pillar-desc { font-size: 0.77rem; color: var(--muted); line-height: 1.5; }

/* ── SOLUTIONS — Image Cards (Redington "Our Solutions" style) ── */
.solutions {
  padding: 7rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.div-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.div-header .section-title,
.div-header .section-desc {
  text-align: center;
}
.div-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

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

/* Image card */
.div-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 520px;
  cursor: default;
}
.div-card:hover .div-card-img { transform: scale(1.06); }

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

/* Gradient overlay — dark at bottom, visible at top */
.div-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 21, 38, 0.95) 0%,
    rgba(11, 21, 38, 0.55) 45%,
    rgba(11, 21, 38, 0.15) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}
.div-card:hover .div-card-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 21, 38, 0.97) 0%,
    rgba(11, 21, 38, 0.65) 50%,
    rgba(11, 21, 38, 0.2) 100%
  );
}

/* Coloured top tag */
.div-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.div-card:nth-child(2) .div-tag { background: var(--blue); }
.div-card:nth-child(3) .div-tag { background: #E58B00; }

.div-ico {
  width: 50px; height: 50px;
  background: rgba(0,158,122,0.2);
  border: 1px solid rgba(0,158,122,0.4);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #4DFFC7;
  margin-bottom: 0.85rem;
}
.div-card:nth-child(2) .div-ico {
  background: rgba(37,99,235,0.2);
  border-color: rgba(37,99,235,0.4);
  color: #7EAEFF;
}
.div-card:nth-child(3) .div-ico {
  background: rgba(229,139,0,0.2);
  border-color: rgba(229,139,0,0.4);
  color: #FFD080;
}

.div-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}
.div-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Services mini-list inside card */
.div-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, margin 0.45s;
}
.div-card:hover .div-services {
  max-height: 200px;
  margin-bottom: 1.5rem;
}
.div-svc {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}
.div-svc::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.42em;
}
.div-card:nth-child(2) .div-svc::before { background: #7EAEFF; }
.div-card:nth-child(3) .div-svc::before { background: #FFD080; }

.div-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: #4DFFC7;
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}
.div-card:nth-child(2) .div-link { color: #7EAEFF; }
.div-card:nth-child(3) .div-link { color: #FFD080; }
.div-link:hover { gap: 0.8rem; }

/* ── SERVICES STRIP (icon cards below divisions) ── */
.services-strip {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.services-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 120, 90, 0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.services-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-ico {
  width: 50px; height: 50px;
  background: var(--accent-faint);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--accent);
  margin-bottom: 1rem;
  transition: background 0.25s;
}
.svc-card:hover .svc-ico { background: var(--accent); color: #fff; }

.svc-title { font-size: 0.95rem; font-weight: 700; color: var(--heading); margin-bottom: 0.4rem; }
.svc-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── INDUSTRIES ── */
.industries {
  padding: 7rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.ind-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ind-card {
  padding: 1.75rem 1rem;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.ind-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.ind-ico {
  width: 52px; height: 52px;
  background: var(--accent-faint);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  margin: 0 auto 0.85rem;
  transition: all 0.25s;
}
.ind-card:hover .ind-ico { background: var(--accent); color: #fff; }
.ind-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--body);
  line-height: 1.4;
  transition: color 0.2s;
}
.ind-card:hover .ind-name { color: var(--heading); }

/* ── WHY US — image background section ── */
.why {
  position: relative;
  overflow: hidden;
}
.why-media {
  position: absolute;
  inset: 0;
}
.why-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 21, 38, 0.88);
}
.why-inner .section-desc {
  margin-bottom: 0;
}
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem 0;
}

/* Stats */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wstat {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
}
.wstat:hover {
  background: rgba(0,158,122,0.12);
  border-color: rgba(0,158,122,0.3);
}
.wstat-n {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.wstat-n .a { color: var(--accent); }
.wstat-l    { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; }

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}
.feat { display: flex; gap: 1.2rem; align-items: flex-start; }
.feat-ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(0,158,122,0.15);
  border: 1px solid rgba(0,158,122,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent);
}
.feat-title { font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.feat-desc  { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
  padding: 5.5rem 0;
  background: var(--accent);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.cta-body  { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 520px; line-height: 1.75; }
.cta-right { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; flex-shrink: 0; }
.cta-phone-label { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.09em; text-align: right; }
.cta-phone { font-size: 1rem; font-weight: 700; color: #fff; }
/* CTA buttons on accent bg */
.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 26px rgba(0,0,0,0.2);
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.5);
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 0;
  background: var(--bg-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.cinfo { display: flex; gap: 1rem; align-items: flex-start; }
.cinfo-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent-faint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: var(--accent);
}
.cinfo-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.2rem; }
.cinfo-val   { font-size: 0.93rem; color: var(--heading); font-weight: 600; }

/* Form */
.form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.75rem;
  box-shadow: var(--shadow);
}
.form-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--heading); margin-bottom: 0.4rem; }
.form-box > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-size: 0.78rem; font-weight: 600; color: var(--body);
  margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--heading);
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--faint); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,158,122,0.1);
}
.fg select { cursor: pointer; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  justify-content: center;
}
