/* ============================================================
   GLORIFEX INTERNATIONAL LLC — styles.css
   Colors: Primary #d44916 | Secondary #345c72 | Text #2a2e30
   ============================================================ */

:root {
  --primary: #d44916;
  --secondary: #345c72;
  --text: #2a2e30;
  --light-bg: #f5f3ef;
  --white: #ffffff;
  --dark: #1a1d1f;
  --muted: #7a8088;
  --dark-muted: #555a5f;
  --border: rgba(52, 92, 114, 0.15);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; width: 100%; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 60px; height: 60px;
  border: 3px solid rgba(212, 73, 22, 0.3);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(26, 29, 31, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
  margin-top: 3px;
}
.nav-logo-img {
  height: 90px; width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none; font-size: 0.875rem;
  font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem; border-radius: 3px;
  font-size: 0.8rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #b83d12 !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; top: 72px; inset-inline: 0;
  background: rgba(26, 29, 31, 0.98); backdrop-filter: blur(12px);
  padding: 2rem 5%; z-index: 999; flex-direction: column; gap: 1.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255, 255, 255, 0.85); text-decoration: none;
  font-size: 1.1rem; font-weight: 500; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 1rem;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }

/* ── HERO ── */
#home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26, 29, 31, 0.88) 0%,
    rgba(26, 29, 31, 0.70) 50%,
    rgba(52, 92, 114, 0.40) 100%
  );
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5% 5%; max-width: 900px; margin-left: 5%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--primary); }
.hero-eyebrow-text {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary); font-weight: 600;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 1.8rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-heading em { font-style: normal; color: var(--primary); }
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8; max-width: 600px;
  margin-bottom: 2.8rem;
  opacity: 0; transform: translateY(25px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s 0.9s forwards;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(212, 73, 22, 0.35);
}
.btn-primary:hover {
  background: #b83d12; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 73, 22, 0.45);
}
.btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.45); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 3px;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.hero-trust {
  margin-top: 3.5rem;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.7s 1.1s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeUp 0.7s 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── SHARED SECTION ── */
section { position: relative; }
.section-pad { padding: 50px 5%; }
.container { max-width: 1200px; margin: 0 auto; }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--text);
  line-height: 1.15; margin-bottom: 1.4rem;
}
.section-heading.light { color: var(--white); }
.section-intro {
  font-size: 1.0rem; color: var(--dark-muted);
  line-height: 1.8; max-width: 640px; margin-bottom: 3.5rem;
}
.section-intro.light { color: rgba(255, 255, 255, 0.65); }

/* ── SECTORS STRIP ── */
.sectors-strip {
  background: var(--white);
  padding: 22px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.sectors-track {
  display: flex; gap: 3rem; align-items: center;
  animation: scrollTrack 28s linear infinite;
  width: max-content;
}
.sectors-strip:hover .sectors-track { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.sector-tag {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); white-space: nowrap;
}
.sector-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* ── ABOUT ── */
#about { background: var(--light-bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}

/* About image */
.about-visual { position: relative; }
.about-img-wrap {
  position: relative; border-radius: 8px; overflow: visible;
}
.about-img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 8px 30px rgba(212, 73, 22, 0.4);
  max-width: 260px;
}
.badge-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  fill: rgba(255, 255, 255, 0.9);
}
.badge-text { display: flex; flex-direction: column; gap: 0.15rem; }
.badge-text strong {
  font-size: 0.92rem; font-weight: 700; color: var(--white);
  font-family: 'Playfair Display', serif;
}
.badge-text span {
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.about-text .section-heading { margin-bottom: 1.2rem; }
.about-body { font-size: 1rem; color: #4a5057; line-height: 1.85; margin-bottom: 1.3rem; text-align: justify;}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.pillar {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--primary);
  background: var(--white); border-radius: 0 4px 4px 0;
}
.pillar-title {
  font-weight: 700; font-size: 0.88rem; color: var(--text);
  letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.pillar-desc { font-size: 0.82rem; color: var(--dark-muted); line-height: 1.5; }

/* ── GLOBAL NETWORK ── */
#network {
  position: relative;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 100px 5%;
  overflow: hidden;
}
.network-img-bg {
  position: absolute; inset: 0;
  background-image: url('./images/about-bg.jpg');
  background-size: cover; background-position: center;
}
.network-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(52, 92, 114, 0.93) 0%, rgba(26, 45, 60, 0.90) 100%);
}
.network-inner-wrap { position: relative; z-index: 2; }
.network-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.network-text .section-heading { margin-bottom: 1.2rem; }
.network-body { font-size: 1rem; color: rgba(255, 255, 255, 0.72); line-height: 1.85; text-align: justify; }
.network-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px; padding: 1.6rem 1.4rem;
  text-align: center; transition: background 0.25s, transform 0.25s;
}
.stat-card:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.stat-label {
  font-size: 0.75rem; color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: 0.6rem;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3;
}

