/* ====================================================
   SRU STEELS — SHARED STYLESHEET
   ==================================================== */

/* ===== VARIABLES ===== */
:root {
  --navy:       #0A1628;
  --navy-light: #122040;
  --navy-mid:   #1a2f52;
  --steel:      #C0C8D2;
  --steel-dark: #8fa0b0;
  --gold:       #D4A017;
  --gold-light: #e8b82a;
  --gold-dark:  #b8880f;
  --white:      #ffffff;
  --off-white:  #f8f9fb;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     #e2e8f0;
  --green:      #16a34a;
  --orange:     #ea580c;
  --shadow:     0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:  0 12px 48px rgba(10,22,40,0.18);
  --radius:     12px;
  --radius-sm:  8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; }
input, select, textarea { font-family: 'Poppins', sans-serif; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(212,160,23,0.25);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 14px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 0.975rem; color: var(--text-mid);
  max-width: 600px; line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.4px; transition: var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,22,40,0.28); }
.btn-ghost    { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 28px;
  max-width: 1320px; margin: 0 auto;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled    { background: var(--navy); box-shadow: 0 4px 20px rgba(10,22,40,0.3); }
#navbar.solid       { background: var(--navy); box-shadow: 0 2px 12px rgba(10,22,40,0.2); }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: var(--navy);
  letter-spacing: -1px; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name    { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: 1px; }
.logo-tagline { font-size: 0.57rem; color: var(--steel); letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 13px; color: rgba(255,255,255,0.82);
  font-size: 0.855rem; font-weight: 500;
  border-radius: 6px; transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 1px; left: 50%;
  transform: translateX(-50%); width: 18px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.nav-cta { margin-left: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); display: block; }

.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--navy); padding: 12px 24px 24px;
  z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 0; color: var(--steel); font-size: 0.93rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  padding: 140px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(192,200,210,0.03) 60px, rgba(192,200,210,0.03) 61px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(192,200,210,0.03) 60px, rgba(192,200,210,0.03) 61px);
}
.page-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; font-size: 0.8rem; color: var(--steel);
}
.page-hero-breadcrumb a { color: var(--gold); transition: var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb i { font-size: 0.6rem; color: var(--steel-dark); }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1rem; color: var(--steel); max-width: 560px; line-height: 1.75; }

/* ===== HOME HERO ===== */
#home-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060e1c 0%, #0A1628 40%, #122040 70%, #0A1628 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(192,200,210,1) 80px, rgba(192,200,210,1) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(192,200,210,1) 80px, rgba(192,200,210,1) 81px);
}
.hero-glow {
  position: absolute; top: 15%; right: 8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,160,23,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 130px 28px 90px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.28);
  color: var(--gold); padding: 7px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1.2px;
  margin-bottom: 28px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.05; margin-bottom: 24px; max-width: 820px;
}
.hero-title .hl {
  color: var(--gold); position: relative; display: inline-block;
}
.hero-title .hl::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem); color: rgba(192,200,210,0.88);
  max-width: 560px; line-height: 1.78; margin-bottom: 40px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 68px; }

