:root {
  --color-dakota-navy: #1A3A52;
  --color-dakota-orange: #FF8C00;
  --color-dakota-gray: #2C3E50;
  --color-light-gray: #F8F9FA;
  --color-border: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  color: var(--color-dakota-gray);
  line-height: 1.6;
  background-color: #ffffff;
}

header {
  background-color: var(--color-dakota-navy);
  color: white;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.emergency-btn {
  background-color: var(--color-dakota-orange);
  color: var(--color-dakota-navy);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: bold;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.emergency-btn:hover {
  background-color: #FF7700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 2rem;
}

h1, h2, h3 {
  color: var(--color-dakota-navy);
  font-weight: bold;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero {
  background: linear-gradient(135deg, var(--color-dakota-navy) 0%, #0d2237 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .highlight {
  color: var(--color-dakota-orange);
}

.hero p {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-banner {
  background-color: var(--color-dakota-orange);
  color: white;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45), inset 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.cta-btn {
  background-color: var(--color-dakota-navy);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background-color: #0d2237;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.service-card.primary {
  border-top: 4px solid var(--color-dakota-navy);
}

.service-card.primary.orange {
  border-top-color: var(--color-dakota-orange);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.service-card.primary .service-icon {
  background-color: #E8F1F8;
  color: var(--color-dakota-navy);
}

.service-card.primary.orange .service-icon {
  background-color: #FFE8D1;
  color: var(--color-dakota-orange);
}

.service-card p {
  color: var(--color-dakota-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.section-title-divider {
  width: 6rem;
  height: 0.375rem;
  background-color: var(--color-dakota-orange);
  margin: 1rem 0 2rem 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-dakota-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-section {
  background-color: var(--color-light-gray);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--color-dakota-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-dakota-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.submit-btn {
  background-color: var(--color-dakota-navy);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #0d2237;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

footer {
  background-color: var(--color-dakota-navy);
  color: white;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--color-dakota-orange);
  text-decoration: none;
  margin: 0 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.section-bg-light {
  background-color: var(--color-light-gray);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08) inset, 0 -6px 20px rgba(0,0,0,0.08) inset;
}

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

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
  }

  section {
    padding: 2rem;
  }

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

/* Utility classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}
