/* ============================================
   Golden Eagles Tech LLC — Main Stylesheet
   Colors: Royal Blue #1A3C6E + Amber Gold #F5A623
   ============================================ */

/* ── Custom Properties ─────────────────────── */
:root {
  --navy:        #0D2137;
  --primary:     #1A3C6E;
  --primary-mid: #2E5FA3;
  --primary-lt:  #4A7FC1;
  --gold:        #F5A623;
  --gold-dk:     #D4880C;
  --gold-lt:     #FFD166;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --shadow-gold: 0 4px 28px rgba(245,166,35,.35);

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --dur: .3s;

  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 20px;
  --rad-xl: 32px;

  --max-w: 1200px;
  --pad:   clamp(1.25rem, 5vw, 2.5rem);
  --nav-h: 72px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Typography helpers ──────────────────── */
.text-gold    { color: var(--gold); }
.gold-italic  { color: var(--gold); font-style: italic; }

/* ── Layout helpers ──────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,.3);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full   { width: 100%; justify-content: center; }
.btn-submit { align-self: flex-end; min-width: 190px; }

/* ── Section Header ──────────────────────── */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-badge {
  display: inline-block;
  background: rgba(245,166,35,.12);
  color: var(--gold-dk);
  border: 1px solid rgba(245,166,35,.3);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Scroll Reveal ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out) var(--delay, 0s),
              transform .7s var(--ease-out) var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(13,33,55,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.eagle-icon {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(245,166,35,.4));
}
.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-gold { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--rad-sm);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(245,166,35,.08);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  margin-left: .5rem;
  transition: background var(--dur), box-shadow var(--dur), transform var(--dur) !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 55%, var(--primary-mid) 100%);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-eagle-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(60vw, 600px);
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 var(--pad);
  animation: heroFadeIn 1.1s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,166,35,.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  padding: .4rem 1.1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rad-lg);
}
.hstat { text-align: center; }
.hstat-n {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-head);
}
.hstat-l {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}
.hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
  width: 28px;
  height: 28px;
  transition: color var(--dur);
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll svg { width: 100%; height: 100%; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.svc-card {
  background: var(--white);
  border-radius: var(--rad-lg);
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,.04), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,166,35,.3);
}
.svc-card:hover::before { opacity: 1; }

.svc-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(245,166,35,.04) 0%, var(--white) 50%);
  box-shadow: 0 4px 32px rgba(245,166,35,.15);
}
.svc-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  border-radius: var(--rad-lg) var(--rad-lg) 0 0;
}

.svc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--rad-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: transform var(--dur);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-3deg); }
.svc-icon svg { width: 26px; height: 26px; }

.svc-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .75rem;
  line-height: 1.3;
}
.svc-card p {
  color: var(--gray-500);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.featured-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.svc-list { display: flex; flex-direction: column; gap: .5rem; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--gray-700);
}
.svc-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.prod-card {
  background: var(--white);
  border-radius: var(--rad-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.prod-image {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.prod-image--history {
  background: linear-gradient(135deg, #1a2e4a 0%, #2c4a6e 50%, #1a3c6e 100%);
}
.prod-image--ai {
  background: linear-gradient(135deg, #0d2137 0%, #1a3c6e 40%, #2e5fa3 100%);
}
.prod-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,166,35,.08) 0%, transparent 70%);
}
.prod-image-icon {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  filter: drop-shadow(0 4px 16px rgba(245,166,35,.4));
}
.prod-image-icon svg { width: 100%; height: 100%; }

.prod-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.prod-badge {
  display: inline-block;
  background: rgba(26,60,110,.08);
  color: var(--primary);
  border: 1px solid rgba(26,60,110,.2);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .75rem;
  border-radius: 50px;
  width: fit-content;
}
.prod-badge--gold {
  background: rgba(245,166,35,.1);
  color: var(--gold-dk);
  border-color: rgba(245,166,35,.3);
}
.prod-badge--live {
  background: rgba(22,163,74,.1);
  color: #15803d;
  border-color: rgba(22,163,74,.3);
}

.prod-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1.5px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.prod-link svg { width: 1em; height: 1em; flex-shrink: 0; stroke-width: 1.5px; transition: transform var(--dur); }
.prod-link:hover { color: var(--gold-dk); border-bottom-color: var(--gold-dk); }
.prod-link:hover svg { transform: translateX(3px); }

.prod-content h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.prod-type {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dk);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.prod-content p:last-of-type {
  color: var(--gray-500);
  font-size: .95rem;
  flex: 1;
}

.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.prod-tags span {
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
}

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--primary); }
.about-section .section-badge {
  background: rgba(245,166,35,.15);
  color: var(--gold);
  border-color: rgba(245,166,35,.35);
}
.about-section .section-title { color: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder {
  width: clamp(280px, 40vw, 420px);
  height: clamp(280px, 40vw, 420px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-img {
  width: 78%;
  height: auto;
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 24px rgba(245,166,35,.35));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.about-location-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: var(--shadow-gold);
}
.about-location-badge svg { width: 14px; height: 14px; }

.about-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-body {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
}
.about-body strong { color: var(--gold); font-weight: 600; }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rad-md);
  transition: background var(--dur), border-color var(--dur);
}
.pillar:hover {
  background: rgba(245,166,35,.08);
  border-color: rgba(245,166,35,.25);
}
.pillar-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(245,166,35,.15);
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .2rem;
}
.pillar p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--rad-md);
  margin-bottom: 1rem;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.cinfo-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.cinfo-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--rad-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.cinfo-icon svg { width: 20px; height: 20px; }
.cinfo-item h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: .2rem;
}
.cinfo-item a, .cinfo-item span {
  font-size: .95rem;
  color: var(--primary);
  font-weight: 500;
}
.cinfo-item a:hover { color: var(--gold-dk); }

.cinfo-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--rad-lg);
  padding: 1.75rem;
  margin-top: .5rem;
  color: var(--white);
}
.cinfo-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cinfo-card ul { display: flex; flex-direction: column; gap: .6rem; }
.cinfo-card li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.cinfo-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--rad-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  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: .5rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-group label span { color: var(--gold-dk); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--rad-md);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,110,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

.form-status {
  font-size: .9rem;
  text-align: center;
  min-height: 1.5rem;
}
.form-status.success { color: #16a34a; font-weight: 600; }
.form-status.error   { color: #dc2626; font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .5rem;
  line-height: 1.6;
}
.footer-location {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-location a:hover { color: var(--gold); }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9999;
  background: var(--gray-900);
  color: var(--white);
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease-out), opacity .4s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.toast-success { background: #16a34a; }
.toast.toast-error   { background: #dc2626; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: flex; justify-content: center; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --pad: 1.25rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,33,55,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--pad) 2rem;
    gap: .25rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s;
    pointer-events: none;
    z-index: 998;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: .85rem 1rem;
    border-radius: var(--rad-sm);
    font-size: 1rem;
  }
  .nav-cta { text-align: center; margin: .5rem 0 0; border-radius: var(--rad-md); }

  /* Hero */
  .hero-stats { gap: 1.25rem; padding: 1.25rem 1.5rem; }
  .hstat-n { font-size: 1.6rem; }
  .hero-eagle-bg { opacity: .2; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* About */
  .about-img-placeholder { width: 260px; height: 260px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hstat-div { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Loading animation for submit button ── */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: .8;
}
.btn-loading span { opacity: 0; }
.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(13,33,55,.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
