/* ============================================================
   Global Trade Gateway — Main Stylesheet
   Red + Orange + Gold Brand Theme
============================================================ */
:root {
  --red:        #9B1C1C;
  --red-dark:   #7F1D1D;
  --red-mid:    #B91C1C;
  --red-light:  #DC2626;
  --orange:     #EA580C;
  --orange-light:#F97316;
  --gold:       #D97706;
  --gold-light: #F59E0B;
  --navy:       #1C1917;
  --navy-dark:  #0C0A09;
  --white:      #ffffff;
  --grey-50:    #fafaf9;
  --grey-100:   #f5f5f4;
  --grey-200:   #e7e5e4;
  --grey-400:   #a8a29e;
  --grey-600:   #57534e;
  --grey-800:   #292524;
  --text:       #1c1917;
  --text-muted: #57534e;
  --border:     #e7e5e4;
  --shadow-sm:  0 2px 8px rgba(155,28,28,.07);
  --shadow-md:  0 6px 24px rgba(155,28,28,.12);
  --shadow-lg:  0 16px 48px rgba(155,28,28,.18);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: .25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--red-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.bg-navy  { background: var(--red-dark); color: var(--white); }
.bg-navy h1,.bg-navy h2,.bg-navy h3,.bg-navy h4 { color: var(--white); }
.bg-dark  { background: var(--navy-dark); color: var(--white); }
.bg-grey  { background: var(--grey-50); }
.bg-grey-100 { background: var(--grey-100); }
.bg-white { background: var(--white); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--red-dark); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top:.5rem; } .mt-2 { margin-top:1rem; } .mt-3 { margin-top:1.5rem; }
.mt-4 { margin-top:2rem; } .mt-5 { margin-top:3rem; }
.mb-1 { margin-bottom:.5rem; } .mb-2 { margin-bottom:1rem; }
.mb-3 { margin-bottom:1.5rem; } .mb-4 { margin-bottom:2rem; }
.d-flex { display:flex; } .align-center { align-items:center; }
.gap-1 { gap:.5rem; } .gap-2 { gap:1rem; } .gap-3 { gap:1.5rem; }

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-label::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--orange); vertical-align: middle; margin-right: 8px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(217,119,6,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-navy { background: var(--red-dark); color: var(--white); border-color: var(--red-dark); }
.btn-navy:hover { background: var(--red-mid); border-color: var(--red-mid); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-1px); }
.btn-sm { padding: .5rem 1.25rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Header ────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(127,29,29,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
#header.scrolled { background: rgba(127,29,29,1); box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-text span { font-size: .65rem; color: var(--gold-light); letter-spacing: .14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  display: block;
  padding: .5rem .85rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.main-nav a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--gold-light); border-radius: 2px; }
.header-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--red-dark) 45%, var(--red-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::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='%23ffffff' fill-opacity='0.03'%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");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border: 80px solid rgba(234,88,12,.12);
  border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,6,.18);
  border: 1px solid rgba(217,119,6,.45);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); display: block; }
.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  padding: 1.5rem;
  text-align: center;
  transition: background var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.12); }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold-light); line-height: 1; display: block; }
.hero-stat-lbl { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .4rem; letter-spacing: .04em; }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-img-main {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.12);
}
.hero-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-img-grid img { height: 160px; border-radius: var(--radius); object-fit: cover; border: 2px solid rgba(255,255,255,.12); }
.hero-cert {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: .78rem;
  box-shadow: var(--shadow-lg);
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar { background: linear-gradient(90deg, var(--red-dark) 0%, var(--orange) 100%); padding: 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.08); }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8); margin-top: .3rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon {
  width: 56px; height: 56px;
  background: rgba(155,28,28,.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--red-dark);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--red-dark); color: var(--gold-light); }
