/* ═══════════════════════════════════════════════════════
   BAHAAR EL AMWAJ — International Seafood Trade & Sourcing
   Main Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --navy: #0B1D33;
  --deep: #0F2942;
  --slate: #1A3A5C;
  --steel: #4A6A8A;
  --mist: #8BA4BE;
  --frost: #C8D8E8;
  --ice: #E8EFF5;
  --white: #FAFBFD;
  --gold: #C9A84C;
  --gold-light: #E4D08B;
  --gold-dark: #9E7E2A;
  --accent: #2E86AB;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════ NAVIGATION ═══════════════════ */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 29, 51, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* Nav scroll state removed — nav is not sticky */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--frost);
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--frost);
  transition: all 0.3s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding-bottom: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,29,51,0.92) 0%, rgba(15,41,66,0.75) 40%, rgba(26,58,92,0.6) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 128px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.06), transparent);
}

.hero-lines::before { left: 20%; top: 0; bottom: 0; width: 1px; }
.hero-lines::after { left: 80%; top: 0; bottom: 0; width: 1px; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 40px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeUp 0.8s ease 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--frost);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-sans);
  border: 1px solid rgba(200,216,232,0.25);
  transition: all 0.3s ease;
}

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

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 5vw;
  right: 5vw;
  display: flex;
  justify-content: center;
  gap: 80px;
  animation: fadeUp 0.8s ease 1s both;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════ SECTION SYSTEM ═══════════════════ */
section { padding: 120px 5vw; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--slate);
}

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.75;
  max-width: 580px;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--deep) 0%, var(--slate) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--frost);
}

.about-visual-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.about-visual-placeholder span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mist);
}

.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(11,29,51,0.9));
}

.about-visual-overlay p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--frost);
  line-height: 1.6;
}

.about-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.about-highlight {
  padding: 24px;
  border: 1px solid var(--ice);
  transition: border-color 0.3s;
}

.about-highlight:hover { border-color: var(--gold); }

.about-highlight-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-style: italic;
}

.about-highlight-text {
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.5px;
  margin-top: 4px;
  line-height: 1.5;
}

/* ═══════════════════ EXPERTISE ═══════════════════ */
.expertise {
  background: var(--navy);
  color: var(--white);
}

.expertise .section-label { color: var(--gold); }
.expertise .section-title { color: var(--white); }
.expertise .section-title em { color: var(--gold); }
.expertise .section-desc { color: var(--mist); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(201,168,76,0.1);
}

.expertise-card {
  background: var(--navy);
  padding: 48px 36px;
  transition: background 0.4s ease;
}

.expertise-card:hover { background: var(--deep); }

.expertise-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s;
}

.expertise-card:hover .expertise-card-icon { border-color: var(--gold); }

.expertise-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.expertise-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--white);
}

.expertise-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
}

/* ═══════════════════ PRODUCTS ═══════════════════ */
.products { background: var(--ice); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.products-tabs { display: flex; gap: 4px; }

.products-tab {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  background: transparent;
  border: 1px solid var(--frost);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s;
}

.products-tab.active,
.products-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-4px); }

.product-card-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

/* ── IMAGE: When you add a real photo, it fills this area ── */
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── PLACEHOLDER: Shows when no image is added yet ── */
.product-card-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--deep) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img .placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--mist);
  fill: none;
  stroke-width: 1;
  opacity: 0.4;
}

.product-card-img .origin-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(11,29,51,0.7);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card-body { padding: 28px 24px; }

.product-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.6;
  font-weight: 300;
}

.product-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ice);
}

.product-card-meta span {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mist);
}

/* ═══════════════════ COMPLIANCE ═══════════════════ */
.compliance { background: var(--white); }

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.compliance-list {
  display: flex;
  flex-direction: column;
}

.compliance-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ice);
  align-items: flex-start;
}

.compliance-item:first-child { padding-top: 0; }

.compliance-item-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-dark);
  min-width: 36px;
}

.compliance-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.compliance-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.65;
}

.compliance-visual {
  background: var(--navy);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.compliance-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.compliance-visual-header {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  position: relative;
}

.compliance-visual-stat {
  margin-bottom: 36px;
  position: relative;
}

.compliance-visual-stat .num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: var(--gold);
}

