/* ============================================================
   Dawnebridge Consulting — Main Stylesheet
   Design: Corporate Prestige | Navy × Gold × Warm White
   Fonts: Cormorant Garamond (display) + DM Sans (body)
============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --navy-900:   #0a1628;
  --navy-800:   #0e2040;
  --navy-700:   #152b55;
  --navy-600:   #1e3d6e;
  --navy-500:   #2b5490;
  --gold-500:   #c49a2a;
  --gold-400:   #d4aa44;
  --gold-300:   #e8c96a;
  --gold-100:   #fdf6e3;
  --cream:      #faf8f4;
  --warm-white: #ffffff;
  --slate-600:  #4a5568;
  --slate-400:  #718096;
  --slate-200:  #e2e8f0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-900);
  background: var(--warm-white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }

/* ── Utility Classes ─────────────────────────────────────── */
.text-gold   { color: var(--gold-400) !important; }
.bg-navy     { background: var(--navy-800) !important; }
.bg-cream    { background: var(--cream) !important; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gold-400);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-800);
}
.section-title.light { color: var(--warm-white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  max-width: 600px;
  margin: 0 auto;
}
.section-subtitle.light { color: rgba(255,255,255,.75); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  border: none;
  border-radius: var(--radius-sm);
  padding: .65rem 1.6rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(196,154,42,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,154,42,.45);
}
.btn-navy {
  background: var(--navy-700);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  padding: .65rem 1.6rem;
  transition: var(--transition);
}
.btn-navy:hover {
  background: var(--navy-600);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-gold {
  border: 2px solid var(--gold-400);
  color: var(--gold-400);
  background: transparent;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .6rem 1.6rem;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.top-bar {
  background: var(--navy-900);
  padding: .55rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(196,154,42,.2);
}
.top-bar a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.top-bar a:hover { color: var(--gold-400); }
.top-bar .social-links a { font-size: 1rem; }

/* ── Navbar ──────────────────────────────────────────────── */
#mainNav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--slate-200);
  padding: .9rem 0;
  transition: var(--transition);
  z-index: 1030;
}
#mainNav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: .6rem 0;
}

/* Brand */
.brand-logo-box {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo-lg { width: 54px; height: 54px; border-radius: 14px; }
.brand-initial {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.1;
}
.brand-tagline {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  line-height: 1;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy-700) !important;
  padding: .5rem .8rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-500) !important;
  background: var(--gold-100);
}
.navbar-toggler {
  border: none;
  padding: 0;
  background: none;
}
.toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--navy-800);
}

/* Mega Dropdown */
.mega-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  background: var(--warm-white);
  min-width: 320px;
  border-top: 3px solid var(--gold-400);
}
.mega-menu .dropdown-item {
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy-700);
  padding: .55rem .9rem;
  transition: var(--transition);
}
.mega-menu .dropdown-item:hover {
  background: var(--gold-100);
  color: var(--gold-500);
}
.mega-menu .dropdown-item i {
  color: var(--gold-400);
  width: 18px;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,154,42,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,154,42,.06) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c49a2a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-gold-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--gold-400), transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,42,.15);
  border: 1px solid rgba(196,154,42,.3);
  color: var(--gold-300);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .gold-accent {
  color: var(--gold-400);
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  line-height: 1.3;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 340px; }
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  color: white;
}
.hero-card.card-main { position: relative; z-index: 2; }
.hero-card.card-back {
  position: absolute;
  top: -20px; right: -25px;
  width: 90%;
  opacity: .6;
  z-index: 1;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 1rem;
}
.hero-card h5 {
  font-size: .95rem;
  font-weight: 600;
  color: white;
  margin-bottom: .4rem;
}
.hero-card p { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }
.hero-floating-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: .75rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.hero-floating-badge span { display: block; font-size: 1.3rem; font-weight: 800; }

/* ── Stats Band ───────────────────────────────────────────── */
.stats-band {
  background: var(--navy-900);
  padding: 55px 0;
  border-bottom: 1px solid rgba(196,154,42,.2);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .5rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
  min-height: 60px;
}

/* ── Services ─────────────────────────────────────────────── */
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196,154,42,.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-box {
  width: 58px; height: 58px;
  background: var(--gold-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-500);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--navy-900);
}
.service-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--navy-800);
}
.service-card p {
  font-size: .88rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--navy-700); }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-section { background: var(--cream); }
.why-feature {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.why-feature-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-400);
}
.why-feature h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--navy-800);
}
.why-feature p {
  font-size: .88rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}
