/* ============================================================
   ADB CONSULTING GROUP — MAIN STYLESHEET
   Brand: Navy #1a2e5a | Gold #f0a500 | Orange #e07b20 | White #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --navy:   #1a2e5a;
  --navy2:  #0f1e3d;
  --gold:   #f0a500;
  --orange: #e07b20;
  --light:  #f7f9fc;
  --gray:   #5a6a7e;
  --border: #dce3ef;
  --white:  #ffffff;
  --red:    #c0392b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: #2c3e50;
  background: var(--white);
  line-height: 1.7;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
p  { margin-bottom: 1rem; }
a  { color: var(--orange); text-decoration: none; }
a:hover { color: var(--gold); }

/* ─── NAV ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-brand img {
  height: 52px;
  width: auto;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0 1rem;
  height: 74px;
  line-height: 74px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(240,165,0,0.08);
}
.nav-cta a {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 4px;
  margin-left: 0.5rem;
  padding: 0 1.4rem !important;
}
.nav-cta a:hover { background: var(--gold) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, #1e3a6e 100%);
  color: var(--white);
  padding: 100px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(240,165,0,0.12) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ─── SECTIONS ─── */
.section { padding: 80px 2rem; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 620px; margin: 0.8rem auto 0; }
.section-navy .section-header p { color: rgba(255,255,255,0.75); }

.gold-bar {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ─── CARDS ─── */
.card-grid { display: grid; gap: 1.6rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,46,90,0.12);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), #2a4a8e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.card p { color: var(--gray); font-size: 0.93rem; margin: 0; }

/* ─── STAT STRIP ─── */
.stat-strip {
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  padding: 50px 2rem;
  text-align: center;
}
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.stat-item {}
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.3rem; }

/* ─── FORMS ─── */
.form-section { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #2c3e50;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,46,90,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #66bb6a;
  color: #2e7d32;
  padding: 1rem 1.4rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: 700;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  padding: 60px 2rem 50px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--light);
  padding: 0.7rem 2rem;
  font-size: 0.82rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--orange); }

/* ─── TEAM CARD ─── */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,46,90,0.12); }
.team-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--navy), #2a4a8e);
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-title { color: var(--orange); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
.team-card p { color: var(--gray); font-size: 0.9rem; }

/* ─── TESTIMONIAL ─── */
.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 16px rgba(26,46,90,0.07);
}
.testimonial-card p { font-style: italic; color: var(--gray); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.85rem; }

/* ─── PROCESS STEPS ─── */
.steps { counter-reset: step; display: grid; gap: 1.6rem; }
.step {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
}
.step-num {
  min-width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.3rem; font-size: 1.05rem; }
.step-content p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ─── DISCLOSURE BANNER ─── */
.disclosure-banner {
  background: #7b0000;
  padding: 1rem 2rem;
  text-align: center;
}
.disclosure-banner a {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.disclosure-banner a:hover { color: var(--gold); }
.disc-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,68,68,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255,68,68,0); }
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy2);
  color: rgba(255,255,255,0.75);
  padding: 60px 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.88rem; }
.footer-contact-item .icon { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ─── TABLE ─── */
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: #2c3e50; }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--light); }

/* ─── ACCORDION ─── */
.accordion-item { border: 1px solid var(--border); border-radius: 6px; margin-bottom: 0.6rem; overflow: hidden; }
.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--light); }
.accordion-header.open { background: var(--navy); color: var(--white); }
.accordion-arrow { font-size: 1.1rem; transition: transform 0.3s; }
.accordion-header.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body { display: none; padding: 1.2rem 1.4rem; background: var(--light); color: var(--gray); font-size: 0.93rem; line-height: 1.7; }
.accordion-body.open { display: block; }

/* ─── BADGE ─── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-orange { background: var(--orange); color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0; background: var(--navy2); padding: 1rem 0; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 0.9rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .section { padding: 50px 1.2rem; }
  .hero { padding: 70px 1.2rem 60px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
