/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A2B4A;
  --navy-light: #2D3E5F;
  --navy-mid: #E8F1F5;
  --gold: #2B7BBF;
  --gold-light: #3B8ED8;
  --gold-muted: rgba(43,123,191,0.1);
  --white: #ffffff;
  --off-white: #F5F8FA;
  --muted: #6B7C93;
  --border: rgba(26,43,74,0.1);
  --card-bg: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow-icon {
  font-size: 0.6rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  background: #ffffff !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  line-height: 1.1;
}
.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.nav-brand .title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-muted);
}
.nav-links .cta-btn {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.nav-links .cta-btn:hover {
  background: var(--navy-light);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* === SECTIONS === */
section { padding: 110px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 4rem; }
.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* === DIVIDER === */
.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* === STAT STRIP === */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3.5rem;
}
.stat-item {
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* === CARDS === */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--gold-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  color: var(--gold);
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* === SERVICE CARD === */
.service-category {
  margin-bottom: 5rem;
}
.category-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.category-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.7);
}
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.service-card-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.service-card-body ul { padding-left: 0; }
.service-card-body ul li {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card-body ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === FOOTER === */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 5% 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.footer-brand .sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--navy); }
.footer-col ul li a:active,
.footer-col ul li a:visited,
.footer-col ul li a:focus { color: var(--muted); }
.footer-col ul li a:visited:hover,
.footer-col ul li a:focus:hover { color: var(--navy); }
.footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 105px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(43,123,191,0.06) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content h1 { margin-bottom: 2rem; line-height: 1.25; margin-top: 0.5rem; }
.hero-content h1 em { font-style: normal; color: var(--gold); }
.hero-content p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: justify;
}
.hero-actions { 
  display: flex; 
  gap: 1.25rem; 
  flex-wrap: wrap; 
  margin-top: 0.5rem; 
  align-items: center;
}
.hero-actions a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  margin-top: 0;
  padding: 1.5rem;
}
.hero-visual .hero-actions {
  margin-top: 2.5rem;
  justify-content: center;
}
.credential-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.credential-card .tag {
  display: inline-block;
  background: var(--gold-muted);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.credential-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.credential-card .creds {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.air-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.air-badge {
  background: rgba(43,123,191,0.08);
  border: 1px solid rgba(43,123,191,0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-align: center;
  flex: 1;
}
.air-badge .rank { font-size: 1.5rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.air-badge .desc { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.quick-stat {
  background: rgba(43,123,191,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem;
}
.quick-stat .val { font-size: 1.3rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.quick-stat .lab { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* === HIGHLIGHT STRIP === */
.highlight-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 5%;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.highlight-item:last-child { border-right: none; }
.highlight-item .num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.highlight-item h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.highlight-item p { color: var(--muted); font-size: 0.9rem; }
.highlight-item .metric {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.65);
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; flex: 1; }
.blog-card p { color: var(--muted); font-size: 0.86rem; margin-bottom: 1rem; }
.blog-date { font-size: 0.75rem; color: var(--muted); }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(43,123,191,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === PAGE HERO === */
.page-hero {
  padding: 160px 5% 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(43,123,191,0.06) 0%, transparent 70%);
}
.page-hero .inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1.25rem; line-height: 1.3; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.about-img .img-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img .img-wrap .monogram {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
}
.about-img .floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}
.about-img .floating-badge .big { font-size: 1.6rem; font-family: var(--font-display); display: block; }
.about-img .floating-badge .sm { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.qual-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
}
.qual-item .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === INDUSTRIES === */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.industry-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.industry-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.industry-card .icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}
.industry-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.industry-card p { color: var(--muted); font-size: 0.86rem; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.contact-block .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-block p { color: var(--off-white); font-size: 0.95rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--white); color: var(--navy); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-logo { height: 40px; }
  .nav-brand .name { font-size: 1rem; }
  .nav-brand .title { font-size: 0.6rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 85px; left: 0; right: 0; background: var(--white); padding: 1.5rem; gap: 0.5rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--border); }
  .highlight-item:last-child { border-bottom: none; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 2.5rem 1.5rem; }
}

@media (max-width: 560px) {
  .nav-logo { height: 35px; }
  .nav-brand .name { font-size: 0.9rem; }
  .nav-brand .title { font-size: 0.55rem; }
  section { padding: 70px 5%; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .air-badges { flex-direction: column; }
  .quick-stats { grid-template-columns: 1fr; }
}