.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 740px; }
.h-stat {
  text-align: center; padding: 20px 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; backdrop-filter: blur(8px);
}
.h-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; margin-bottom: 5px; }
.h-stat-lbl { font-size: 0.68rem; color: var(--steel); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 2px;
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: sl 1.8s ease infinite; }
@keyframes sl {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== CLIENTS / TRUST BAR ===== */
.trust-bar { background: var(--off-white); padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.trust-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.trust-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-logo { font-size: 0.85rem; font-weight: 700; color: var(--steel-dark); letter-spacing: 0.5px; transition: var(--transition); }
.trust-logo:hover { color: var(--navy); }

/* ===== FEATURED PRODUCTS (HOME) ===== */
#featured { padding: 88px 0; background: var(--white); }
.fp-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.fp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fp-card {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); position: relative; background: var(--white);
}
.fp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.4); }
.fp-img {
  height: 210px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; transition: var(--transition);
}
.fp-img .fi { font-size: 3.8rem; position: relative; z-index: 1; transition: var(--transition); }
.fp-card:hover .fp-img .fi { transform: scale(1.1); }
.fp-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.5)); }
.fp-badge { position: absolute; top: 12px; left: 12px; font-size: 0.62rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.fp-badge.bestseller { background: var(--gold); color: var(--navy); }
.fp-badge.popular    { background: #3b82f6; color: var(--white); }
.fp-badge.new        { background: var(--green); color: var(--white); }
.fp-body { padding: 22px; }
.fp-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.fp-body p  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.fp-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.spec { background: var(--off-white); border: 1px solid var(--border); color: var(--text-mid); font-size: 0.7rem; padding: 3px 9px; border-radius: 50px; font-weight: 500; }

/* Product image backgrounds */
.img-tmt    { background: linear-gradient(160deg,#1c0c0c,#2d1010,#3a0808); }
.img-tmt .fi { color: rgba(212,120,80,0.6); }
.img-billet { background: linear-gradient(160deg,#111111,#1e1e1e,#2a2a2a); }
.img-billet .fi { color: rgba(180,180,180,0.55); }
.img-wire   { background: linear-gradient(160deg,#0a1020,#152035,#1a2a40); }
.img-wire .fi { color: rgba(100,160,220,0.55); }
.img-hr     { background: linear-gradient(160deg,#1a1000,#2a1a00,#3a2400); }
.img-hr .fi { color: rgba(220,160,50,0.55); }
.img-cr     { background: linear-gradient(160deg,#0a1218,#101e28,#152530); }
.img-cr .fi { color: rgba(150,200,220,0.55); }
.img-struct { background: linear-gradient(160deg,#0c1010,#141a1a,#101818); }
.img-struct .fi { color: rgba(100,180,150,0.55); }
.img-ibeam  { background: linear-gradient(160deg,#121212,#1e1e20,#0e0e10); }
.img-ibeam .fi { color: rgba(180,180,200,0.55); }
.img-pipe   { background: linear-gradient(160deg,#0a0f18,#111825,#0c1520); }
.img-pipe .fi { color: rgba(80,150,200,0.55); }
.img-galv   { background: linear-gradient(160deg,#0a1210,#101e18,#0a1814); }
.img-galv .fi { color: rgba(100,200,150,0.55); }

/* ===== HOME — ABOUT TEASER ===== */
#home-about { padding: 88px 0; background: var(--off-white); }
.ha-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ha-img-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px; aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.ha-img-box::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,160,23,0.12), transparent); }
.ha-img-box i { font-size: 6rem; color: rgba(212,160,23,0.28); position: relative; z-index: 1; }
.ha-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); color: var(--navy);
  padding: 16px 22px; border-radius: 12px;
  font-weight: 800; text-align: center;
  box-shadow: 0 8px 28px rgba(212,160,23,0.38);
}
.ha-badge span { font-size: 2rem; line-height: 1; display: block; }
.ha-badge small { font-size: 0.67rem; letter-spacing: 1px; text-transform: uppercase; display: block; }
.ha-text p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.ha-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.ha-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  transition: var(--transition);
}
.ha-pill:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.ha-pill i { color: var(--gold); font-size: 0.85rem; }

/* ===== WHY US ===== */
#why-us { padding: 88px 0; background: var(--navy); }
#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: var(--steel); }
.wu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.wu-card {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 32px 22px; text-align: center;
  transition: var(--transition);
}
.wu-card:hover { background: rgba(212,160,23,0.1); border-color: var(--gold); transform: translateY(-4px); }
.wu-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.4rem; color: var(--navy);
}
.wu-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.wu-card p  { font-size: 0.82rem; color: var(--steel); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 64px 0; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.cta-text p  { font-size: 1rem; color: rgba(10,22,40,0.75); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-cta-navy:hover { background: var(--navy-light); }
.btn-cta-wh   { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-cta-wh:hover { background: var(--off-white); }

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 88px 0; background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px; transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.3); }
.testi-card::before {
  content: '\201C'; font-size: 5rem; font-family: Georgia,serif; color: rgba(212,160,23,0.15);
  position: absolute; top: 12px; right: 20px; line-height: 1;
}
.t-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-quote { font-size: 0.87rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--gold); font-size: 0.92rem; flex-shrink: 0;
}
.t-name { font-weight: 700; color: var(--navy); font-size: 0.87rem; margin-bottom: 2px; }
.t-co   { font-size: 0.75rem; color: var(--text-light); }

/* ===== NEWS ===== */
#news-home { padding: 88px 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.35); }
.news-img {
  height: 190px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.news-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.6)); }
.nc-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 0.62rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.nc-tag.award  { background: #6d28d9; color: var(--white); }
.nc-tag.green  { background: var(--green); color: var(--white); }
.news-body { padding: 22px; }
.news-date { font-size: 0.73rem; color: var(--text-light); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.news-date i { color: var(--gold); font-size: 0.68rem; }
.news-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; line-height: 1.4; }
.news-body p  { font-size: 0.81rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.read-more { font-size: 0.81rem; font-weight: 600; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.read-more:hover { color: var(--navy); gap: 9px; }
.news-img-exp  { background: linear-gradient(135deg,#0c1624,#1a2a3a,#0a1828); }
.news-img-exp  .fi { color: rgba(100,160,220,0.4); }
.news-img-aw   { background: linear-gradient(135deg,#1a0c20,#2a1030,#160c24); }
.news-img-aw   .fi { color: rgba(180,100,220,0.4); }
.news-img-sol  { background: linear-gradient(135deg,#141a0c,#202a10,#181e0a); }
.news-img-sol  .fi { color: rgba(160,200,80,0.4); }

/* ===== ABOUT PAGE ===== */
#about-story { padding: 88px 0; background: var(--white); }
.as-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.as-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px; aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.as-img i { font-size: 7rem; color: rgba(212,160,23,0.22); }
.as-text p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }

/* Timeline */
.timeline { position: relative; padding-left: 36px; margin-top: 16px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(212,160,23,0.2)); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot {
  position: absolute; left: -32px; top: 4px;
  width: 14px; height: 14px; background: var(--gold);
  border-radius: 50%; border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-year { font-size: 0.72rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.tl-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tl-desc  { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* Mission Vision */
.mv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 80px; }
.mv-card { padding: 36px; border-radius: 14px; }
.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.mv-card-icon { font-size: 2rem; margin-bottom: 14px; }
.mv-card.mission .mv-card-icon { color: var(--gold); }
.mv-card.vision  .mv-card-icon { color: var(--navy); }
.mv-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.mv-card.mission h3 { color: var(--white); }
.mv-card.vision  h3 { color: var(--navy); }
.mv-card p  { font-size: 0.87rem; line-height: 1.7; }
.mv-card.mission p { color: var(--steel); }
.mv-card.vision  p { color: rgba(10,22,40,0.8); }

/* Awards */
#about-awards { padding: 80px 0; background: var(--off-white); }
.awards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.award-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 20px; text-align: center;
  transition: var(--transition);
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.award-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; }
.award-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.award-card p  { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ===== PRODUCTS PAGE ===== */
#products-page { padding: 72px 0 88px; background: var(--off-white); }
.prod-controls { background: var(--white); border-radius: 14px; padding: 20px 22px; margin-bottom: 32px; border: 1px solid var(--border); }
.search-row { position: relative; margin-bottom: 18px; }
.search-input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 0.9rem; color: var(--text-dark); background: var(--off-white);
  transition: var(--transition); outline: none;
}
.search-input:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.9rem; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pill {
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-mid);
  background: var(--white); cursor: pointer; transition: var(--transition);
}
.filter-pill:hover  { border-color: var(--navy); color: var(--navy); }
.filter-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cat-card {
  border-radius: 14px; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.4); }
.cat-card.hidden { display: none; }
.cat-img {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: var(--transition);
}
.cat-img .fi { font-size: 3.5rem; position: relative; z-index: 1; transition: var(--transition); }
.cat-card:hover .cat-img .fi { transform: scale(1.08); }
.cat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(10,22,40,0.5)); }
.avail-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.6rem; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1.2px; z-index: 2;
}
.avail-badge.jit    { background: var(--green); color: var(--white); }
.avail-badge.stock  { background: #3b82f6; color: var(--white); }
.avail-badge.bulk   { background: var(--gold); color: var(--navy); }
.avail-badge.quote  { background: var(--orange); color: var(--white); }
.avail-badge.demand { background: #ef4444; color: var(--white); }
.avail-badge.cert   { background: #8b5cf6; color: var(--white); }
.cat-price {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(10,22,40,0.85); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; letter-spacing: 0.5px; z-index: 2;
}
.cat-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cat-body h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cat-body p  { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.cat-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.cat-body .btn { justify-content: center; }

/* Fabrication CTA */
.fab-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px; padding: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 44px; flex-wrap: wrap;
}
.fab-cta-icon { font-size: 3.5rem; color: rgba(212,160,23,0.35); }
.fab-cta h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.fab-cta p  { font-size: 0.9rem; color: var(--steel); }

/* Logistics JIT section */
.jit-section {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 16px; padding: 44px; margin-top: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.jit-left h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.jit-left p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.jit-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.jit-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.jit-stat-lbl { font-size: 0.72rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.jit-features { display: flex; flex-direction: column; gap: 14px; }
.jit-feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
}
.jit-feat-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.jit-feat h5 { font-size: 0.87rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.jit-feat p  { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ===== INFRASTRUCTURE PAGE ===== */
#infra-overview { padding: 88px 0; background: var(--white); }
.plants-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 72px; }
.plant-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.plant-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.plant-img {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.plant-img-ncr   { background: linear-gradient(135deg,#0c1018,#161e2a,#101820); }
.plant-img-raj   { background: linear-gradient(135deg,#10100c,#1e1c10,#181600); }
.plant-img-hr    { background: linear-gradient(135deg,#0c0c14,#10101e,#0a0a18); }
.plant-img .fi   { color: rgba(212,160,23,0.35); }
.plant-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 0.62rem; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
}
.plant-body { padding: 22px; }
.plant-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.plant-location { font-size: 0.78rem; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.plant-location i { color: var(--gold); }
.plant-specs-list { display: flex; flex-direction: column; gap: 7px; }
.plant-spec-row { display: flex; justify-content: space-between; font-size: 0.8rem; }
.plant-spec-row span:first-child { color: var(--text-light); }
.plant-spec-row span:last-child  { color: var(--navy); font-weight: 600; }

/* Capacity metrics */
.cap-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-bottom: 72px; }
.cap-card {
  background: var(--navy); border-radius: 14px; padding: 28px 20px;
  text-align: center; border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.cap-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.cap-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.cap-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 5px; }
.cap-lbl { font-size: 0.72rem; color: var(--steel); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Quality process */
#quality-process { padding: 80px 0; background: var(--off-white); }
.qp-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.qp-steps::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(212,160,23,0.2)); z-index: 0; }
.qp-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.qp-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin: 0 auto 14px; font-weight: 800;
  background: var(--white); box-shadow: 0 0 0 6px var(--off-white);
}
.qp-step h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.qp-step p  { font-size: 0.75rem; color: var(--text-light); line-height: 1.55; }

/* Certifications */
#certifications { padding: 80px 0; background: var(--navy); }
#certifications .section-title { color: var(--white); }
#certifications .section-subtitle { color: var(--steel); }
.cert-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cert-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 32px 24px; text-align: center; transition: var(--transition);
}
.cert-card:hover { background: rgba(212,160,23,0.1); border-color: var(--gold); transform: translateY(-3px); }
.cert-card i  { font-size: 2.2rem; color: var(--gold); margin-bottom: 14px; }
.cert-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cert-card p  { font-size: 0.8rem; color: var(--steel); line-height: 1.6; }

/* ===== INVESTORS PAGE ===== */
#investors-page { padding: 72px 0 88px; background: var(--off-white); }
.inv-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
.inv-tab {
  padding: 11px 22px; font-size: 0.86rem; font-weight: 600;
  color: var(--text-mid); background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition); cursor: pointer; border-radius: 8px 8px 0 0;
}
.inv-tab:hover, .inv-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.inv-tab.active { background: rgba(212,160,23,0.07); }
.inv-panel { display: none; animation: fadeIn 0.3s ease; }
.inv-panel.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.fin-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 36px; }
.fin-card {
  background: var(--white); border-radius: 13px; padding: 26px 18px;
  border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.fin-card:hover { box-shadow: var(--shadow); border-color: rgba(212,160,23,0.35); }
.fin-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; }
.fin-val  { font-size: 1.55rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 5px; }
.fin-lbl  { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.fin-delta { display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; font-size: 0.75rem; font-weight: 600; padding: 3px 9px; border-radius: 50px; }
.fin-delta.up   { background: rgba(22,163,74,0.1);  color: var(--green); }
.fin-delta.down { background: rgba(239,68,68,0.1);  color: #dc2626; }

.data-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.data-table th { background: var(--navy); color: var(--white); padding: 13px 18px; text-align: left; font-size: 0.8rem; font-weight: 600; }
.data-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 0.855rem; color: var(--text-dark); }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: rgba(212,160,23,0.04); }
.data-table td:last-child { font-weight: 700; color: var(--navy); }
.progress-bar { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; margin-top: 5px; width: 80px; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }

.ar-list { display: flex; flex-direction: column; gap: 11px; }
.ar-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 22px; transition: var(--transition);
}
.ar-item:hover { box-shadow: var(--shadow); border-color: rgba(212,160,23,0.35); }
.ar-left  { display: flex; align-items: center; gap: 14px; }
.ar-icon  { width: 42px; height: 42px; background: rgba(212,160,23,0.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.15rem; }
.ar-title { font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 2px; }
.ar-meta  { font-size: 0.75rem; color: var(--text-light); }
.ar-dl { display: flex; align-items: center; gap: 6px; color: var(--navy); font-size: 0.8rem; font-weight: 600; background: var(--off-white); border: 1px solid var(--border); padding: 7px 14px; border-radius: 7px; transition: var(--transition); }
.ar-dl:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.board-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.board-card {
  background: var(--white); border-radius: 13px; padding: 26px 22px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.board-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.35); }
.board-av {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.5rem; font-weight: 800;
  color: var(--gold); border: 3px solid var(--gold);
}
.board-name { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.board-role { font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 3px; }
.board-cat  { font-size: 0.73rem; color: var(--text-light); }
.board-din  { font-size: 0.7rem; color: var(--text-light); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }

.gov-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.gov-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px; cursor: pointer; transition: var(--transition);
}
.gov-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.gov-item-icon { width: 46px; height: 46px; background: rgba(10,22,40,0.05); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 1.15rem; flex-shrink: 0; }
.gov-item-title { font-weight: 600; color: var(--navy); font-size: 0.88rem; margin-bottom: 2px; }
.gov-item-meta  { font-size: 0.73rem; color: var(--text-light); }

/* ===== CONTACT PAGE ===== */
#contact-page { padding: 72px 0 88px; background: var(--off-white); }
.offices-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 52px; }
.office-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 13px; padding: 26px; transition: var(--transition);
}
.office-card:hover { box-shadow: var(--shadow); border-color: rgba(212,160,23,0.35); }
.office-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-dark); margin-bottom: 10px; }
.office-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.office-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-mid); margin-bottom: 10px; line-height: 1.5; }
.office-detail i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }

.contact-main { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.ci-item:first-child { padding-top: 0; }
.ci-icon { width: 46px; height: 46px; background: var(--navy); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }
.ci-title { font-weight: 700; color: var(--navy); font-size: 0.87rem; margin-bottom: 4px; }
.ci-val   { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; }
.map-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 200px; margin-top: 22px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.865rem; color: var(--text-dark);
  background: var(--off-white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-btn  { width: 100%; padding: 14px; font-size: 0.95rem; font-weight: 700; justify-content: center; }
.form-success { display: none; background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); color: var(--green); padding: 14px; border-radius: 8px; text-align: center; font-size: 0.87rem; margin-top: 14px; }

/* FAQ */
#faq-section { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 11px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-size: 0.93rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: var(--transition); background: var(--white);
}
.faq-q:hover { background: var(--off-white); }
.faq-q.open { background: var(--navy); color: var(--white); }
.faq-q i { font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.faq-q.open i { transform: rotate(45deg); color: var(--gold); }
.faq-a { display: none; padding: 18px 22px; font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; background: var(--off-white); border-top: 1px solid var(--border); }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 68px 0 0; color: var(--steel); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; margin-bottom: 44px; }
.footer-about .logo { margin-bottom: 18px; }
.footer-about p { font-size: 0.855rem; color: rgba(192,200,210,0.72); line-height: 1.72; margin-bottom: 22px; }
.social-links { display: flex; gap: 9px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel); font-size: 0.88rem; transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-size: 0.92rem; font-weight: 700; color: var(--white);
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.f-links li { margin-bottom: 9px; }
.f-links a { font-size: 0.835rem; color: rgba(192,200,210,0.72); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.f-links a:hover { color: var(--gold); padding-left: 4px; }
.f-links a i { font-size: 0.58rem; color: var(--gold); }
.f-contact li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 12px; font-size: 0.8rem; color: rgba(192,200,210,0.72); }
.f-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-cert { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.cert-badges { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cert-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11); color: var(--steel); font-size: 0.69rem; padding: 5px 13px; border-radius: 50px; font-weight: 600; letter-spacing: 1px; display: flex; align-items: center; gap: 5px; white-space: nowrap; }
.cert-pill i { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(192,200,210,0.45); }
.fb-links { display: flex; gap: 18px; }
.fb-links a { font-size: 0.76rem; color: rgba(192,200,210,0.45); transition: var(--transition); }
.fb-links a:hover { color: var(--gold); }
.cin-text { font-size: 0.69rem; color: rgba(192,200,210,0.3); margin-top: 3px; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,22,40,0.75); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(6px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 18px; padding: 44px; max-width: 500px; width: 100%; position: relative; animation: mIn 0.32s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes mIn { from { opacity:0; transform:scale(0.9) translateY(16px); } to { opacity:1; transform:scale(1) translateY(0); } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: var(--off-white); border: none; display: flex; align-items: center; justify-content: center; color: var(--text-mid); transition: var(--transition); }
.modal-close:hover { background: var(--navy); color: var(--white); }

/* ===== BACK TO TOP ===== */
#btt { position: fixed; bottom: 26px; right: 26px; width: 42px; height: 42px; background: var(--gold); color: var(--navy); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; z-index: 999; opacity: 0; transform: translateY(14px); transition: var(--transition); cursor: pointer; }
#btt.vis { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width:1100px) {
  .wu-grid       { grid-template-columns: repeat(2,1fr); }
  .fin-metrics   { grid-template-columns: repeat(2,1fr); }
  .cap-metrics   { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .catalog-grid  { grid-template-columns: repeat(2,1fr); }
  .board-grid    { grid-template-columns: repeat(2,1fr); }
  .qp-steps      { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .qp-steps::before { display: none; }
}
@media (max-width:900px) {
  .fp-grid        { grid-template-columns: repeat(2,1fr); }
  .as-grid        { grid-template-columns: 1fr; }
  .ha-grid        { grid-template-columns: 1fr; }
  .mv-row         { grid-template-columns: 1fr; }
  .plants-grid    { grid-template-columns: 1fr 1fr; }
  .gov-grid       { grid-template-columns: 1fr; }
  .jit-section    { grid-template-columns: 1fr; }
  .offices-row    { grid-template-columns: 1fr; }
  .contact-main   { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .news-grid      { grid-template-columns: repeat(2,1fr); }
  .awards-grid    { grid-template-columns: repeat(2,1fr); }
  .cert-cards     { grid-template-columns: repeat(2,1fr); }
  .fab-cta        { flex-direction: column; text-align: center; }
  .hero-stats     { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .catalog-grid { grid-template-columns: 1fr; }
  .news-grid    { grid-template-columns: 1fr; }
  .fp-grid      { grid-template-columns: 1fr; }
  .plants-grid  { grid-template-columns: 1fr; }
  .board-grid   { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .awards-grid  { grid-template-columns: 1fr 1fr; }
  .cta-inner    { flex-direction: column; text-align: center; }
  .cta-actions  { justify-content: center; }
  .qp-steps     { grid-template-columns: 1fr; }
  .footer-cert  { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fb-links     { justify-content: center; }
  .ha-badge     { bottom: -12px; right: -12px; }
  .hero-btns    { flex-direction: column; }
}
@media (max-width:480px) {
  .hero-stats  { grid-template-columns: 1fr 1fr; }
  .fin-metrics { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .cert-cards  { grid-template-columns: 1fr; }
  .modal       { padding: 28px 18px; }
  .fab-cta     { padding: 28px; }
}
