/* =======================================================================
   WAQOOD — Corporate Website Stylesheet
   Brand: Navy #003D61 + Gold #D4A017 (from official logo)
   ======================================================================= */

:root {
  --navy: #003D61;
  --navy-900: #002a43;
  --navy-700: #014e7b;
  --navy-500: #1d6a9d;
  --gold: #D4A017;
  --gold-600: #b7880d;
  --gold-100: #fff3d1;
  --ink: #0e1c2a;
  --muted: #5a6b7a;
  --line: #e5ecf3;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --bg-dark: #021c2e;
  --danger: #c62828;
  --ok: #2e7d32;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 61, 97, 0.06);
  --shadow: 0 10px 30px rgba(0, 61, 97, 0.10);
  --shadow-lg: 0 20px 50px rgba(0, 61, 97, 0.15);
  --max: 1200px;
  --nav-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4 { color: var(--navy); margin: 0 0 .6em; line-height: 1.3; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ==========================  NAVBAR  ========================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 8px; padding-inline-end: 22px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-ar { font-weight: 900; font-size: 1.25rem; color: var(--navy); line-height: 1; }
.brand-en { font-size: .7rem; color: var(--gold-600); letter-spacing: .2em; font-weight: 700; }
.menu { display: flex; gap: 6px; align-items: center; flex-wrap: nowrap; }
.menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  position: relative;
  white-space: nowrap;
  word-break: keep-all;
}
.menu a:hover { background: var(--bg-alt); color: var(--navy); }
.menu a.active { color: var(--navy); }
.menu a.active::after {
  content: '';
  position: absolute;
  inset: auto 12px 4px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--navy);
}

/* ==========================  BUTTONS  ========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-weight: 700;
  font-family: inherit; font-size: .95rem; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  border: 1px solid transparent; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-900); color: #fff; }
.btn-accent { background: var(--gold); color: var(--navy-900); }
.btn-accent:hover { background: var(--gold-600); color: #fff; box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ==========================  HERO  ========================== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,61,97,.92) 0%, rgba(0,42,67,.95) 100%),
    radial-gradient(circle at 20% 20%, #014e7b 0%, transparent 60%),
    var(--navy-900);
  color: #fff;
  overflow: hidden;
  padding: clamp(48px, 9vw, 120px) 0 clamp(48px, 9vw, 120px);
  border-bottom: 4px solid var(--gold);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(212,160,23,.18) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(212,160,23,.12) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; }
.kicker {
  display: inline-block;
  background: rgba(212,160,23,.18);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .05em;
  margin-bottom: 20px;
  border: 1px solid rgba(212,160,23,.35);
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.stat b {
  display: block;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}
.stat span { color: rgba(255,255,255,.75); font-size: .9rem; }

/* Hero visual (logo halo) */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.logo-halo {
  position: relative;
  width: min(380px, 80%);
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: radial-gradient(circle, rgba(212,160,23,.2) 0%, transparent 70%);
  border-radius: 50%;
  padding: 30px;
  animation: float 6s ease-in-out infinite;
}
.logo-halo::before, .logo-halo::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; border: 1px dashed rgba(212,160,23,.3);
  animation: spin 30s linear infinite;
}
.logo-halo::after { inset: 15px; border-color: rgba(255,255,255,.1); animation-duration: 40s; animation-direction: reverse; }
.logo-halo img { filter: drop-shadow(0 10px 30px rgba(212,160,23,.3)); position: relative; z-index: 1; max-height: 80%; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes spin { to { transform: rotate(360deg); } }

/* Page hero (shorter, inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: 80px 0 64px;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(212,160,23,.15), transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 700px; margin-top: 12px; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: #fff; }

/* ==========================  SECTIONS  ========================== */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-900); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .muted { color: rgba(255,255,255,.7); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .kicker { background: var(--gold-100); color: var(--gold-600); border-color: rgba(212,160,23,.4); }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); max-width: 700px; margin: 0 auto; }

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

/* ==========================  CARDS  ========================== */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(212,160,23,.5); }
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: start;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; inset-inline-end: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(212,160,23,.15), transparent 70%);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,61,97,.2);
}
.feature-card h3 { color: var(--navy); margin-bottom: 10px; }
.feature-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--gold-100);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 1.8rem; margin-bottom: 20px;
  border: 2px solid rgba(212,160,23,.3);
}
.service h3 { color: var(--navy); }
.service ul { padding: 0; margin: 14px 0 0; list-style: none; }
.service ul li {
  padding: 6px 0;
  padding-inline-start: 22px;
  position: relative;
  color: var(--muted);
  font-size: .92rem;
}
.service ul li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold-600);
  font-weight: bold;
}

