/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Theme: Presidential (Federal Navy & Crimson) */
  --primary-navy: #0a192f;
  /* Very Dark Navy */
  --secondary-navy: #172a45;
  /* Lighter Navy for cards */
  --primary-red: #b91c1c;
  /* Crimson Red */
  --accent-gold: #d4af37;
  /* Metallic Gold */
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;

  --font-heading: 'Merriweather', serif;
  --font-body: 'Lato', sans-serif;

  --border-thick: 2px solid var(--accent-gold);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--primary-navy);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3rem;
  border-bottom: 4px solid var(--primary-red);
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  margin-top: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1500px, 92%);
  margin-inline: auto;
}

/* Header */
.header {
  background: #050e1b;
  border-bottom: 1px solid var(--accent-gold);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link.active {
  color: var(--accent-gold);
}

.nav-button {
  background: var(--primary-red);
  color: white;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.nav-button:hover {
  background: transparent;
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* Hero */
.hero {
  padding: 8rem 0;
  background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.95));
  /* Add Image URL later if needed */
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--accent-gold);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 0 0 500px;
  max-width: 100%;
}

.hero-card {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #cbd5e1;
  border-left: 2px solid var(--accent-gold);
  padding-left: 1rem;
}

.hero-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  position: relative;
  padding-left: 2rem;
}

.hero-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--primary-red);
}

.btn-primary {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #fff;
  color: var(--primary-red);
}

/* Hero Card (Boxed) */
.hero-card {
  background: var(--white);
  color: var(--primary-navy);
  padding: 2.5rem;
  border: 1px solid #ccc;
  box-shadow: 10px 10px 0 var(--primary-red);
  /* Hard shadow */
  position: relative;
}

.hero-card h2 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  border: none;
}

.hero-card::after {
  content: none;
}

.hero-card-list li {
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 0;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--secondary-navy);
}

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

.bullets li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.bullets li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.6rem;
  top: 5px;
}

/* Trust Section */
.section-trust {
  background: var(--white);
  color: var(--primary-navy);
  padding: 5rem 0;
  border-top: 4px solid var(--accent-gold);
}

.section-trust h2 {
  color: var(--primary-navy);
  border-bottom: none;
  display: block;
  margin-bottom: 0.5rem;
}

.section-trust h2::after {
  margin: 0.5rem auto 0;
}

.trust-subtitle {
  color: #64748b;
  margin-bottom: 3rem;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trust-item h3 {
  color: var(--primary-navy);
  font-size: 1.2rem;
}

.trust-item a {
  color: var(--primary-red);
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--white);
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-box {
  border: 2px solid var(--accent-gold);
  padding: 2rem;
  margin-top: 2rem;
}

.contact-box a {
  color: var(--accent-gold);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  color: var(--primary-navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  padding: 1rem;
  border: 2px solid #ccc;
  background: #f8fafc;
  font-family: var(--font-body);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-navy);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* Footer */
.footer {
  background: #000;
  color: #666;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.reverse-order-mobile {}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-text {
    flex: auto;
    width: 100%;
  }

  .hero-card {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-button {
    margin-top: 0.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-inner,
  .section-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-text,
  .contact-form {
    padding: 2rem;
  }

  .reverse-order-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .trust-item {
    margin-bottom: 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary {
    width: 100%;
  }
}