/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 0.5rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  overflow: hidden;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 140px;
  animation: scrollAcross 8s linear infinite;
}

/* Logo scrolling animation - moves across navbar and disappears */
@keyframes scrollAcross {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(400px);
    opacity: 1;
  }
  70% {
    transform: translateX(700px);
    opacity: 0.5;
  }
  80% {
    transform: translateX(900px);
    opacity: 0;
  }
  100% {
    transform: translateX(1000px);
    opacity: 0;
  }
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffa500;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 70px;
}

/* Hero variations for different pages */
.hero-about {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920') center/cover no-repeat;
}

.hero-services {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920') center/cover no-repeat;
}

.hero-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('https://images.unsplash.com/photo-1556745753-b2904692b3cd?w=1920') center/cover no-repeat;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffa500;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  border-bottom: 3px solid #ffa500;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.overlay p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.fade-in {
  animation: fadeIn 1.5s ease-in;
}

.fade-in.delay {
  animation: fadeIn 1.5s ease-in 0.5s backwards;
}

.fade-in.delay-1 {
  animation: fadeIn 1.5s ease-in 0.8s backwards;
}

.fade-in.delay-2 {
  animation: fadeIn 1.5s ease-in 1.3s backwards;
}

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

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

/* About Content Section */
.about-content-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

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

.about-text-block h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.about-text-block p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.fleet-showcase {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fleet-showcase h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  text-align: center;
}

.fleet-photo {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.fleet-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Mission, Vision, Values */
.mission-vision-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.mvv-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mvv-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.stats-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffa500;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
}

/* Our Impact in Numbers Section */
.impact-section {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 10px;
}

.impact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.impact-number {
  font-size: 3rem;
  font-weight: bold;
  color: #ffa500;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1.1rem;
  color: white;
}

/* Why Choose Section */
.why-choose-section {
  margin-top: 4rem;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a2e;
  margin-bottom: 3rem;
}

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

.why-choose-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.why-choose-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: #555;
  line-height: 1.8;
}

/* Services Content Section */
.services-content-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-intro h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.services-intro p {
  color: #555;
  line-height: 1.8;
}

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

.service-card {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
}

/* Contact Content Section */
.contact-content-section {
  background: #f5f5f5;
  padding: 5rem 0;
}

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

.contact-form-wrapper,
.contact-info-wrapper {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a2e;
}

.submit-btn {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  min-width: 50px;
}

.contact-details h4 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #666;
  line-height: 1.8;
}

/* Quick Contact */
.quick-contact {
  margin: 2rem 0;
}

.quick-contact h4 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.quick-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quick-btn {
  background: #1a1a2e;
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.quick-btn:hover {
  background: #ffa500;
}

/* Social Media */
.social-media {
  margin-top: 2rem;
}

.social-media h4 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

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

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1a1a2e;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background: #ffa500;
  transform: scale(1.1);
}

/* Map Section */
.map-section {
  margin-top: 3rem;
}

.map-section h3 {
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  text-align: center;
}

.map-placeholder {
  background: #ddd;
  height: 400px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar ul {
    gap: 1rem;
  }

  .company-name {
    font-size: 1.8rem;
  }

  .overlay h1 {
    font-size: 2.5rem;
  }

  .overlay p {
    font-size: 1.2rem;
  }

  .about-grid,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .mission-vision-values,
  .services-grid,
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .company-name {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
