/*
Theme Name: Prime Gate Advisory Group
Theme URI: https://primegateadvisory.com
Author: Prime Gate Advisory Group
Description: Professional consulting website for Prime Gate Advisory Group
Version: 1.0.0
License: Proprietary
Text Domain: primegate
*/

/* ============================================================
   Prime Gate Advisory Group — 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&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:      #0B1F3A;
  --gold:      #C09E5C;
  --gold-lt:   #D4B87A;
  --cream:     #F7F4EF;
  --off-white: #EDE9E1;
  --mid-gray:  #8A8E97;
  --text:      #1A1A2E;
  --white:     #FFFFFF;

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

  --max-w: 1200px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.2; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.divider.center { margin: 1.25rem auto 2rem; }
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ================================================
   HEADER / NAV
   ================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,158,92,0.2);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text .name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-text .tagline {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0B1F3A 0%, #112644 60%, #0d2a4f 100%);
}
/* Geometric accent lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(192,158,92,0.1);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 50px; right: 50px;
  width: 400px; height: 400px;
  border: 1px solid rgba(192,158,92,0.07);
  border-radius: 50%;
}
.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,158,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,158,92,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}
.hero-content .section-label { color: var(--gold); }
.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  bottom: 3rem; right: 0;
  display: flex;
  gap: 0;
  z-index: 2;
}
.stat-box {
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(192,158,92,0.2);
  text-align: center;
}
.stat-box:first-child { border-left: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.scroll-hint svg { width: 18px; height: 18px; }
@keyframes scrollPulse { 0%,100%{opacity:.35;transform:translateX(-50%) translateY(0)} 50%{opacity:.7;transform:translateX(-50%) translateY(5px)} }

/* ================================================
   SECTION SHARED
   ================================================ */
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4.5rem 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.text-center { text-align: center; }

/* ================================================
   ABOUT STRIP (homepage)
   ================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-strip .visual {
  position: relative;
}
.about-strip .visual .img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #112644 0%, #1a3a5e 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-frame-inner {
  width: 90%;
  height: 90%;
  border: 1px solid rgba(192,158,92,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(192,158,92,0.2);
  font-weight: 300;
}
.badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 130px; height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.badge-float .num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.badge-float .lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 2px;
}
.about-strip .copy h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--navy); margin-bottom: 1rem; }
.about-strip .copy p { color: #4A4E5A; margin-bottom: 1.25rem; }
.check-list { margin: 1.5rem 0 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #4A4E5A;
}
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(192,158,92,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.check-icon svg { width: 10px; height: 10px; color: var(--gold); }

/* ================================================
   SERVICES GRID
   ================================================ */
.services-intro { max-width: 600px; margin: 0 auto 4rem; }
.services-intro h2 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--navy); margin-bottom: 0.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--off-white);
  border: 1.5px solid var(--off-white);
}
.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(192,158,92,0.18);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.svc-icon {
  width: 48px; height: 48px;
  background: rgba(11,31,58,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon svg { width: 22px; height: 22px; color: var(--navy); }
.service-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.75;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .svc-more svg { transform: translateX(4px); }

/* ================================================
   WHY CHOOSE US / PILLARS
   ================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pillar {
  text-align: center;
  padding: 2rem 1rem;
}
.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(192,158,92,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 28px; height: 28px; color: var(--gold); }
.pillar h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.pillar p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.7; }

/* ================================================
   CTA BAND
   ================================================ */
.cta-band {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(192,158,92,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-band p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-band .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.testimonial-card .quote-mark {
  font-family: var(--ff-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -0.5rem;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: #4A4E5A;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.reviewer-info .rname {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
.reviewer-info .rtitle { font-size: 0.75rem; color: var(--mid-gray); }

/* ================================================
   ABOUT PAGE
   ================================================ */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,158,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,158,92,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 580px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.mission-grid h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 0.5rem; }
.mission-grid p { color: #4A4E5A; margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-box {
  background: var(--cream);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
}
.value-box h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.value-box p { font-size: 0.85rem; color: var(--mid-gray); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5e 100%);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 600;
  border: 3px solid var(--off-white);
}
.team-card .tname {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.team-card .trole {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.team-card .tbio {
  font-size: 0.84rem;
  color: var(--mid-gray);
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.services-list { display: flex; flex-direction: column; gap: 4rem; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--off-white);
}
.service-row:last-child { border-bottom: none; }
.service-row-num {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(11,31,58,0.08);
  line-height: 1;
  text-align: right;
  padding-top: 0.5rem;
}
.service-row-copy h3 {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-row-copy .divider { margin: 0.75rem 0 1.25rem; }
.service-row-copy p { color: #4A4E5A; margin-bottom: 1rem; }
.service-row-copy ul { margin: 1.25rem 0; }
.service-row-copy ul li {
  font-size: 0.88rem;
  color: #4A4E5A;
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}
.service-row-copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ================================================
   CAREERS PAGE
   ================================================ */
.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.careers-intro-grid h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); }
.careers-intro-grid p { color: #4A4E5A; margin-top: 1rem; }

.openings-list { margin-top: 4rem; }
.openings-list h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--off-white);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.job-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.job-info .jtitle {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.job-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.job-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.job-tag svg { width: 12px; height: 12px; }

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.perk-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cream);
}
.perk-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perk-icon svg { width: 24px; height: 24px; color: var(--gold); }
.perk-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.perk-card p { font-size: 0.83rem; color: var(--mid-gray); }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-info p { color: #4A4E5A; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(192,158,92,0.12);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail-text .clabel {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.contact-detail-text .cval {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  margin-top: 0.15rem;
}

.contact-form-wrap {
  background: var(--cream);
  padding: 3rem;
}
.form-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid #D9D5CE;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,158,92,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ================================================
   FOOTER
   ================================================ */
#site-footer {
  background: #071428;
  color: rgba(255,255,255,0.6);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text .name { color: var(--white); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgba(255,255,255,0.45);
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ================================================
   PAGE TRANSITIONS — active page indicator
   ================================================ */
.page { display: none; }
.page.active { display: block; }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-strip   { gap: 3rem; }
  .service-row   { grid-template-columns: 80px 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .about-strip   { grid-template-columns: 1fr; }
  .badge-float   { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mission-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .careers-intro-grid { grid-template-columns: 1fr; }
  .perks-grid    { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero-stats    { display: none; }
  .service-row   { grid-template-columns: 1fr; }
  .service-row-num { display: none; }
}
@media (max-width: 480px) {
  .team-grid   { grid-template-columns: 1fr; }
  .perks-grid  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}
