/* ═══════════════════════════════════════════
   VELROX – OIL TRADING COMPANY
   Dark / Gold Premium Theme
═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #9A7A2E;
  --bg:         #0D0D0D;
  --bg2:        #111111;
  --bg3:        #161616;
  --surface:    #1A1A1A;
  --surface2:   #222222;
  --border:     rgba(201,168,76,.18);
  --text:       #E8E0D0;
  --text-muted: #8A8070;
  --red:        #C8372D;
  --green:      #1B7A3E;
  --white:      #F5F0E8;
  --radius:     12px;
  --trans:      .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Arabic / RTL ── */
html[lang="ar"] body,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select,
html[lang="ar"] button {
  font-family: 'Cairo', sans-serif;
}
html[lang="ar"] .section-title,
html[lang="ar"] .hero-title,
html[lang="ar"] .service-card h3,
html[lang="ar"] .pillar h3,
html[lang="ar"] .footer-links h4,
html[lang="ar"] .footer-contact h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}
html[lang="ar"] .section-label,
html[lang="ar"] .nav-links a,
html[lang="ar"] .btn-primary,
html[lang="ar"] .btn-outline,
html[lang="ar"] .btn-nav {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}
html[lang="ar"] .hero-badge { letter-spacing: .05em; }
html[lang="ar"] .ticker-track { direction: rtl; }

/* RTL layout flips */
html[dir="rtl"] .two-col       { direction: rtl; }
html[dir="rtl"] .nav-inner     { flex-direction: row-reverse; }
html[dir="rtl"] .nav-right     { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links     { flex-direction: row-reverse; }
html[dir="rtl"] .hero-cta      { flex-direction: row-reverse; justify-content: center; }
html[dir="rtl"] .check-list li { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .contact-item  { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .about-flag    { flex-direction: row-reverse; }
html[dir="rtl"] .footer-uae    { flex-direction: row-reverse; }
html[dir="rtl"] .footer-inner  { direction: rtl; }
html[dir="rtl"] .footer-bottom { direction: rtl; }
html[dir="rtl"] .comm-item     { flex-direction: row-reverse; }
html[dir="rtl"] .form-note     { direction: rtl; }
html[dir="rtl"] .stat-card     { direction: rtl; }
html[dir="rtl"] .contact-info  { text-align: right; }
html[dir="rtl"] .contact-info .section-label { text-align: right; }
html[dir="rtl"] .pillar        { text-align: right; }
html[dir="rtl"] .service-card  { text-align: right; }
html[dir="rtl"] .about-text    { text-align: right; }
html[dir="rtl"] .about-text .check-list li { text-align: right; }
html[dir="rtl"] .footer-dev    { direction: rtl; }

/* Mobile RTL nav */
html[dir="rtl"] .nav-links a::after { transform-origin: right; }
html[dir="rtl"] @media (max-width: 768px) {
  .nav-links { align-items: flex-end; }
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.gold { color: var(--gold); }
.center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ── Section Labels / Titles ── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}
.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-align: center;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D0D;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,var(--gold-light),var(--gold));
  opacity: 0;
  transition: var(--trans);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,.35); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,.25);
}

/* ════════════════════════  NAVBAR  ════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.navbar.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.4));
  transition: var(--trans);
}
.nav-logo:hover img { filter: drop-shadow(0 0 14px rgba(201,168,76,.7)); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #0D0D0D !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: var(--trans) !important;
}
.btn-nav::after { display: none; }
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

/* ── Language Toggle ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: var(--gold);
  color: #0D0D0D;
}
html[lang="ar"] .lang-toggle {
  font-family: 'Cairo', sans-serif;
  letter-spacing: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════  HERO  ════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #1a1200 0%, #0D0D0D 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-100vh) scale(.3); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(201,168,76,.06);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeDown .8s .15s ease both;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 44px;
  line-height: 1.8;
  animation: fadeDown .8s .3s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .8s .45s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: fadeIn 1.2s 1s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.6); opacity: .5; }
}

/* ════════════════════════  TICKER  ═══════════════════════ */
.ticker-wrap {
  background: linear-gradient(135deg, #1a1400, #120E00);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 35s linear infinite;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════  ABOUT  ═══════════════════════ */
.about { background: var(--bg2); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  display: flex;
  justify-content: center;
}
.about-logo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  filter: drop-shadow(0 0 40px rgba(201,168,76,.25));
  transition: var(--trans);
}
.about-logo:hover { filter: drop-shadow(0 0 60px rgba(201,168,76,.4)); transform: scale(1.02); }
.about-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-flag {
  display: flex;
  gap: 6px;
  margin-top: 24px;
  justify-content: center;
}
.flag-stripe { display: block; height: 5px; width: 80px; border-radius: 2px; }
.flag-stripe.red   { background: #EF3340; }
.flag-stripe.green { background: #009A44; }
.flag-stripe.white { background: #FFFFFF; }
.flag-stripe.black { background: #000000; }

.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23C9A84C' stroke-width='1.5'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ═══════════════════════  SERVICES  ══════════════════════ */
.services { background: var(--bg3); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.4); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--trans);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════  WHY US  ═══════════════════════ */
.why-us {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.why-bg-art {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.04) 0%, transparent 70%);
  pointer-events: none;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
  margin-top: 56px;
}
.pillar { position: relative; padding-top: 16px; border-top: 1px solid var(--border); transition: var(--trans); }
.pillar:hover { border-color: var(--gold); }
.pillar-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  opacity: .25;
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--trans);
}
.pillar:hover .pillar-num { opacity: .7; }
.pillar h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.pillar p { font-size: .91rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════  STATS  ═══════════════════════ */
.stats {
  background: linear-gradient(135deg, #0e0900, #0D0D0D);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  display: inline;
}
.stat-label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 600;
}

/* ══════════════════════  COMMODITIES  ════════════════════ */
.commodities { background: var(--bg3); }
.comm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.comm-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--trans);
}
.comm-item:hover {
  border-color: rgba(201,168,76,.5);
  background: var(--surface2);
  color: var(--gold);
  transform: translateX(4px);
}
.comm-dot {
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ════════════════════════  CONTACT  ══════════════════════ */
.contact { background: var(--bg2); }
.contact-layout { gap: 80px; align-items: flex-start; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-item p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: .95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.full-w { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }
.form-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: -8px; }

/* ════════════════════════  FOOTER  ═══════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.3));
}
.footer-brand p { font-size: .92rem; color: var(--text-muted); line-height: 1.8; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Cinzel', serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .05em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .9rem; color: var(--text-muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: .9rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-uae { display: flex; gap: 5px; margin-top: 20px; }
.flag-stripe-sm { display: block; height: 4px; width: 32px; border-radius: 2px; }
.flag-stripe-sm.red   { background: #EF3340; }
.flag-stripe-sm.green { background: #009A44; }
.flag-stripe-sm.white { background: #FFFFFF; }
.flag-stripe-sm.black { background: #000000; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-dev {
  margin-top: 6px;
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-dev a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-dev a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

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

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════  RESPONSIVE  ═══════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .comm-grid      { grid-template-columns: repeat(3, 1fr); }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,.98); backdrop-filter: blur(16px);
    padding: 32px 24px; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--border); width: 100%; font-size: 1rem; }
  .btn-nav { margin-top: 16px; width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .services-grid  { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .comm-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-inner   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .contact-form   { padding: 32px 24px; }
  .br-desk        { display: none; }
}

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .comm-grid   { grid-template-columns: 1fr; }
  .hero-cta    { flex-direction: column; align-items: center; }
}
