:root {
  --orange: #fa991c;
  --cream: #fbf3f2;
  --teal: #1c768f;
  --navy: #032539;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.logo-text {
  margin-left: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--orange);
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
  }
}

.hero {
  background:
    linear-gradient(135deg, rgba(3, 37, 57, 0.85), rgba(28, 118, 143, 0.75)),
    url("hero-bg.webp") center / cover no-repeat;
  color: #fff;
}

.hero-content {
  text-align: center;
  padding: 6rem 1.5rem 7rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

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

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main section {
  padding: 4rem 0;
}

main h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--teal);
}

.about-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.about-photo {
  width: 220px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(3, 37, 57, 0.15);
}

.about-text p {
  max-width: 700px;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(3, 37, 57, 0.08);
}

.card-icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.fleet-card {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(3, 37, 57, 0.08);
}

.fleet-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fleet-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  max-height: 320px;
}

.fleet-details h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.fleet-details > p {
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.fleet-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.fleet-specs li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.fleet-specs li span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
  font-weight: 600;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  max-width: 900px;
}

.rate-card {
  background: #fff;
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(3, 37, 57, 0.08);
  text-align: center;
}

.rate-amount {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
}

.rate-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--teal);
}

.rate-label {
  color: var(--teal);
  font-size: 0.95rem;
}

.rate-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--teal);
}

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

.airport {
  background: #fff;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 8px rgba(3, 37, 57, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.airport-code {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.airport-name {
  color: var(--teal);
  font-size: 0.95rem;
}

.contact {
  text-align: center;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  color: var(--teal);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--orange);
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--teal);
  font-size: 0.9rem;
  border-top: 1px solid rgba(3, 37, 57, 0.1);
}
