/*
Theme Name: Chaudhry Group Export
Theme URI: https://chaudhry-group.com
Author: Chaudhry Group
Description: Pakistan's Premier Egg Export Company - Built for international bulk buyers in UAE & GCC
Version: 2.0
*/

/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --bg:        #0a0a0a;
  --bg-card:   #111111;
  --bg-card2:  #161616;
  --red:       #8B1A1A;
  --red-hover: #A52020;
  --red-dark:  #6B1010;
  --gold:      #C9A84C;
  --gold-lt:   #E0C265;
  --gold-dim:  #9A7A30;
  --white:     #FFFFFF;
  --gray:      #CCCCCC;
  --gray-mid:  #888888;
  --border:    rgba(201,168,76,0.18);
  --border-red:rgba(139,26,26,0.4);
  --shadow:    0 4px 32px rgba(0,0,0,0.6);
  --radius:    8px;
  --radius-lg: 14px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--gray);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.gold  { color: var(--gold); }
.red   { color: var(--red); }
.white { color: var(--white); }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ============================================================
   DIVIDERS & BADGES
============================================================ */
.section-label {
  display: inline-block;
  background: rgba(139,26,26,0.25);
  border: 1px solid var(--red);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.gold-line--left { margin-left: 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139,26,26,0.45);
}
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }
.btn--sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  line-height: 1.2;
}
.nav-logo-text .name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-logo-text .tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--gray-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #25D366;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-wa:hover {
  background: rgba(37,211,102,0.1);
  color: #25D366;
  border-color: #25D366;
}
.nav-wa svg { width: 16px; height: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTIONS
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,0.88) 0%,
    rgba(10,5,5,0.75) 50%,
    rgba(139,26,26,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-content .section-label { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.12rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--red-dark);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.04); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 6px;
  display: block;
}