/* ── PRODUCTS ── */
#products { background: var(--white); }
.products-intro { text-align: center; margin-bottom: 3.5rem; }
.products-intro .section-heading { margin-bottom: 0.8rem; }
.products-intro .section-intro { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

/* Product card — image-first layout */
.product-card {
  position: relative; overflow: hidden;
  border-radius: 8px; border: 1px solid var(--border);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  background: var(--white);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(52, 92, 114, 0.15);
  border-color: var(--primary);
}
.product-img-wrap {
  position: relative; height: 200px; overflow: hidden;
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img { transform: scale(1.07); }
.product-img-tag {
  position: absolute; bottom: 12px; left: 14px;
  background: var(--primary);
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 3px;
}
.product-body { padding: 1.6rem 1.8rem 1.8rem; }
.product-tags {
  font-size: 0.72rem; color: var(--primary);
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 0.8rem;
}
.product-desc { font-size: 0.92rem; color: var(--dark-muted); line-height: 1.75; text-align: justify;}

/* ── PROCESS ── */
#process { position: relative; overflow: hidden; }
.process-img-bg {
  position: absolute; inset: 0;
  background-image: url('./images/international-network.jpg');
  background-size: cover; background-position: center;
}
.process-overlay {
  position: absolute; inset: 0;
  background: rgba(18, 20, 22, 0.88);
}
.process-heading-wrap { text-align: center; margin-bottom: 4rem; }
.process-heading-wrap .section-heading { margin-bottom: 0.8rem; }
.process-heading-wrap .section-intro { max-width: 640px; margin: 0 auto; text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Process step — card with image thumbnail */
.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.3s, background 0.3s;
  text-align: center;
}
.process-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}
.step-img-wrap { height: 140px; overflow: hidden; }
.step-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 900; color: var(--primary);
  margin: 1.4rem auto 1rem; position: relative; z-index: 1;
}
.step-title { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.6rem; padding: 0 1.2rem; }
.step-desc { font-size: 0.87rem; color: rgba(255, 255, 255, 0.52); line-height: 1.7; padding: 0 1.2rem 1.6rem; text-align: justify;}

/* ── INDUSTRIES ── */
#industries { background: var(--light-bg); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}

/* Industry card — full image with overlay text */
.industry-card {
  position: relative; border-radius: 8px; overflow: hidden;
  height: 280px;
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.industry-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card:hover .industry-img { transform: scale(1.08); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 28, 0.88) 0%, rgba(20, 24, 28, 0.25) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.4rem;
  transition: background 0.3s;
}
.industry-card:hover .industry-overlay {
  background: linear-gradient(to top, rgba(212, 73, 22, 0.80) 0%, rgba(20, 24, 28, 0.30) 70%, transparent 100%);
}
.industry-name {
  font-weight: 700; font-size: 0.95rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.industry-desc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.78); line-height: 1.55; }

/* ── VALUES ── */
#values {
  background: var(--primary);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: 100px 5%;
}
.values-heading-wrap { text-align: center; margin-bottom: 3.5rem; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem;
}
.value-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px; padding: 2rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
}
.value-card:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem;
}
.value-desc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.72); line-height: 1.7; }

/* ── WHY US ── */
#why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.why-text .section-heading { margin-bottom: 1.2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.why-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 6px; transition: background 0.25s;
}
.why-item:hover { background: var(--light-bg); }
.why-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212, 73, 22, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary); font-size: 1rem; font-weight: 700;
}
.why-item-title { font-weight: 700; color: var(--text); font-size: 0.95rem; margin-bottom: 0.25rem; }
.why-item-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* Why visual — real photo with stats overlay */
.why-visual { position: relative; }
.why-img-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.why-img {
  width: 100%; height: 480px; object-fit: cover;
  display: block;
}
.why-img-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26, 29, 31, 0.92) 0%, transparent 100%);
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 2rem 1.5rem 1.8rem;
}
.why-stat {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; text-align: center;
}
.why-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--primary); line-height: 1;
  margin-bottom: 0.3rem;
}
.why-stat-label {
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.why-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 0.5rem;
}

