:root {
  --navy: #0d1f3c;
  --navy-mid: #162b52;
  --gold: #d95f1a;
  --gold-light: #f47235;
  --cream: #f8f5ef;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --text: #1a2540;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 80px;
  background: rgba(13,31,60,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217,95,26,0.2);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.3); }
.nav-logo img { height: 52px; width: auto; }
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  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); transition: transform 0.3s; transform-origin: left;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy); border: 1px solid rgba(217,95,26,0.25);
  border-radius: 8px; padding: 0.5rem 0; min-width: 220px;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 0.65rem 1.25rem; font-size: 0.85rem; text-transform: none; letter-spacing: 0; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(217,95,26,0.1); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important; padding: 0.55rem 1.25rem;
  border-radius: 4px; font-weight: 600 !important; text-transform: none !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* HERO */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(217,95,26,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217,95,26,0.06) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; padding: 2rem 5%;
}
.hero-logo { margin-bottom: 1.75rem; animation: fadeUp 0.6s ease both; }
.hero-logo img { height: 130px; width: auto; image-rendering: -webkit-optimize-contrast; image-rendering: smooth; border-radius: 16px; }
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 700;
  color: var(--white); line-height: 1.08; margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.1s ease both; letter-spacing: -0.01em;
}
h1 span { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.78);
  line-height: 1.75; max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-divider {
  width: 60px; height: 1px; background: rgba(255,255,255,0.2);
  margin: 2.5rem auto 2rem; animation: fadeUp 0.8s 0.35s ease both;
}
.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 2rem;
  flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; letter-spacing: 0.08em; text-transform: uppercase; }
.stat-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.15); }
.btn-primary {
  background: var(--gold); color: var(--navy); padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; letter-spacing: 0.01em;
  transition: all 0.3s; border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,95,26,0.35); }
.btn-outline {
  background: transparent; color: white; padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; opacity: 0.5; }

/* SECTIONS */
section { padding: 7rem 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.15;
}
.section-intro { font-size: 1.05rem; color: var(--gray); line-height: 1.75; max-width: 580px; margin-top: 1rem; }

#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.about-text .latin {
  display: inline-block; background: var(--navy); color: var(--gold-light);
  font-family: 'Playfair Display', serif; font-style: italic;
  padding: 0.3rem 0.85rem; border-radius: 3px; font-size: 1.05rem; margin-bottom: 1.5rem;
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pillar {
  background: white; border: 1px solid rgba(0,0,0,0.07); border-radius: 8px; padding: 1.25rem;
  border-left: 3px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pillar h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.pillar p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.about-video { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.18); padding-bottom: 56.25%; height: 0; background: var(--navy); }
.about-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* SERVICES */
#services { background: white; }
.services-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.services-tabs {
  display: flex; gap: 0.5rem; margin-top: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.tab-btn {
  padding: 0.75rem 1.5rem; background: none; border: none; border-bottom: 2px solid transparent;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--gray);
  cursor: pointer; margin-bottom: -1px; transition: all 0.3s;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--navy); }
.service-panel { display: none; }
.service-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.service-img {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--gray-light); box-shadow: 0 16px 48px rgba(0,0,0,0.12); position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.service-img:hover img { transform: scale(1.03); }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.service-body p { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
.service-features { list-style: none; margin: 1.5rem 0; }
.service-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem; color: var(--text);
}
.service-features li::before {
  content: '✓'; width: 20px; height: 20px; background: rgba(217,95,26,0.12);
  color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; line-height: 20px; text-align: center;
}

/* WHY */
#why { background: var(--navy); }
.why-header { text-align: center; margin-bottom: 4rem; }
.why-header h2 { color: white; }
.why-header .section-label { color: var(--gold-light); }
.why-header .section-label::before { background: var(--gold-light); }
.why-header p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 1rem auto 0; line-height: 1.7; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.advantage-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden;
}
.advantage-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.advantage-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(217,95,26,0.3); }
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-icon { font-size: 2rem; margin-bottom: 1rem; }
.advantage-card h4 { color: white; font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }
.advantage-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; }

/* OPERATIONS */
#operations { background: var(--cream); }
.operations-inner { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.ops-text h2 { margin-bottom: 1rem; }
.ops-text p { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.acc-item { border: 1px solid rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; background: white; transition: box-shadow 0.3s; }
.acc-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; cursor: pointer; user-select: none;
  font-weight: 600; font-size: 0.95rem; color: var(--navy); transition: background 0.3s;
}
.acc-header:hover { background: rgba(217,95,26,0.04); }
.acc-icon {
  width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 300; flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--gold); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.88rem; color: var(--gray); line-height: 1.7; padding: 0 1.25rem;
}
.acc-item.open .acc-body { max-height: 200px; padding-bottom: 1.25rem; }

/* CONTACT */
#contact { background: white; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.detail-icon {
  width: 44px; height: 44px; border-radius: 8px; background: rgba(217,95,26,0.1);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.detail-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.detail-text span { font-size: 0.97rem; color: var(--text); font-weight: 500; }
.contact-form { background: var(--gray-light); border-radius: 12px; padding: 2.5rem; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 6px;
  background: white; font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,95,26,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 0.95rem; background: var(--navy); color: white; border: none;
  border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,31,60,0.25); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .check { font-size: 3rem; }
