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

:root {
  --primary-color: #d4a437;
  --secondary-color: #1a4d2e;
  --text-dark: #333;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER & NAVIGATION */

.header {
  background: var(--secondary-color);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-box {
  flex-shrink: 0;
}

.logo {
  width: 70px;
  height: auto;
}

.navbar {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.navbar a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

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

.call-btn,
.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.call-btn,
.btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--text-light);
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover,
.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 164, 55, 0.3);
}

/* HERO SECTION */

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=2070&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.3rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* SERVICES SECTION */

.services {
  padding: 80px 0;
  background: var(--bg-light);
}

.services h2,
.fleet h2,
.destinations h2,
.contact h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

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

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(212, 164, 55, 0.2);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

/* FLEET SECTION */

.fleet {
  padding: 80px 0;
}

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

.fleet-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.fleet-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 164, 55, 0.2);
}

.fleet-image {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.fleet-card h3 {
  font-size: 1.5rem;
  margin: 20px 20px 10px;
  color: var(--secondary-color);
}

.fleet-card p {
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.fleet-card ul {
  list-style: none;
  padding: 0 20px 20px;
}

.fleet-card li {
  padding: 8px 0;
  color: #666;
  border-bottom: 1px solid #eee;
}

.fleet-card li:last-child {
  border-bottom: none;
}

.fleet-card li:before {
  content: "✓ ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 8px;
}

/* DESTINATIONS SECTION */

.destinations {
  padding: 80px 0;
  background: var(--bg-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.destination-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-color);
}

.destination-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(212, 164, 55, 0.2);
}

.destination-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.destination-card p {
  color: #666;
  line-height: 1.8;
}

/* CONTACT SECTION */

.contact {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.info-item p {
  color: #666;
}

.info-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition);
}

.info-item a:hover {
  color: var(--secondary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 10px;
}

/* FOOTER */

.footer {
  background: var(--secondary-color);
  color: var(--text-light);
  padding: 50px 0 20px;
}

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

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  transform: scale(1.2);
  background: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .nav-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }

  .navbar {
    gap: 15px;
    order: 3;
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .call-btn {
    order: 2;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .services h2,
  .fleet h2,
  .destinations h2,
  .contact h2 {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .call-btn,
  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .header {
    padding: 15px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 50px;
  }

  .navbar {
    gap: 10px;
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .services h2,
  .fleet h2,
  .destinations h2,
  .contact h2 {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}