.card h4 { margin-bottom: .5rem; font-size: 1.1rem; }
.card p { color: var(--text-muted); font-size: .9rem; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

/* ── Section Header ────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; }
.section-header.centered p { margin: 0 auto; }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--red-mid), var(--orange)); border-radius: 2px; margin: 1rem 0; }
.section-header.centered .divider { margin: 1rem auto; }

/* ── About Strip ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: linear-gradient(135deg, var(--red-dark), var(--orange));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 700;
}
.about-badge strong { font-size: 1.5rem; display: block; }
.about-badge span { font-size: .78rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  font-size: .95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--grey-100);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--orange); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* ── Services ──────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--red-mid), var(--orange));
  transition: height .4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card.featured {
  border-color: var(--orange);
  border-width: 2px;
  background: linear-gradient(135deg, #fff9f5, #fff);
}
.service-card.featured::after {
  content: 'Featured';
  position: absolute;
  top: 12px; right: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
}
.service-card .icon {
  width: 60px; height: 60px;
  background: rgba(155,28,28,.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--red-mid);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .icon { background: var(--red-dark); color: var(--gold-light); }
.service-card h4 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; margin: 0; line-height: 1.6; }

/* ── Value Added List ─────────────────────────────────────── */
.vas-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .75rem; }
.vas-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(234,88,12,.08);
  color: var(--orange);
  border: 1px solid rgba(234,88,12,.2);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
}
.vas-tag i { font-size: .7rem; }

/* ── Why GTG ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.reason-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: .5rem;
}
.reason-item:hover { background: rgba(255,255,255,.08); }
.reason-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.reason-item h4 { margin-bottom: .3rem; font-size: 1rem; color: var(--white); }
.reason-item p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* ── Infrastructure ────────────────────────────────────────── */
.infra-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.infra-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.infra-card-img { height: 200px; background: var(--grey-100); overflow: hidden; }
.infra-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.infra-card:hover .infra-card-img img { transform: scale(1.05); }
.infra-card-body { padding: 1.5rem; }
.infra-card-body h4 { margin-bottom: .5rem; }
.infra-card-body p { font-size: .9rem; color: var(--text-muted); margin: 0; }
.infra-spec { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--orange); margin-top: .75rem; font-weight: 600; }

/* ── Careers ───────────────────────────────────────────────── */
.career-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all var(--transition);
}
.career-card:hover { border-color: var(--red-mid); box-shadow: var(--shadow-md); }
.career-info h4 { margin-bottom: .4rem; font-size: 1.1rem; }
.career-meta { display: flex; flex-wrap: wrap; gap: .75rem; }
.career-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--text-muted);
}
.career-tag i { color: var(--orange); }
.career-list { display: flex; flex-direction: column; gap: 1rem; }

/* ── Blog ──────────────────────────────────────────────────── */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.post-card-img { height: 200px; overflow: hidden; background: var(--grey-100); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 1.5rem; }
.post-cat { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .6rem; }
.post-card-body h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.post-card-body p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }
.post-meta { font-size: .78rem; color: var(--text-muted); display: flex; gap: 1rem; }

/* ── Page Banner ───────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--red-dark) 60%, var(--red-mid) 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 450px; height: 450px;
  border: 80px solid rgba(234,88,12,.1);
  border-radius: 50%;
}
.page-banner h1 { color: var(--white); margin-bottom: .75rem; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info-card {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(217,119,6,.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: .25rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-detail-text span { font-size: .95rem; color: var(--white); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: .45rem; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--red-mid); box-shadow: 0 0 0 3px rgba(155,28,28,.1); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Google Maps ───────────────────────────────────────────── */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--orange) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border: 100px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding-top: 70px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { margin-bottom: 1rem; }
.footer-logo img { height: 40px; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-logo-sub { font-size: .65rem; color: var(--gold-light); letter-spacing: .14em; text-transform: uppercase; }
.footer-about { font-size: .88rem; line-height: 1.7; margin: 1rem 0; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-col h5 { color: var(--white); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col ul a::before { content: '›'; color: var(--orange); }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .9rem; font-size: .88rem; }
.footer-contact-item i { color: var(--gold-light); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Alert / Flash ─────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ── Timeline ──────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background: var(--grey-200); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--orange);
}

/* ── Scroll to top ─────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--red-dark);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 130px 0 60px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--red-dark); flex-direction: column; padding: 1.5rem; gap: .5rem; z-index: 999; border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .career-card { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
}