.form-success p { color: var(--navy); font-weight: 600; margin-top: 0.75rem; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: white; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.86rem; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 2rem auto 0; font-size: 0.82rem; flex-wrap: wrap; gap: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.3s; font-size: 0.85rem;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.count-up { font-variant-numeric: tabular-nums; }


/* SHARED SECTION HEADER (leadership, safety, testimonials, technology, rfp) */
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: #555; font-size: 1.05rem; max-width: 650px; margin: 0 auto; }
.eyebrow {
  display: inline-block; background: var(--gold); color: white;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 2px; margin-bottom: 1rem;
}
.on-dark h2 { color: white; }
.on-dark p { color: rgba(255,255,255,0.65); }

/* LEADERSHIP */
#leadership { background: white; }
.leadership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.leader-card {
  background: var(--cream); border-radius: 10px; padding: 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.leader-avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
}
.leader-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 0.2rem; }
.leader-role { color: var(--gold); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.85rem; }
.leader-card p { color: #555; font-size: 0.9rem; line-height: 1.75; }

/* CREDIBILITY BAR */
.credibility {
  background: #0a1729; padding: 2rem 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.credibility-inner {
  max-width: 1100px; margin: 0 auto; display: flex;
  justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 1.5rem; text-align: center;
}
.cred-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); font-weight: 700; }
.cred-label { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cred-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* TECHNOLOGY */
#technology { background: var(--navy-mid); }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tech-grid h2 { color: white; margin-bottom: 1.25rem; }
.tech-lead { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.tech-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tech-card { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 1.25rem; }
.tech-card-icon { color: var(--gold-light); font-size: 1.3rem; margin-bottom: 0.5rem; }
.tech-card h4 { color: white; font-weight: 600; font-size: 0.9rem; }
.tech-card p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.25rem; line-height: 1.5; }
.tech-panel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 2.5rem; text-align: center;
}
.tech-panel-icon { font-size: 4rem; margin-bottom: 1rem; }
.tech-panel h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.3rem; margin-bottom: 0.75rem; }
.tech-panel p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.btn-gold {
  background: var(--gold); color: white; padding: 0.75rem 1.75rem; border-radius: 4px;
  font-weight: 600; text-decoration: none; font-size: 0.9rem; display: inline-block;
  transition: background 0.3s, transform 0.3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* SAFETY */
#safety { background: var(--cream); }
.safety-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.safety-card {
  background: white; border-radius: 8px; padding: 2rem;
  border-left: 4px solid var(--gold); transition: transform 0.3s, box-shadow 0.3s;
}
.safety-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.safety-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.safety-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.safety-card p { color: #666; font-size: 0.9rem; line-height: 1.7; }

/* TESTIMONIALS */
#testimonials { background: var(--navy); }
.testimonials-media { max-width: 800px; margin: 0 auto; }
.video-frame {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); background: var(--navy);
}
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.testimonial-note {
  margin-top: 2rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 1.75rem; text-align: center;
}
.testimonial-note p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.75; }
.testimonial-note a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.testimonial-note a:hover { text-decoration: underline; }

/* RFP */
#rfp { background: var(--navy); }
.rfp-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.rfp-inner h2 { color: white; margin-bottom: 1rem; }
.rfp-lead { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.5rem; }
.rfp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; text-align: left; }
.rfp-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 1.75rem;
}
.rfp-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.rfp-card h3 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 0.5rem; }
.rfp-card ul { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; padding-left: 1.2rem; }
.btn-gold-lg {
  background: var(--gold); color: white; padding: 1rem 2.5rem; border-radius: 4px;
  font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-block;
  letter-spacing: 0.02em; transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-gold-lg:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,95,26,0.35); }

/* CONTACT EXTRAS */
.contact-info h2 em { font-style: italic; color: var(--gold); }
.form-hp { display: none; }
.form-error {
  display: none; margin-bottom: 1rem; padding: 0.75rem 1rem; border-radius: 6px;
  background: rgba(217,95,26,0.1); border: 1px solid rgba(217,95,26,0.35);
  color: #9a3d0c; font-size: 0.88rem;
}
.form-submit[disabled] { opacity: 0.6; cursor: progress; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 0.85rem; text-align: center; }

/* ACCESSIBILITY */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--navy); padding: 0.75rem 1.25rem;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--navy); padding: 2rem 5%; gap: 0; max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 0.9rem 0; text-transform: none; letter-spacing: 0; font-size: 1rem; }
  .nav-dropdown .dropdown-menu {
    position: static; transform: none; opacity: 1; pointer-events: all;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0.5rem 1rem; min-width: 0;
  }
  .nav-cta { display: inline-block; margin-top: 0.75rem; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner, .service-panel.active { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 2rem; }
  .tech-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rfp-grid { grid-template-columns: 1fr; }
  .cred-sep { display: none; }
}
@media (max-width: 560px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  section { padding: 5rem 5%; }
  .tech-cards { grid-template-columns: 1fr; }
  .leader-card { flex-direction: column; padding: 1.75rem; }
  .contact-form { padding: 1.75rem; }
  .services-tabs { flex-direction: column; gap: 0; border-bottom: none; }
  .tab-btn { border-bottom: 1px solid rgba(0,0,0,0.08); text-align: left; padding: 0.85rem 0; margin-bottom: 0; }
  .tab-btn.active { border-bottom-color: var(--gold); }
  .hero-stats { flex-direction: column; }
  .stat-sep { display: none; }
}
