@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

:root {
  --blue: #2C5D7F;
  --blue-dark: #1a3a52;
  --blue-light: #3a7aa3;
  --copper: #CD741E;
  --copper-dark: #a35816;
  --copper-light: #e8913a;
  --black: #0a0c0e;
  --dark: #111418;
  --steel: #1c2128;
  --mid: #2a3140;
  --gray: #6b7280;
  --light: #e8eaed;
  --white: #f5f6f7;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.mono { font-family: var(--font-mono); }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }
#loader .logo-wrap { display: flex; align-items: center; gap: 16px; }
#loader .logo-wrap img { height: 56px; filter: brightness(1.2); }
#loader .brand-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
#loader .brand-name span { color: var(--copper); }
#loader .load-bar {
  width: 220px; height: 2px;
  background: var(--steel);
  position: relative;
  overflow: hidden;
}
#loader .load-bar::after {
  content: '';
  position: absolute; left: -100%; top: 0;
  width: 100%; height: 100%;
  background: var(--copper);
  animation: loadbar 1.4s ease forwards;
}
#loader .load-text {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: 4px;
  color: var(--gray);
  text-transform: uppercase;
}
@keyframes loadbar { to { left: 0; } }

/* ── NAVBAR ── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background .3s ease, box-shadow .3s ease;
}
#mainNav .nav-inner {
  display: flex; align-items: stretch;
  height: 70px;
  background: rgba(10,12,14,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(205,116,30,.25);
}
#mainNav.scrolled .nav-inner {
  background: rgba(10,12,14,.97);
  border-bottom-color: var(--copper);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 32px;
  border-right: 1px solid rgba(205,116,30,.2);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img { height: 50px; }
.nav-brand .brand-txt { line-height: 1.1; }
.nav-brand .brand-txt strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
#cables{
  background-color: #111418;
}
.nav-brand .brand-txt span {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  font-family: var(--font-mono);
}
strong span{
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex; align-items: center;
  list-style: none;
  margin: 0 auto; padding: 0;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 0 20px;
  height: 70px;
  line-height: 70px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,246,247,.7);
  transition: color .2s, background .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center;
  padding: 0 32px;
  border-left: 1px solid rgba(205,116,30,.2);
}
.nav-cta a {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--copper);
  padding: 10px 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s;
}
.nav-cta a:hover { background: var(--copper-light); }
.nav-toggle {
  display: none;
  background: none; border: none;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--white);
  font-size: 1.4rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assests/cover_hero.png');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,12,14,.97) 0%,
    rgba(10,12,14,.85) 45%,
    rgba(44,93,127,.4) 75%,
    rgba(10,12,14,.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 80px 5vw 100px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--copper);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: normal;
  color: var(--copper);
  -webkit-text-stroke: 0px;
}
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(205,116,30,.6);
  color: transparent;
}
.hero-sub {
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232,234,237,.65);
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.btn-primary-cc {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--copper);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary-cc:hover { background: var(--copper-light); transform: translateX(3px); color: var(--black); }
.btn-outline-cc {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(245,246,247,.3);
  padding: 16px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline-cc:hover { border-color: var(--copper); background: rgba(205,116,30,.1); color: var(--white); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.hero-stat {
  padding: 12px 40px 12px 0;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 40px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--copper);
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.hero-scroll {
  position: absolute; right: 48px; bottom: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .65rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  transform: rotate(90deg) translateX(40%);
  transform-origin: right;
}
.hero-scroll::after {
  content: '';
  width: 60px; height: 1px;
  background: var(--copper);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── SECTION COMMONS ── */
.section { padding: 100px 5vw; }
.section-dark { background: var(--dark); }
.section-black { background: var(--black); }
.section-steel { background: var(--steel); }
.section-mid { background: var(--mid); }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--copper);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title .accent { color: var(--copper); }
.section-title .blue { color: var(--blue-light); }
.section-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(232,234,237,.6);
  font-weight: 300;
  max-width: 580px;
}

/* ── CERT STRIP ── */
.cert-strip {
  background: var(--blue-dark);
  border-top: 3px solid var(--copper);
  padding: 32px 5vw;
  display: flex; align-items: center;
  gap: 12px;
  overflow-x: auto;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(205,116,30,.3);
  padding: 10px 20px;
  flex-shrink: 0;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .2s;
}
.cert-badge:hover { background: rgba(205,116,30,.15); }
.cert-badge .icon { font-size: 1.2rem; }
.cert-badge .name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.cert-badge .desc {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,234,237,.5);
}
.cert-strip-label {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  flex-shrink: 0;
  margin-right: 12px;
  white-space: nowrap;
}

/* ── DIAGONAL SPLIT ── */
.diag-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
}
.diag-split .img-side {
  position: relative;
  overflow: hidden;
}
.diag-split .img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.diag-split:hover .img-side img { transform: scale(1.04); }
.diag-split .text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw;
}
.diag-split.reverse { direction: rtl; }
.diag-split.reverse > * { direction: ltr; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  cursor: pointer;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  position: absolute; inset: 0;
}
.product-card:hover img { transform: scale(1.08); }
.product-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,12,14,.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
  transition: background .4s;
}
.product-card:hover .card-overlay {
  background: linear-gradient(180deg, rgba(44,93,127,.5) 0%, rgba(10,12,14,.97) 100%);
}
.product-card .card-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: 3px;
  color: var(--copper);
  margin-bottom: 8px;
}
.product-card .card-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.product-card .card-desc {
  font-size: .9rem;
  color: rgba(232,234,237,.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s;
  opacity: 0;
}
.product-card:hover .card-desc { max-height: 120px; opacity: 1; }
.product-card .card-arrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 16px;
  transition: gap .2s;
}
.product-card:hover .card-arrow { gap: 14px; }