/* Station cards */
.stations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.station-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.station-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.station-media {
  height: 170px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 3rem;
}
.station-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.station-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,42,67,.55) 100%);
}
.station-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.station-body h4 { color: var(--navy); margin: 0 0 6px; font-size: 1.15rem; font-weight: 800; }
.station-region {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-600); font-size: .85rem; font-weight: 700;
  margin-bottom: 10px;
}
.station-meta { display: flex; gap: 14px; font-size: .82rem; color: var(--muted); margin-top: auto; padding-top: 14px; }
.station-meta span { display: inline-flex; gap: 4px; align-items: center; }

/* Filter bar */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 36px;
}
.filter-bar button {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  font-size: .9rem;
}
.filter-bar button:hover { border-color: var(--gold); }
.filter-bar button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(0,61,97,.95), rgba(0,42,67,.95)),
    radial-gradient(circle at 80% 0%, rgba(212,160,23,.2), transparent 60%);
  color: #fff;
  padding: 60px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; margin: 0 0 8px; }
.cta-inner p { color: rgba(255,255,255,.8); margin: 0; max-width: 560px; }

/* Lists with icons */
.icon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.icon-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.icon-list li:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.icon-list .ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold-100);
  color: var(--navy);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 1.1rem;
}
.icon-list strong { color: var(--navy); display: block; margin-bottom: 2px; }
.icon-list span { color: var(--muted); font-size: .9rem; }

/* KPI row */
.kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: ''; position: absolute; top: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-600));
}
.kpi b {
  display: block; font-size: 2.6rem; color: var(--navy);
  font-weight: 900; line-height: 1;
}
.kpi span { color: var(--muted); font-size: .9rem; }

/* Timeline */
.timeline { position: relative; padding-inline-start: 30px; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  inset-inline-start: 8px;
  width: 2px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; top: 6px;
  inset-inline-start: -26px;
  width: 16px; height: 16px;
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--navy);
}
.timeline-item h4 { color: var(--navy); margin-bottom: 4px; }
.timeline-item span { color: var(--gold-600); font-weight: 700; font-size: .85rem; }

/* Accordion */
.accordion { display: grid; gap: 12px; }
.accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: border-color .2s;
}
.accordion details[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.accordion summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  color: var(--gold-600);
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform .2s;
}
.accordion details[open] summary::after { content: '−'; }
.accordion details p { color: var(--muted); margin: 14px 0 0; }

/* Certificates / badges row */
.badges-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: center; }
.badge-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.badge-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; color: var(--navy); font-size: .9rem; }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* Info box */
.info-box {
  background: var(--gold-100);
  border: 1px solid rgba(212,160,23,.4);
  border-inline-start: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box strong { color: var(--navy); }

/* Prose blocks */
.prose h3 { margin-top: 28px; }
.prose ul { margin: 10px 0 16px; padding-inline-start: 22px; }
.prose ul li { margin: 6px 0; color: var(--muted); }

/* Rights grid (numbered cards) */
.rights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.right-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.right-item::before {
  content: ''; position: absolute; top: 0; inset-inline-start: 0;
  width: 6px; height: 100%; background: linear-gradient(180deg, var(--gold), var(--gold-600));
}
.right-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.right-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.3rem;
}
.right-body strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 1.02rem; }
.right-body span { color: var(--muted); font-size: .9rem; }

/* Golden Cycle steps */
.cycle-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 28px;
}
.cycle-step { text-align: center; position: relative; }
.cycle-step .bubble {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 2rem; margin: 0 auto 12px;
  box-shadow: 0 10px 25px rgba(0,61,97,.2);
  border: 3px solid #fff;
  outline: 2px dashed rgba(212,160,23,.4);
  outline-offset: 4px;
}
.cycle-step.gold .bubble { background: linear-gradient(135deg, var(--gold), var(--gold-600)); color: #fff; }
.cycle-step strong { color: var(--navy); display: block; }
.cycle-step small { color: var(--muted); font-size: .8rem; }
@media (max-width: 800px) {
  .cycle-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .cycle-row { grid-template-columns: repeat(2, 1fr); }
}

/* LAST cards */
.last-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.last-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 20px;
  border-top: 4px solid var(--gold);
  transition: all .25s;
}
.last-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.last-letter {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-100); color: var(--navy);
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.5rem;
  margin-bottom: 14px;
}
.last-card h4 { color: var(--navy); margin: 0 0 8px; font-size: 1.05rem; }
.last-card p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 760px) { .last-grid { grid-template-columns: repeat(2, 1fr); } }