/* Inner hero (subpages) */
.hero-inner {
  position: relative;
  padding: 100px 0 56px;
  margin-top: 72px;
  background: linear-gradient(180deg, #0f0808 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,26,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner .breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 14px;
}
.hero-inner .breadcrumb a { color: var(--gold); }
.hero-inner .breadcrumb span { color: var(--gray-mid); }

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(139,26,26,0.2);
  border: 1px solid var(--border-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; color: var(--white); font-size: 1.15rem; }
.card p  { color: var(--gray-mid); font-size: 0.92rem; line-height: 1.65; }

/* Feature card (chain steps) */
.chain-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.chain-item:hover { border-color: var(--gold-dim); }
.chain-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.chain-item h4 { color: var(--white); margin-bottom: 6px; }
.chain-item p  { color: var(--gray-mid); font-size: 0.88rem; }

/* ============================================================
   ADVANTAGE GRID
============================================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.advantage-item {
  background: var(--bg-card);
  padding: 36px 28px;
  transition: background var(--transition);
}
.advantage-item:hover { background: var(--bg-card2); }
.advantage-item .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.advantage-item h4 { color: var(--gold); margin-bottom: 8px; font-size: 1rem; }
.advantage-item p  { color: var(--gray-mid); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   EGG PRODUCT PAGE
============================================================ */
.egg-grade-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.egg-grade-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.egg-grade-header {
  background: var(--red);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.egg-grade-header .grade-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.egg-grade-header .grade-weight {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
.egg-grade-body { padding: 24px; }
.egg-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.egg-spec-row:last-child { border-bottom: none; }
.egg-spec-row .label { color: var(--gray-mid); }
.egg-spec-row .value { color: var(--white); font-weight: 600; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table th {
  background: var(--red);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.spec-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--gray);
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.spec-table tr:hover td { background: rgba(201,168,76,0.04); }
.spec-table td:first-child { color: var(--white); font-weight: 500; }

/* ============================================================
   CERTIFICATIONS
============================================================ */
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.cert-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}
.cert-icon {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  background: rgba(139,26,26,0.15);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cert-card h4 { color: var(--gold); margin-bottom: 8px; font-size: 1rem; }
.cert-card p  { color: var(--gray-mid); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   CONTACT / INQUIRY FORM
============================================================ */
.inquiry-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.inquiry-form h3 { color: var(--gold); margin-bottom: 6px; }
.inquiry-form .subtitle { color: var(--gray-mid); margin-bottom: 30px; font-size: 0.92rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-note { font-size: 0.8rem; color: var(--gray-mid); }

/* ============================================================
   CONTACT INFO BLOCKS
============================================================ */
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-block:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(139,26,26,0.2);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-block h5 { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; font-family: var(--font-body); }
.contact-block p, .contact-block a { color: var(--gray); font-size: 0.92rem; }
.contact-block a:hover { color: var(--gold); }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   LOGISTICS / EXPORT PAGE
============================================================ */
.logistics-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.logistics-step::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 52px;
  width: 2px;
  height: calc(100% + 24px);
  background: var(--border-red);
}
.logistics-step:last-child::after { display: none; }
.step-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.step-body { padding-bottom: 32px; }
.step-body h4 { color: var(--white); margin-bottom: 6px; }
.step-body p  { color: var(--gray-mid); font-size: 0.9rem; }

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all var(--transition);
}
.market-card:hover { border-color: var(--gold-dim); }
.market-flag { font-size: 2.8rem; flex-shrink: 0; line-height: 1; }
.market-card h4 { color: var(--white); margin-bottom: 4px; }
.market-card p  { color: var(--gray-mid); font-size: 0.85rem; }
.market-card .status {
  display: inline-block;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: #4AE080;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ============================================================
   INFRASTRUCTURE PAGE
============================================================ */
.infra-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.infra-block:last-child { border-bottom: none; }
.infra-block.reverse .infra-img { order: 2; }
.infra-block.reverse .infra-text { order: 1; }
.infra-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.infra-img img { width: 100%; height: 100%; object-fit: cover; }
.infra-text h3 { margin-bottom: 14px; }
.infra-text p  { color: var(--gray-mid); margin-bottom: 22px; line-height: 1.75; }
.infra-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.infra-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray);
  font-size: 0.9rem;
}
.infra-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--red) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 8px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}
.timeline-year {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-item h4 { color: var(--white); margin-bottom: 6px; }
.timeline-item p  { color: var(--gray-mid); font-size: 0.88rem; }

/* Leadership */
.leadership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.leadership-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.leadership-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.leadership-info { padding: 22px; }
.leadership-info h4 { color: var(--white); margin-bottom: 4px; }
.leadership-info .role { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.leadership-info p { color: var(--gray-mid); font-size: 0.85rem; margin-top: 10px; }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.section-header .section-label { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
}
.section-header.center p { margin: 0 auto; }
.section-header.center .gold-line { margin: 14px auto 0; }
.section-header .gold-line { margin-top: 14px; }

/* Highlight band */
.highlight-band {
  background: var(--red);
  padding: 18px 0;
  text-align: center;
}
.highlight-band p {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
}
.highlight-band strong { color: var(--gold); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #3D0000 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--gray-mid); font-size: 0.88rem; line-height: 1.7; margin: 16px 0 22px; max-width: 280px; }
.footer-brand .logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub { font-size: 0.7rem; color: var(--gray-mid); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-certbadges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-certbadge {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--gray-mid);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact p {
  color: var(--gray-mid);
  font-size: 0.85rem;
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact p span { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: var(--gray-mid);
}
.footer-bottom a { color: var(--gray-mid); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   MISC UTILITIES
============================================================ */
.bg-card    { background: var(--bg-card); }
.bg-card2   { background: var(--bg-card2); }
.bg-dark    { background: var(--bg); }
.border-top { border-top: 1px solid var(--border); }
.border-bot { border-bottom: 1px solid var(--border); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gray);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Counter animation */
.counter { display: inline-block; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .stats-bar-inner .stat-item:nth-child(4),
  .stats-bar-inner .stat-item:nth-child(5) { border-top: 1px solid var(--border); }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .infra-block { grid-template-columns: 1fr; gap: 32px; }
  .infra-block.reverse .infra-img { order: 0; }
  .infra-block.reverse .infra-text { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 32px 24px; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .nav-menu { display: none; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 20px 24px 32px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-menu.open a { padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-cta.open { display: flex; flex-direction: column; padding: 0 24px 24px; position: fixed; top: auto; background: rgba(8,8,8,0.98); width: 100%; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 1.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .hero { min-height: calc(100vh - 72px); }
  .hero p { font-size: 1rem; }

  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn--lg { padding: 15px 32px; font-size: 0.95rem; }

  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stat-item { padding: 20px 12px; }
  .card { padding: 24px 18px; }
}