/* ── FEATURE LIST ── */
.feature-list { list-style: none; padding: 0; margin: 28px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .97rem;
  line-height: 1.6;
  color: rgba(232,234,237,.75);
}
.feature-list li::before {
  content: '▸';
  color: var(--copper);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── WHY CHOOSE US GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.why-card {
  background: var(--steel);
  padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: attr(data-num);
  position: absolute; top: -10px; right: 16px;
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(44, 92, 127, 0.404);
  line-height: 1;
  pointer-events: none;
}
.why-card:hover { border-color: var(--copper); background: var(--mid); }
.why-card .why-icon {
  width: 52px; height: 52px;
  background: rgba(205,116,30,.15);
  border: 1px solid rgba(205,116,30,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: .9rem; line-height: 1.7; color: rgba(232,234,237,.55); }

/* ── SECTOR GRID ── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 3px;
}
.sector-item {
  position: relative; overflow: hidden;
  cursor: pointer;
}
.sector-item:first-child {
  grid-row: span 1;
}
.sector-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.sector-item:hover img { transform: scale(1.06); }
.sector-item .sect-label {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,12,14,.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.sector-item .sect-label h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.sector-item .sect-label p {
  font-size: .85rem;
  color: rgba(232,234,237,.6);
  max-width: 280px;
}
.sector-item .sect-label .sect-num {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--copper);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}
.marquee-track span.sep { color: rgba(0,0,0,.4); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── QUALITY CERTS ── */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.cert-card {
  background: var(--steel);
  padding: 48px 32px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, background .3s;
}
.cert-card:hover { border-color: var(--copper); background: var(--mid); }
.cert-card .cert-icon { font-size: 2.4rem; margin-bottom: 20px; }
.cert-card h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.cert-card p { font-size: .88rem; line-height: 1.6; color: rgba(232,234,237,.55); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue-dark);
  border-top: 3px solid var(--copper);
  border-bottom: 3px solid var(--copper);
  padding: 80px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band .cta-text .title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
}
.cta-band .cta-text .title span { color: var(--copper); }
.cta-band .cta-text p {
  margin-top: 12px;
  font-size: .95rem;
  color: rgba(232,234,237,.6);
  max-width: 480px;
}
.cta-band .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(205,116,30,.15);
  border: 1px solid rgba(205,116,30,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.contact-info-item .ci-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-item .ci-text span {
  font-size: .9rem;
  color: rgba(232,234,237,.55);
  line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--steel);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--copper);
}
.form-field select option { background: var(--steel); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(205,116,30,.2);
  padding: 70px 5vw 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-row img { height: 50px; }
.footer-brand .logo-row .brand-txt strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand .logo-row .brand-txt span {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
}
.footer-brand p { font-size: .88rem; line-height: 1.8; color: rgba(232,234,237,.45); max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(205,116,30,.3);
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(232,234,237,.45);
  transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--copper); }
.footer-col ul li a:hover { color: var(--copper); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem;
  color: rgba(232,234,237,.45);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-contact-item .fi { color: var(--copper); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,234,237,.3);
}
.footer-bottom .copper-line {
  width: 60px; height: 2px;
  background: var(--copper);
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: flex-end;
  padding-top: 70px;
  overflow: hidden;
}
.page-hero .ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,14,.8) 0%, rgba(10,12,14,.95) 100%);
}
.page-hero .ph-content {
  position: relative; z-index: 2;
  padding: 60px 5vw;
}
.ph-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,234,237,.4);
  margin-bottom: 20px;
}
.ph-breadcrumb a { color: var(--copper); }
.ph-breadcrumb .sep { color: rgba(232,234,237,.2); }

/* ── VISION / MISSION CARDS ── */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.vm-card {
  background: var(--steel);
  padding: 52px 40px;
  border-top: 3px solid var(--copper);
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.vm-card:hover { background: var(--mid); }
.vm-card .vm-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(205, 115, 30, 0.301);
  position: absolute; top: 10px; right: 20px;
  line-height: 1;
}
.vm-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.vm-card p { font-size: .9rem; line-height: 1.75; color: rgba(232,234,237,.55); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .diag-split { grid-template-columns: 1fr; }
  .diag-split .img-side { min-height: 340px; }
  .diag-split.reverse { direction: ltr; }
  .sector-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .sector-item:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu {
    position: fixed; inset: 70px 0 0;
    background: var(--black);
    display: flex; flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(245,246,247,.6);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color .2s;
  }
  .mobile-menu a:hover, .mobile-menu a.active { color: var(--copper); }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stat { padding: 12px 20px 12px 0; margin-right: 20px; }
  .hero-stat .num { font-size: 2rem; }
  .sector-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sector-item { min-height: 250px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cert-strip { justify-content: flex-start; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 70px 24px; }
  .hero-content { padding: 60px 24px 80px; }
  .hero-stats { flex-direction: column; border-top: none; padding-top: 24px; }
  .hero-stat { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:last-child { border-bottom: none; }
  .why-grid, .certs-grid { grid-template-columns: 1fr; }
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}