/* Escalation & table */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.data-table th { background: var(--navy); color: #fff; padding: 14px 16px; text-align: start; font-weight: 700; font-size: .92rem; }
.data-table td { padding: 14px 16px; border-top: 1px solid var(--line); color: var(--ink); font-size: .93rem; vertical-align: top; }
.data-table tr:nth-child(even) td { background: var(--bg-alt); }
.data-table .level-1 { color: #2e7d32; font-weight: 800; }
.data-table .level-2 { color: var(--gold-600); font-weight: 800; }
.data-table .level-3 { color: #c62828; font-weight: 800; }

/* Compensation cards */
.comp-list { display: grid; gap: 14px; }
.comp-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  display: grid; grid-template-columns: 60px 1fr auto; gap: 18px; align-items: center;
  border-inline-start: 5px solid var(--gold);
}
.comp-item.minor { border-inline-start-color: #2e7d32; }
.comp-item.moderate { border-inline-start-color: var(--gold); }
.comp-item.major { border-inline-start-color: #c62828; }
.comp-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg-alt);
  font-size: 1.6rem;
}
.comp-body strong { color: var(--navy); display: block; font-size: 1.02rem; }
.comp-body p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }
.comp-action {
  background: var(--gold-100); color: var(--navy-900);
  padding: 8px 14px; border-radius: 8px;
  font-weight: 700; font-size: .85rem; white-space: nowrap;
}
@media (max-width: 720px) {
  .comp-item { grid-template-columns: 1fr; }
  .comp-action { white-space: normal; }
}

/* Alert box (negative) */
.alert-box {
  background: #fff5f5;
  border: 1px solid #fbb;
  border-inline-start: 4px solid #c62828;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px 0;
  color: #5a1010;
}
.alert-box strong { color: #c62828; }

/* ==========================  CS — ENVIRONMENT & TEAM  ========================== */

/* 3-Second Rule equation box */
.quality-equation {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  margin: 24px 0;
  border: 2px solid rgba(212,160,23,.3);
}
.quality-equation h3 { color: var(--gold); font-size: 1.2rem; margin: 0 0 12px; }
.quality-equation .eq { font-size: 1.15rem; font-weight: 700; color: #fff; }
.quality-equation .eq span.plus { color: var(--gold); margin: 0 8px; font-weight: 900; }

/* Environment grid — 4 cards with round icons */
.env-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.env-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.env-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.env-card .env-ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.env-card h4 { margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.env-card p { margin: 0; color: var(--muted); font-size: .93rem; }
@media (max-width: 760px) { .env-grid { grid-template-columns: 1fr; } }

/* Fuel identity cards */
.fuel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.fuel-card {
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.fuel-card.g91 { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.fuel-card.g95 { background: linear-gradient(135deg, #c62828, #8b0000); }
.fuel-card.dsl { background: linear-gradient(135deg, #f9a825, #e65100); }
.fuel-card .fuel-no { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.fuel-card .fuel-name { font-size: 1.05rem; font-weight: 700; margin-top: 8px; }
.fuel-card .fuel-meta { font-size: .85rem; color: rgba(255,255,255,.85); margin-top: 10px; }
@media (max-width: 760px) { .fuel-grid { grid-template-columns: 1fr; } }

/* Uniform guide — 4 cards */
.uniform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.uniform-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.uniform-item .u-ico {
  font-size: 2rem;
  width: 64px; height: 64px;
  background: var(--gold-100);
  color: var(--gold-600);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.uniform-item h4 { margin: 6px 0; color: var(--navy); font-size: 1rem; }
.uniform-item p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 960px) { .uniform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uniform-grid { grid-template-columns: 1fr; } }

/* Standard welcome script */
.script-box {
  background: #fffdf5;
  border: 1px solid rgba(212,160,23,.3);
  border-inline-start: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  margin: 24px 0;
}
.script-box h4 { margin: 0 0 14px; color: var(--gold-600); font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.script-box blockquote {
  margin: 0; padding: 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 2;
}

/* Do's vs Don'ts table */
.dos-donts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.dos-donts .col { padding: 0; }
.dos-donts .col-head {
  padding: 14px 18px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: 1rem;
}
.dos-donts .col-dos .col-head { background: #2e7d32; }
.dos-donts .col-donts .col-head { background: #c62828; }
.dos-donts ul { list-style: none; padding: 0; margin: 0; background: #fff; }
.dos-donts li { padding: 14px 18px; border-top: 1px solid var(--line); font-size: .92rem; }
.dos-donts li:first-child { border-top: none; }
.dos-donts li strong { color: var(--navy); display: block; margin-bottom: 4px; }
.dos-donts .col-donts li strong { color: #c62828; }
@media (max-width: 760px) { .dos-donts { grid-template-columns: 1fr; } }

/* Customer types — 4 cards */
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.type-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  border-inline-start: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.type-card.angry { border-color: #c62828; }
.type-card.elderly { border-color: #0275d8; }
.type-card.hesitant { border-color: var(--gold); }
.type-card.chatty { border-color: #2e7d32; }
.type-card h4 { margin: 0 0 8px; color: var(--navy); font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.type-card .type-ico { font-size: 1.4rem; }
.type-card p { margin: 0 0 10px; font-size: .92rem; color: var(--muted); }
.type-card .do-tag, .type-card .dont-tag { font-size: .85rem; display: block; margin-top: 6px; }
.type-card .do-tag strong { color: #2e7d32; }
.type-card .dont-tag strong { color: #c62828; }
@media (max-width: 760px) { .types-grid { grid-template-columns: 1fr; } }

/* Prohibitions — warning cards */
.prohibit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.prohibit-card {
  display: flex;
  gap: 16px;
  background: #fff5f5;
  border: 2px solid #fbb;
  border-radius: var(--radius);
  padding: 20px;
}
.prohibit-card .p-ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: #c62828;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.prohibit-card h4 { margin: 0 0 6px; color: #c62828; font-size: 1rem; }
.prohibit-card p { margin: 0; font-size: .88rem; color: #5a1010; line-height: 1.6; }
@media (max-width: 760px) { .prohibit-grid { grid-template-columns: 1fr; } }

/* KPI dashboard for CS page */
.cs-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.cs-kpi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cs-kpi-card::before {
  content: '';
  position: absolute; top: 0; inset-inline: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.cs-kpi-card .k-title { font-size: .88rem; color: var(--muted); font-weight: 600; }
.cs-kpi-card .k-value { font-size: 2.4rem; font-weight: 900; color: var(--navy); margin: 10px 0 6px; line-height: 1; }
.cs-kpi-card .k-target {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  padding: 3px 10px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
}
.cs-kpi-card .k-desc { font-size: .82rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }
@media (max-width: 960px) { .cs-kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cs-kpi-grid { grid-template-columns: 1fr; } }

/* Mystery shopper scorecard */
.scorecard {
  background: #fffdf5;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}
.scorecard h3 { color: var(--gold-600); text-align: center; margin: 0 0 14px; }

/* PDCA — 4 steps */
.pdca-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.pdca-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 5px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.pdca-step.p { border-color: #0275d8; }
.pdca-step.d { border-color: #2e7d32; }
.pdca-step.c { border-color: var(--gold); }
.pdca-step.a { border-color: #c62828; }
.pdca-step .letter {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}
.pdca-step.p .letter { color: #0275d8; }
.pdca-step.d .letter { color: #2e7d32; }
.pdca-step.c .letter { color: var(--gold-600); }
.pdca-step.a .letter { color: #c62828; }
.pdca-step h4 { margin: 4px 0 8px; color: var(--navy); font-size: 1rem; }
.pdca-step p { margin: 0; font-size: .88rem; color: var(--muted); }
@media (max-width: 960px) { .pdca-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdca-grid { grid-template-columns: 1fr; } }

/* 3V Communication pie */
.comm-3v {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.comm-3v .v-item {
  text-align: center;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}
.comm-3v .v-pct { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.comm-3v .v-name { font-size: .95rem; color: var(--gold-600); font-weight: 700; margin-top: 6px; }
.comm-3v .v-label { font-size: .82rem; color: var(--muted); margin-top: 4px; }
@media (max-width: 760px) { .comm-3v { grid-template-columns: 1fr; } }

/* ==========================  FOOTER  ========================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
  border-top: 4px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-ar { color: #fff; }
.footer .links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer .links a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer .links a:hover { color: var(--gold); }
.footer .links li { display: flex; gap: 10px; align-items: center; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
}
.social-row a:hover { background: var(--gold); color: var(--navy-900); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ==========================  RESPONSIVE  ========================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .stats { justify-content: center; }
  .hero-visual { order: -1; }
  .logo-halo { width: min(240px, 70%); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .menu { display: none; }
  .menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); inset-inline: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px; gap: 4px;
    box-shadow: var(--shadow);
  }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .stats { gap: 20px; }
  .stat b { font-size: 1.8rem; }
  .cta-inner { flex-direction: column; text-align: center; align-items: stretch; }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
