@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Colors - Premium Dark Mode with Gold Accents */
  --bg-dark: #070707;
  --bg-card: #121212;
  --bg-card-hover: #1c1c1c;
  --text-main: #fcfcfc;
  --text-muted: #999999;
  --gold-primary: #d4af37;
  --gold-hover: #b89326;
  --gold-light: rgba(212, 175, 55, 0.15);
  --border-color: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1280px;
  --header-height: 75px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-card);
}

.text-center { text-align: center !important; }
.text-align-center { text-align: center; } /* added just in case */
.text-gold { color: var(--gold-primary); }
.text-white { color: #fff; }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; font-size: 0.875rem; font-weight: 600; }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow { box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--gold-primary);
  color: #000 !important;
  border-color: var(--gold-primary);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid;
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary) !important;
  transform: translateY(-2px);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: var(--gold-primary);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
  background: var(--gold-primary);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  height: 65px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0); /* Make logo solid black on yellow background */
}

.footer .logo {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: #111111;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111111;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(7, 7, 7, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    gap: 30px;
  }
  .header.scrolled .nav-links {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .nav-links.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none; /* Hide button in mobile menu, keep it clean */
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

.inner-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero-buttons { flex-direction: column; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 40px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 2rem; }
}

/* Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  background-color: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--gold-light);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 25px;
  transition: var(--transition);
}

.card:hover .icon-wrapper {
  background-color: var(--gold-primary);
  color: #000;
}

.link-hover {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

/* Section specific styling */
.check-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-primary);
  color: #000;
  padding: 30px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 150px;
}

.experience-badge h2 {
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--gold-primary);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--gold-primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

.fleet-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-image {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.fleet-image:hover img {
  transform: scale(1.05);
}

.stat-box {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.stat-num {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 5px;
}

/* FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  background-color: var(--bg-card);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 30px;
  background-color: var(--bg-dark);
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.faq-question i {
  transition: transform 0.3s;
}

/* Contacts page styling */
.contact-info-card {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.contact-info-card .icon-wrapper {
  margin: 0 auto 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #111;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { max-width: 300px; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--gold-primary); }

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-contact i {
  color: var(--gold-primary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.875rem;
}