.compliance-visual-stat .label {
  font-size: 0.9rem;
  color: var(--mist);
  margin-top: 4px;
  font-weight: 300;
}

.compliance-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.compliance-cert {
  padding: 8px 16px;
  border: 1px solid rgba(201,168,76,0.2);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--frost);
}

/* ═══════════════════ TRADE FOOTPRINT ═══════════════════ */
.footprint { background: var(--ice); }

.footprint-map-area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.footprint-region {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.3s ease;
}

.footprint-region:hover { background: var(--navy); }
.footprint-region:hover h3,
.footprint-region:hover p,
.footprint-region:hover .footprint-region-list li { color: var(--white); }
.footprint-region:hover .footprint-region-marker { border-color: var(--gold); color: var(--gold); }

.footprint-region-marker {
  width: 40px;
  height: 40px;
  border: 1px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 24px;
  transition: all 0.3s;
}

.footprint-region h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footprint-region p {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
  transition: color 0.3s;
}

.footprint-region-list { list-style: none; }

.footprint-region-list li {
  font-size: 0.82rem;
  color: var(--steel);
  padding: 6px 0;
  border-bottom: 1px solid var(--ice);
  transition: color 0.3s;
  font-weight: 300;
}

.footprint-region-list li:last-child { border: none; }

/* ═══════════════════ OPERATIONS ═══════════════════ */
.operations {
  background: var(--navy);
  color: var(--white);
}

.operations .section-label { color: var(--gold); }
.operations .section-title { color: var(--white); }
.operations .section-title em { color: var(--gold); }
.operations .section-desc { color: var(--mist); }

.ops-flow {
  display: flex;
  align-items: stretch;
  margin-top: 64px;
}

.ops-step {
  flex: 1;
  padding: 48px 32px;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
}

.ops-step:last-child { border-right: none; }

.ops-step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-style: italic;
  color: rgba(201,168,76,0.2);
  margin-bottom: 20px;
}

.ops-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.ops-step p {
  font-size: 0.85rem;
  color: var(--mist);
  line-height: 1.7;
  font-weight: 300;
}

.ops-step-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 14px;
  z-index: 1;
}

/* ═══════════════════ SISTER COMPANY ═══════════════════ */
.sister {
  background: var(--white);
  border-top: 1px solid var(--ice);
}

.sister-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sister-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--gold);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.sister h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sister p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}

.sister-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s;
}

.sister-link:hover { gap: 14px; }

.sister-visual {
  background: linear-gradient(135deg, var(--ice) 0%, var(--frost) 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sister-visual-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sister-visual-flag {
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--navy);
  border: 1px solid var(--frost);
  background: var(--white);
}

.sister-visual-label {
  font-size: 0.88rem;
  color: var(--steel);
}

.sister-visual-label strong {
  color: var(--navy);
  font-weight: 500;
}

/* ═══════════════════ CTA ═══════════════════ */
.cta-section {
  background: var(--deep);
  padding: 100px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-section .section-label { color: var(--gold); }

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 16px;
  position: relative;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-section p {
  font-size: 1rem;
  color: var(--mist);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: var(--navy);
  padding: 80px 5vw 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--mist);
  text-decoration: none;
  padding: 6px 0;
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(200,216,232,0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--steel);
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 12px;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .compliance-grid,
  .sister-inner { grid-template-columns: 1fr; gap: 48px; }
  
  .expertise-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footprint-map-area { grid-template-columns: 1fr; }
  
  .ops-flow { flex-direction: column; }
  .ops-step { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .ops-step-arrow { display: none; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 80px 6vw; }
  
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11,29,51,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 5vw;
    gap: 16px;
  }

  /* ── HERO MOBILE FIX ── */
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
    padding: 120px 6vw 60px;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content {
    padding: 0;
    margin-bottom: 48px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 28px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 4vw;
  }

  .hero-stat {
    flex: 0 0 40%;
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
  }
  /* ── END HERO MOBILE FIX ── */
  
  .expertise-grid,
  .products-grid { grid-template-columns: 1fr; }
  
  .products-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