.why-image-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.why-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(196,154,42,.1) 0%, transparent 70%);
}
.why-experience-badge {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.why-exp-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.why-exp-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.why-image-content { position: relative; z-index: 2; }
.why-image-content h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: .75rem;
}
.why-image-content p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.2rem;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--navy-900); }
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(196,154,42,.3);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-400);
  font-family: var(--font-display);
  margin-bottom: .5rem;
}
.testimonial-text {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: white;
  font-size: .9rem;
}
.testimonial-title {
  font-size: .78rem;
  color: var(--gold-300);
}
.stars { color: var(--gold-400); font-size: .85rem; margin-bottom: 1rem; }

/* ── Team Cards ───────────────────────────────────────────── */
.team-card {
  background: var(--warm-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card-header {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,154,42,.15) 0%, transparent 70%);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 auto 1rem;
  border: 3px solid rgba(255,255,255,.2);
  position: relative;
  z-index: 1;
}
.team-card-header h5 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: .25rem;
  position: relative; z-index: 1;
}
.team-role {
  font-size: .8rem;
  color: var(--gold-300);
  font-weight: 500;
  position: relative; z-index: 1;
}
.team-card-body { padding: 1.5rem; }
.team-bio {
  font-size: .86rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.team-social a {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--gold-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: .9rem;
  transition: var(--transition);
  margin-right: .4rem;
}
.team-social a:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

/* ── Insights / Blog ─────────────────────────────────────── */
.insight-card {
  background: var(--warm-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.insight-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.insight-card-img i {
  font-size: 3rem;
  color: rgba(196,154,42,.4);
}
.insight-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold-400);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.insight-body { padding: 1.5rem; }
.insight-date { font-size: .8rem; color: var(--slate-400); margin-bottom: .75rem; }
.insight-body h5 {
  font-size: 1.05rem;
  color: var(--navy-800);
  line-height: 1.4;
  margin-bottom: .75rem;
  transition: var(--transition);
}
.insight-card:hover .insight-body h5 { color: var(--gold-500); }
.insight-excerpt { font-size: .86rem; color: var(--slate-600); line-height: 1.65; }
.insight-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.insight-author { font-size: .8rem; color: var(--slate-400); }
.insight-read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.insight-read-more:hover { gap: 9px; color: var(--navy-700); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,154,42,.1) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: white;
}
.cta-subtitle { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}
.form-label { font-size: .86rem; font-weight: 600; color: var(--navy-700); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  padding: .65rem .95rem;
  transition: var(--transition);
  background: var(--cream);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(196,154,42,.15);
  background: white;
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.info-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--gold-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-500);
}
.info-item h6 { font-size: .85rem; font-weight: 700; color: var(--navy-800); margin-bottom: .2rem; }
.info-item p { font-size: .86rem; color: var(--slate-600); margin: 0; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c49a2a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: .75rem;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--gold-300); }
.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy-900); }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-about { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.75; }
.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: .8rem;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-contact-list i { color: var(--gold-400); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--gold-400); }
.footer-bottom {
  padding: 1.5rem 0;
  font-size: .83rem;
  color: rgba(255,255,255,.35);
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}
.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  font-size: .88rem;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(196,154,42,.2);
  color: white;
}

/* ── Back to Top ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold-400);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ── Alert / Flash Messages ──────────────────────────────── */
.alert-success-custom {
  background: rgba(27,107,74,.1);
  border: 1px solid rgba(27,107,74,.3);
  color: var(--dark-green, #1B6B4A);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .88rem;
}
.alert-error-custom {
  background: rgba(139,26,26,.1);
  border: 1px solid rgba(139,26,26,.3);
  color: #8b1a1a;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .88rem;
}

/* ── Dividers ────────────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.gold-divider.center { margin: 1rem auto 1.5rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 80px 0; }
  .hero-visual { height: auto; margin-top: 3rem; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  #mainNav { padding: .75rem 0; }
  .section-pad { padding: 70px 0; }
}
@media (max-width: 767.98px) {
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: .5rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .stat-divider { display: none; }
  .stats-band .d-flex { flex-wrap: wrap; gap: 2rem; }
  .section-pad { padding: 55px 0; }
  .contact-card { padding: 1.5rem; }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.hero-card-stack { animation: float 5s ease-in-out infinite; }

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,42,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(196,154,42,0); }
}
.hero-floating-badge { animation: pulse-gold 3s ease-in-out infinite; }
