:root {
  --primary: #df9721;
  --primary-hover: #c4821a;
  --secondary: #0c182c;
  --secondary-hover: #152744;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-main: #ffffff;
  --bg-alt: #f4f6f8;
  --bg-dark: #070e1a;
  --border-color: #e5e7eb;
  
  --font-sans: var(--font-inter), system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
  background: var(--bg-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

.section {
  padding: 5rem 0;
}

.title-primary {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.title-secondary {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-main);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.topbar {
  background: var(--secondary);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.contactInfo {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.contactItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.socialLinks {
  display: flex;
  gap: 0.75rem;
}

.socialLinks a {
  transition: opacity 0.2s;
}

.socialLinks a:hover {
  opacity: 0.8;
}

.navbar {
  padding: 1rem 0;
}

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

.logoWrapper {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}

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

.logoSubtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: -4px;
}

.navLinks {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.navLink {
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
}

.navLink:hover {
  color: var(--primary);
}

.navLink::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.navLink:hover::after {
  width: 100%;
}

.btnPrimary {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btnPrimary:hover {
  background: var(--primary-hover);
}

@media (max-width: 1024px) {
  .navLinks {
    display: none;
  }
}
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  background-color: var(--secondary);
  background-image: linear-gradient(rgba(12, 24, 44, 0.75), rgba(12, 24, 44, 0.75)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2075&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.heroContent {
  max-width: 800px;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.heroTitle {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.heroTitle span {
  color: var(--primary);
}

.heroSubtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 650px;
  color: #ddd;
}

.heroButtons {
  display: flex;
  gap: 1rem;
}

.btnPrimary {
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btnPrimary:hover {
  background: var(--primary-hover);
}

.btnSecondary {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 2px solid white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* Features */
.features {
  background: var(--secondary);
  color: white;
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.featureIcon {
  color: var(--primary);
  background: rgba(223, 151, 33, 0.1);
  padding: 12px;
  border-radius: 8px;
}

.featureTitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.featureDesc {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.4;
}

/* Services */
.services {
  background: var(--bg-alt);
}

.servicesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.serviceCard {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviceCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.serviceImage {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.serviceContent {
  padding: 1.5rem;
}

.serviceTitle {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}

.serviceIcon {
  color: var(--primary);
}

.serviceDesc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Fleet */
.fleet {
  background: var(--secondary);
  color: white;
}

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

.fleetStat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fleetNum {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
}

.fleetLabel {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 600;
}

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

.fleetImg {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.fleetAction {
  display: flex;
  justify-content: center;
}

/* Destinations & Grid Wrapper */
.twoColSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.destinations {
  background: var(--secondary);
  color: white;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.destinationsTitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
}
.destinationsTitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-top: 1rem;
}

.mapCities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cityBadge {
  background: rgba(255,255,255,0.05);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.1);
}
.cityBadge.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}


/* Contact / Quote */
.contact {
  background: var(--bg-alt);
}

.contactGrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.formBox, .contactBox {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contactBox {
  display: flex;
  flex-direction: column;
}

.boxTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

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

.formGroup {
  display: flex;
  flex-direction: column;
}

.formGroup.full {
  grid-column: 1 / -1;
}

.input {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fdfdfd;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

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

.contactList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contactListItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.contactIcon {
  color: var(--primary);
}

.contactImg {
  margin-top: auto;
  border-radius: 8px;
  overflow: hidden;
}

.contactImg img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .featuresGrid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2rem;
  }
  .servicesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleetHeader {
    grid-template-columns: repeat(2, 1fr);
  }
  .twoColSection {
    grid-template-columns: 1fr;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .heroTitle {
    font-size: 2.5rem;
  }
  .featuresGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .servicesGrid {
    grid-template-columns: 1fr;
  }
  .fleetImages {
    grid-template-columns: 1fr;
  }
  .formGrid {
    grid-template-columns: 1fr;
  }
  .heroButtons {
    flex-direction: column;
  }
}
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

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

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  letter-spacing: -1px;
}

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

.logoSubtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  font-weight: 600;
  color: #999;
  margin-top: -8px;
}

.brandText {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.columnTitle {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link {
  color: #bbb;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.link:hover {
  color: var(--primary);
}

.social {
  display: flex;
  gap: 1rem;
}

.social a {
  background: rgba(255,255,255,0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.social a:hover {
  background: var(--primary);
}

.bottomBar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #888;
}

.legal {
  display: flex;
  gap: 1rem;
}

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

@media (max-width: 768px) {
  .footerGrid {
    grid-template-columns: 1fr;
  }
  .bottomBar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
