/* =====================================================
   ADEEM CONSULTANT — GLOBAL STYLESHEET
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --navy:   #0B1C2E;
  --navy2:  #1A3352;
  --navy3:  #2A4D72;
  --gold:   #C4A050;
  --gold2:  #E8C97A;
  --goldf:  #F5E6B8;
  --white:  #FFFFFF;
  --ivory:  #F5F3EF;
  --ivory2: #EDE9E0;
  --gray:   #555555;
  --lgray:  #9CA3AF;
  --green:  #1D6B44;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  --ease:   cubic-bezier(0.4,0,0.2,1);
  --trans:  all 0.35s var(--ease);
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--navy); color: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(11,28,46,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,160,80,0.15);
  height: 62px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 38px; width: 38px; object-fit: contain; }
.nav-logo-text { line-height: 1; }
.nav-logo-name { font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--white); letter-spacing: 0.04em; }
.nav-logo-sub  { font-size: 0.58rem; color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lgray);
  transition: color 0.3s; 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: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 22px; border-radius: 2px; font-weight: 600 !important;
  letter-spacing: 0.08em !important; transition: var(--trans) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold2) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--trans); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: var(--navy); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--white); transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; line-height: 1; }

/* ── PAGE HERO BANNER ────────────────────────────── */
.page-hero {
  min-height: 52vh; padding: 140px 5vw 80px;
  display: flex; align-items: center;
  background: var(--navy); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0 L60 17 L60 51 L30 68 L0 51 L0 17Z' fill='none' stroke='%23C4A050' stroke-width='1'/%3E%3Cpath d='M30 52 L60 69 L60 103 L30 120 L0 103 L0 69Z' fill='none' stroke='%23C4A050' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 104px;
}
.page-hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,160,80,0.1) 0%, transparent 70%);
  top: -10%; right: -5%; border-radius: 50%; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 1280px; width: 100%; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1.2rem; font-size: 0.72rem; color: var(--lgray); }
.breadcrumb a { color: var(--gold); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold2); }
.breadcrumb span { color: var(--lgray); }
.page-hero-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.page-hero-tag-line { width: 28px; height: 1px; background: var(--gold); }
.page-hero-title { font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 700; line-height: 1.08; color: var(--white); margin-bottom: 1.2rem; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 1rem; line-height: 1.8; color: var(--lgray); max-width: 560px; }

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 100px 0; }
.section-ivory { background: var(--ivory); }
.section-navy2 { background: var(--navy2); }
.section-white { background: var(--white); }

.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.section-label-line { width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.12; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 0.95rem; line-height: 1.8; max-width: 540px; }
.gold-rule { width: 44px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); margin: 1.2rem 0; }

/* Color helpers */
.text-navy   { color: var(--navy); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-lgray  { color: var(--lgray); }
.text-white  { color: var(--white); }
.text-ivory  { color: var(--ivory); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 13px 30px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--gold); border-radius: 2px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: translateX(-100%); transition: transform 0.4s var(--ease); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  padding: 12px 28px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--gold); border-radius: 2px; transition: var(--trans);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 12px 28px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 2px; transition: var(--trans);
}
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVEAL ANIMATIONS ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }

/* ── CARDS ───────────────────────────────────────── */
.card-navy { background: var(--navy2); border: 1px solid rgba(196,160,80,0.08); border-radius: 4px; overflow: hidden; transition: var(--trans); }
.card-navy:hover { border-color: rgba(196,160,80,0.25); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.25); }
.card-ivory { background: var(--white); border-radius: 4px; overflow: hidden; transition: var(--trans); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.card-ivory:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.card-gold-top { border-top: 2px solid var(--gold); }

/* ── GOLD GRADIENT BAR ───────────────────────────── */
.gold-bar-h { height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold)); }
.gold-bar-v { width: 2px; background: linear-gradient(180deg, var(--gold), var(--gold2)); }

/* ── FORM ELEMENTS ───────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--ivory); border: 1px solid var(--ivory2);
  border-radius: 2px; padding: 12px 14px;
  font-family: var(--sans); font-size: 0.88rem; color: var(--navy);
  outline: none; transition: border-color 0.3s, box-shadow 0.3s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,160,80,0.12); background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--lgray); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-btn {
  width: 100%; padding: 14px; background: var(--navy); color: var(--white);
  border: 2px solid var(--navy); border-radius: 2px;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: var(--trans); margin-top: 0.5rem;
}
.form-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── HEX PATTERN BG ──────────────────────────────── */
.hex-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0 L60 17 L60 51 L30 68 L0 51 L0 17Z' fill='none' stroke='%23C4A050' stroke-width='1'/%3E%3Cpath d='M30 52 L60 69 L60 103 L30 120 L0 103 L0 69Z' fill='none' stroke='%23C4A050' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 104px;
}

/* ── STAT ITEMS ───────────────────────────────────── */
.stat-block { text-align: center; padding: 2rem; }
.stat-num { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
.stat-label { font-size: 0.7rem; color: var(--lgray); letter-spacing: 0.18em; text-transform: uppercase; }

/* ── TEAM CARD ────────────────────────────────────── */
.team-card { background: var(--white); border-radius: 4px; overflow: hidden; transition: var(--trans); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); }
.team-avatar-box { background: var(--navy); height: 180px; display: flex; align-items: center; justify-content: center; position: relative; }
.team-initials { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); border: 1.5px solid rgba(196,160,80,0.4); border-radius: 50%; }
.team-gold-strip { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 0.73rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.team-bio { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIAL ──────────────────────────────────── */
.testi-card { background: var(--navy2); border: 1px solid rgba(196,160,80,0.08); border-radius: 4px; padding: 2.5rem; transition: var(--trans); }
.testi-card:hover { border-color: rgba(196,160,80,0.25); transform: translateY(-4px); }
.testi-quote { font-family: var(--serif); font-size: 3rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 1rem; }
.testi-text { font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.75; color: var(--white); margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 42px; height: 42px; background: rgba(196,160,80,0.15); border: 1px solid rgba(196,160,80,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.testi-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.7rem; color: var(--lgray); margin-top: 2px; }

/* ── TAG PILL ─────────────────────────────────────── */
.tag { display: inline-block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(196,160,80,0.08); border: 1px solid rgba(196,160,80,0.2); padding: 3px 10px; border-radius: 2px; }
.tag-dark { color: var(--lgray); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--navy); border-top: 1px solid rgba(196,160,80,0.1); }
.footer-top { max-width: 1280px; margin: 0 auto; padding: 70px 5vw 50px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.footer-brand-row img { height: 38px; width: 38px; object-fit: contain; }
.footer-brand-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 0.82rem; line-height: 1.75; color: var(--lgray); margin-bottom: 1.8rem; max-width: 270px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 34px; height: 34px; border: 1px solid rgba(196,160,80,0.2); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--lgray); transition: var(--trans); }
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,160,80,0.08); }
.footer-social svg { width: 13px; height: 13px; }
.footer-col-title { font-size: 0.7rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.82rem; color: var(--lgray); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 5vw; max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.73rem; color: var(--lgray); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.73rem; color: var(--lgray); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ── BACK TO TOP ──────────────────────────────────── */
.back-top { position: fixed; bottom: 2rem; right: 2rem; width: 42px; height: 42px; background: var(--gold); color: var(--navy); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--trans); z-index: 900; box-shadow: 0 4px 20px rgba(196,160,80,0.35); }
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold2); transform: translateY(-3px); }
.back-top svg { width: 16px; height: 16px; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { min-height: 44vh; padding: 120px 5vw 60px; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: 2rem; }
}