/* ── COMMITMENT / CTA ── */
#commitment {
  position: relative; overflow: hidden;
  padding: 80px 5%; text-align: center;
}
.commitment-img-bg {
  position: absolute; inset: 0;
  background-image: url('./images/bg-image.jpg');
  background-size: cover; background-position: center top;
}
.commitment-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18, 20, 22, 0.90) 0%, rgba(52, 92, 114, 0.80) 100%);
}
.commitment-inner {
  position: relative; z-index: 2;
}
#commitment .section-heading { margin-bottom: 1rem; }
.commitment-body {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.68);
  line-height: 1.85; max-width: 700px; margin: 0 auto 2.8rem;
}

/* ── CONTACT ── */
#contact { background: var(--light-bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-info .section-heading { margin-bottom: 1rem; }
.contact-body { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }

/* Contact location image */
.contact-map-img {
  position: relative; border-radius: 8px; overflow: hidden;
  margin-bottom: 2rem;
}
.contact-location-img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  filter: saturate(0.8);
}
.contact-location-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(26, 29, 31, 0.85); backdrop-filter: blur(6px);
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 4px;
  display: flex; align-items: center; gap: 0.5rem;
  letter-spacing: 0.03em;
}
.location-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 73, 22, 0.3);
  animation: locPulse 2s ease-in-out infinite;
}
@keyframes locPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(212, 73, 22, 0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(212, 73, 22, 0.1); }
}

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 22px; height: 22px; 
  /* background: var(--primary); */
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white); font-size: 1.1rem;
}
.contact-item-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-weight: 600; margin-bottom: 0.2rem;
}
.contact-item-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-form {
  background: var(--white); border-radius: 8px;
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.82rem 1rem;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 73, 22, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--primary); color: var(--white);
  border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s, transform 0.25s;
}
.form-submit:hover { background: #b83d12; transform: translateY(-1px); }
.form-message {
  margin-top: 0.8rem; font-size: 0.85rem; text-align: center;
  display: none; padding: 0.7rem; border-radius: 4px;
}
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error   { background: #f8d7da; color: #721c24; display: block; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 4rem 5% 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo-img {
  height: 100px; width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
  filter: brightness(1.1);
}
.footer-desc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); line-height: 1.75; }
.footer-col-title {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 700; color: rgba(255, 255, 255, 0.7); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact-item {
  font-size: 0.88rem; color: rgba(255, 255, 255, 0.65);
  display: flex; gap: 0.5rem; align-items: flex-start; align-items: center;
}
.footer-contact-item strong { color: rgba(255, 255, 255, 0.7); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255, 255, 255, 0.3); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ======================================
Privacy Policy
====================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; color: #2c2c2c; background: #fff; line-height: 1.75; }
  h1, h2, h3 { font-family: 'Playfair Display', serif; }

  /* CONTENT */
  .content-section { padding: 50px 0 80px; margin-top: 100px;}
  /* .container { max-width: 900px; margin: 0 auto; padding: 0 24px; } */

  .lead { font-size: 1.05rem; color: #444; border-left: 4px solid #2d5986; padding-left: 16px; margin-bottom: 40px; }

  .policy-section { margin-bottom: 34px; }
  .policy-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; padding-bottom: 8px; border-bottom: 2px solid #e8f0f8; }
  .policy-section h3 .num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; font-size: .85rem; font-family: 'IBM Plex Sans', sans-serif; flex-shrink: 0; }
  .policy-section p { margin-bottom: 12px; color: var(--dark); }
  .policy-section a { color: var(--primary); }
  .policy-section ul { padding-left: 20px; margin-bottom: 12px; }
  .policy-section ul li { margin-bottom: 8px; color: var(--dark); }
  .policy-section ul li strong { color: var(--dark); font-weight: 500;}
  .note { color: #666; font-style: italic; font-size: 0.92rem; }

  .contact-box { background: #d4491633; border: 1px solid #d449161A; border-radius: 8px; padding: 24px 28px; margin-top: 12px; }
  .contact-box p { margin-bottom: 8px; color: #333; }
  .contact-box p:last-child { margin-bottom: 0; }
  .contact-box a { color: #2d5986; text-decoration: none; }
  .contact-box a:hover { text-decoration: underline; }

  .privacy-links a { color: rgba(255, 255, 255, 0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; padding-left: 10px; }
  .privacy-links a:hover { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .network-inner, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img { height: 380px; }
  .about-img-badge { right: 0; bottom: -16px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #network { clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%); }
  #values  { clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 97%); }
  .why-img { height: 360px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .industry-card { height: 220px; }
  .why-img { height: 280px; }
  .why-img-stats { gap: 0; }
  .why-stat-num { font-size: 1.4rem; }
}
@media (max-width: 420px) {
  .process-steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
}
