:root {
  --primary: #1e3a5f;
  --accent: #f97316;
  --background: #ffffff;
  --light-gray: #f3f4f6;
  --text: #1f2937;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--background);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition);
}

nav a:hover::after,
nav a:focus::after {
  width: 100%;
}

nav a:hover,
nav a:focus {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--background);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #2d4a6f 100%);
  color: var(--background);
  padding: 4rem 1rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 95, 0.85);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: var(--background);
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.emergency-btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--background);
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color var(--transition), transform var(--transition);
}

.emergency-btn:hover,
.emergency-btn:focus {
  background-color: #ea580c;
  color: var(--background);
  transform: scale(1.05);
}

.emergency-btn:focus {
  outline: 3px solid #fdba74;
  outline-offset: 2px;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: var(--background);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-card h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.5rem;
  background-color: var(--accent);
  border-radius: 2px;
}

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

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  background-color: var(--background);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

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

.submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: var(--background);
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.submit-btn:hover,
.submit-btn:focus {
  background-color: #ea580c;
}

.submit-btn:focus {
  outline: 3px solid #fdba74;
  outline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--background);
  padding: 1rem 2rem;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  text-align: center;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
}

.cookie-btn {
  background-color: var(--accent);
  color: var(--background);
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition);
}

.cookie-btn:hover,
.cookie-btn:focus {
  background-color: #ea580c;
}

.cookie-btn:focus {
  outline: 2px solid #fdba74;
  outline-offset: 2px;
}

footer {
  background-color: var(--primary);
  color: var(--background);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
  color: var(--background);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-section {
  background-color: var(--accent);
  text-align: center;
  padding: 3rem 1rem;
}

.cta-section h2 {
  color: var(--background);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--background);
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background-color: var(--background);
  color: var(--accent);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: var(--primary);
  color: var(--background);
}

.cta-btn:focus {
  outline: 3px solid var(--background);
  outline-offset: 2px;
}

*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--primary);
    padding: 1rem;
    gap: 0;
    text-align: center;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }
  
  nav a {
    display: block;
    padding: 1rem;
  }
  
  nav a::after {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  section {
    padding: 2rem 0;
  }
  
  .hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .emergency-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-banner {
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  header,
  .cookie-banner,
  .cookie-modal,
  .nav-cta {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 1rem;
    background: none;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero h1,
  .hero p {
    color: #000;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .service-card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  
  footer {
    background: none;
    border-top: 1px solid #ccc;
    padding: 1rem 0;
  }
  
  .footer-section h4 {
    color: #000;
  }
  
  .footer-section a {
    color: #000;
  }
  
  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 10pt;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  p {
    orphans: 3;
    widows: 3;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  z-index: 10001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Navigation CTA */
.nav-cta {
  background-color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  color: white !important;
  text-decoration: none;
  transition: background-color var(--transition);
}

.nav-cta:hover {
  background-color: #ea580c;
}

/* Hero Additional Styles */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-note {
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Button Sizes */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #ea580c;
  border-color: #ea580c;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Section Intro */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

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

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

/* Why Us Section */
.why-us {
  background-color: var(--primary);
  color: white;
}

.why-us h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

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

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

/* Contact Form Section */
.contact-form-section {
  background-color: var(--light-gray);
}

.contact-form-section h2 {
  text-align: center;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0;
}

.form-consent a {
  color: var(--accent);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 1rem;
}

.emergency-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.emergency-note a {
  color: var(--accent);
  font-weight: 600;
}

/* Footer Styles */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

.footer-info h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-info address {
  font-style: normal;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-info a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-info a:hover {
  color: var(--accent);
}

.footer-links h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-option {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.125rem;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Back to Home */
.back-to-home {
  padding: 2rem;
  text-align: center;
}

/* Responsive fixes for form */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

/* Hero Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 95, 0.85);
  z-index: 1;
}

/* Why Us Image */
.why-us-image {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-us-image img {
  width: 100%;
  height: auto;
}

/* Service Detail Cards */
.services-detail {
  padding: 3rem 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-card:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}

.service-detail-card:nth-child(even) .service-detail-image {
  order: 2;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text);
}

/* About Page Styles */
.about-intro {
  padding: 3rem 0;
}

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

.about-intro-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.about-mission {
  padding: 3rem 0;
  background-color: var(--light-gray);
}

.mission-content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.about-values {
  padding: 3rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.about-fleet {
  padding: 3rem 0;
  background-color: var(--light-gray);
}

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

.fleet-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.fleet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.fleet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.fleet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.about-coverage {
  padding: 3rem 0;
}

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

.coverage-image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.area-column h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.area-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-column li {
  padding: 0.25rem 0;
  color: var(--text);
}

@media (max-width: 900px) {
  .service-detail-card,
  .service-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card:nth-child(even) .service-detail-image {
    order: 0;
  }
  
  .about-intro-grid,
  .fleet-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro-image,
  .fleet-image,
  .coverage-image {
    order: -1;
  }
}
