@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary-color: #1a73e8;
  --secondary-color: #34a853;
  --accent-color: #008cad;;
  --dark-color: #202124;
  --light-color: #f8f9fa;
  --text-dark: #202124;
  --text-light: #5f6368;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #fff;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(32, 33, 36, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.navbar-brand i {
  margin-right: 0.75rem;
  color: var(--accent-color);
  font-size: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem !important;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::before {
  width: 70%;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.75) 0%, rgba(52, 168, 83, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.3);
  animation: heroFadeInUp 1s ease-out 0.2s both;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  animation: heroFadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  animation: heroFadeInUp 1s ease-out 0.6s both;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: #d33425;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(234, 67, 53, 0.4);
  color: #fff;
}

.btn-outline-light {
  border: 2.5px solid #fff;
  color: #fff;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  animation: scrollBounce 2.5s infinite;
  cursor: pointer;
  z-index: 2;
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: slideUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.1s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
  margin-bottom: 2rem;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-10deg);
  box-shadow: 0 12px 36px rgba(26, 115, 232, 0.5);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
  letter-spacing: -0.3px;
}

.service-card > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features li {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-features i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.service-card:hover .service-features li {
  color: var(--dark-color);
  padding-left: 5px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  animation: fadeInScale 0.6s ease-out both;
}

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.15s; }
.package-card:nth-child(3) { animation-delay: 0.2s; }
.package-card:nth-child(4) { animation-delay: 0.25s; }
.package-card:nth-child(5) { animation-delay: 0.1s; }
.package-card:nth-child(6) { animation-delay: 0.15s; }
.package-card:nth-child(7) { animation-delay: 0.2s; }
.package-card:nth-child(8) { animation-delay: 0.25s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition);
}

.package-card:hover .package-image {
  transform: scale(1.1);
}

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.package-content {
  padding: 1.75rem;
}

.package-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.package-content > p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-content i {
  color: var(--primary-color);
}

.package-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8eaed;
  flex-wrap: wrap;
}

.package-details span {
  color: var(--text-light);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-details i {
  color: var(--secondary-color);
}

.fleet-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 18px;
  transition: var(--transition);
  border: 2px solid #e8eaed;
  animation: slideUp 0.6s ease-out both;
}

.fleet-card:nth-child(1) { animation-delay: 0.1s; }
.fleet-card:nth-child(2) { animation-delay: 0.2s; }
.fleet-card:nth-child(3) { animation-delay: 0.3s; }
.fleet-card:nth-child(4) { animation-delay: 0.4s; }

.fleet-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f1f5ff 0%, #fff 100%);
  box-shadow: 0 16px 40px rgba(26, 115, 232, 0.15);
}

.fleet-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.fleet-card:hover .fleet-icon {
  transform: scale(1.1) rotateZ(10deg);
}

.fleet-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.fleet-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-card {
  text-align: center;
  padding: 2.5rem;
  background: #fff;
  border-radius: 18px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  animation: slideUp 0.6s ease-out both;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.1s; }
.why-card:nth-child(5) { animation-delay: 0.2s; }
.why-card:nth-child(6) { animation-delay: 0.3s; }

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.why-card:hover .why-icon {
  transform: scale(1.15);
  box-shadow: 0 12px 36px rgba(26, 115, 232, 0.5);
}

.why-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  animation: slideUp 0.6s ease-out both;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.testimonial-author h5 {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.testimonial-author p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  border-radius: 20px;
  margin: 3rem;
  animation: slideUp 0.8s ease-out;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.95;
  margin: 0;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.contact-info .lead {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-details {
  margin: 2.5rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: slideUp 0.6s ease-out both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
}

.contact-item:hover i {
  transform: scale(1.1);
}

.contact-item h5 {
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: slideUp 0.6s ease-out 0.4s both;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(234, 67, 53, 0.4);
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out 0.2s both;
}

.form-control {
  border: 2px solid #e8eaed;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: var(--transition);
  font-size: 0.95rem;
  background: #f8f9fa;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
  background: #fff;
}

.form-control::placeholder {
  color: var(--text-light);
}

.footer {
  background: var(--dark-color);
  color: #fff;
  margin-top: 4rem;
  padding: 3rem 0 1rem;
}

.footer h4, .footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer h4 {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer h4 i {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links a::before {
  content: '→';
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .cta-section {
    text-align: center;
  }

  .cta-section .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .contact-item {
    margin-bottom: 1.5rem;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
