﻿:root {
  --ink: #0f1b15;
  --cream: #eef6f1;
  --clay: #d5efe2;
  --sand: #e5f3ec;
  --accent: #00c380;
  --accent-dark: #019b66;
  --teal: #0b6b4a;
  --sky: #cfe9dd;
  --shadow: 0 24px 60px rgba(12, 26, 20, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(140deg, #f0f8f3 0%, #dff2ea 35%, #cfe9dd 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  right: -160px;
  background: radial-gradient(circle, rgba(0, 195, 128, 0.45), transparent 60%);
}

body::after {
  bottom: -140px;
  left: -180px;
  background: radial-gradient(circle, rgba(11, 107, 74, 0.35), transparent 60%);
}

a {
  text-decoration: none;
  color: inherit;
}

main {
  padding: 0 6vw 6rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6vw 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(238, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 27, 21, 0.08);
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 12px 24px rgba(0, 195, 128, 0.18);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.brand-tag {
  font-size: 0.85rem;
  color: #4f6b5d;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(130deg, #0f1b15, #1d3b2d);
  color: var(--cream);
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(12, 26, 20, 0.25);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(15, 27, 21, 0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  margin-bottom: 1rem;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  color: #4f6b5d;
}

.hero-copy {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
}

.primary-btn {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ghost-btn {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.primary-btn:hover {
  box-shadow: 0 18px 40px rgba(0, 195, 128, 0.35);
}

.ghost-btn:hover {
  border-color: var(--accent-dark);
  color: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.hero-stats h3 {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
}

.hero-card {
  background: linear-gradient(160deg, #0f1b15 0%, #153328 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 195, 128, 0.45), transparent 55%);
}

.hero-card-top {
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-card-sub {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

.hero-card-body {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero-card-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.hero-card-note {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 3.5rem 0;
}

.section-title p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #4b6b5c;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin-top: 0.8rem;
}

.fleet-grid,
.service-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.fleet-card,
.service-card {
  background: var(--sand);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(15, 27, 21, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card h3,
.service-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.8rem;
}

.fleet-card span {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.fleet-card:hover,
.service-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(12, 26, 20, 0.18);
}

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

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 0.6rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #4f6b5d;
}

.about-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(1, 155, 102, 0.08);
}

.about-panel h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

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

.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 27, 21, 0.08);
  display: grid;
  gap: 1rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-details p {
  color: #4f6b5d;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 6vw 3rem;
  border-top: 1px solid rgba(15, 27, 21, 0.1);
  background: rgba(238, 246, 241, 0.92);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.privacy-body {
  background: linear-gradient(160deg, #f0f8f3 0%, #dff2ea 40%, #cfe9dd 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease infinite;
}

.privacy-main {
  padding: 3rem 6vw 5rem;
}

.privacy-card {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.4rem;
}

.privacy-card h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.privacy-card h2 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.privacy-card ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card.is-visible {
  animation: floatCard 8s ease-in-out 0.8s infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    position: absolute;
    right: 6vw;
    top: 85px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

@media (max-width: 600px) {
  main {
    padding: 0 5vw 4rem;
  }

  .site-header {
    padding: 1.5rem 5vw;
  }

  .privacy-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
