/* Modern Web Design Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #00d9ff, #000000);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar i {
  font-size: 1rem;
  color: #00ff88;
}

.top-bar span {
  font-weight: 500;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
}



.logo-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #00ff88;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ff88;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #0c1330 0%, #07abdd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero Background Animations */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: roadGrid 20s linear infinite;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d9ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #00d9ff;
  animation: particleFloat 8s linear infinite;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.hero-routes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.hero-routes::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -100px;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d9ff, transparent);
  animation: gpsRoute 6s linear infinite;
}

.hero-routes::after {
  content: '';
  position: absolute;
  bottom: 40%;
  right: -100px;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d9ff, transparent);
  animation: gpsRoute 6s linear infinite reverse;
}

.hero-gps-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.hero-gps-dots::before,
.hero-gps-dots::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00d9ff;
  border-radius: 50%;
  box-shadow: 0 0 20px #00d9ff;
  animation: gpsPulse 3s ease-in-out infinite;
}

.hero-gps-dots::before {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.hero-gps-dots::after {
  bottom: 35%;
  right: 25%;
  animation-delay: 1.5s;
}

.hero-content {
  z-index: 50;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 20px;
  animation: contentGlow 4s ease-in-out infinite;
  z-index: -1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  animation: titleUnderline 3s ease-in-out infinite;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
  position: relative;
  z-index: 55;
}

.cta-buttons::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(0,255,136,0.1) 0%, transparent 70%);
  border-radius: 15px;
  animation: buttonGlow 3s ease-in-out infinite;
  z-index: -1;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 60;
  pointer-events: auto;
}

.btn-primary {
  background: #00ff88;
  color: #000;
}

.btn-primary:hover {
  background: #00cc6a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #00e676, #00b359);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-form-full {
  width: auto;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
}

.btn-index-form {
  width: 100%;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.btn-whatsapp {
  width: 100%;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.btn-hero-contact {
  width: auto;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  z-index: 65;
  pointer-events: auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ff0000, #e5ff00);
  box-shadow: 0 10px 25px rgba(12, 19, 48, 0.4);
}

.service-card:hover h3 {
  color: #667eea;
  transform: scale(1.05);
}

.service-card:hover p {
  color: #555;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0c1330, #07abdd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(12, 19, 48, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Fleet Section */
.fleet {
  padding: 100px 0;
  background: transparent;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fleet-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fleet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.fleet-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(155deg, #0c1330 , #07abdd);
  display: flex;
   flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}

.fleet-image h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem 0;
  color: white;
}

.fleet-image p {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Fleet Details Panel */
.fleet-details-panel {
  display: none;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-top: 3rem;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease;
}

.fleet-details-panel.show {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.fleet-details-content {
  padding: 0;
}

.fleet-details-header {
  background: linear-gradient(135deg, #0c1330, #07abdd);
  color: white;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-details-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.fleet-details-header h3 i {
  margin-right: 1rem;
  font-size: 2rem;
  color: white;
}

.close-details {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.close-details:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fleet-details-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.vehicle-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.vehicle-detail-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.vehicle-detail-item i {
  font-size: 1.5rem;
  color: #07abdd;
  margin-top: 0.2rem;
}

.vehicle-detail-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.vehicle-detail-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.fleet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fleet-item:hover .fleet-overlay {
  opacity: 1;
}

.fleet-overlay a {
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.fleet-overlay a:hover {
  background: white;
  color: #333;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d9ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.about-image {
  height: 400px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.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 textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
}

/* Contact Map */
.contact-map {
  margin-top: 4rem;
  text-align: center;
}

.contact-map h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  display: block;
  border-radius: 15px;
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00ff88;
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #999;
}

/* Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  transform: translateX(400px);
  transition: transform 0.5s ease;
  z-index: 10000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification.show {
  transform: translateX(0);
}

.notification i {
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    width: 50px;
    height: 50px;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    height: auto;
    min-height: 350px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }
}

/* Daha küçük telefonlar için */
@media (max-width: 480px) {
  .services {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 1rem;
    min-height: 300px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section-title p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .container {
    padding: 0 0.5rem;
  }
}

/* Loading Screen */
#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.loader-circle {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 1rem;
}

.loader-dots {
  display: flex;
  gap: 0.5rem;
}

.loader-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.loader-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
  animation-delay: 0.4s;
}

.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* Animations */
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

@keyframes particleFloat {
  0% { 
    transform: translateY(0);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-20px);
    opacity: 0.6;
  }
  100% { 
    transform: translateY(-40px);
    opacity: 0.3;
  }
}

@keyframes backgroundShift {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% { 
    transform: translate(-20px, -20px) rotate(90deg);
    opacity: 0.5;
  }
  50% { 
    transform: translate(20px, -10px) rotate(180deg);
    opacity: 0.4;
  }
  75% { 
    transform: translate(-10px, 20px) rotate(270deg);
    opacity: 0.6;
  }
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.1;
  }
  25% { 
    transform: translate(30px, -20px) scale(1.2);
    opacity: 0.2;
  }
  50% { 
    transform: translate(-20px, 30px) scale(0.8);
    opacity: 0.15;
  }
  75% { 
    transform: translate(40px, 10px) scale(1.1);
    opacity: 0.25;
  }
}

@keyframes contentGlow {
  0%, 100% { 
    opacity: 0.1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.3;
    transform: scale(1.05);
  }
}

@keyframes titleUnderline {
  0%, 100% { width: 0; }
  50% { width: 200px; }
}

@keyframes buttonGlow {
  0%, 100% { 
    opacity: 0.1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.3;
    transform: scale(1.02);
  }
}

/* Additional Floating Elements */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(3px 3px at 15% 25%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 85% 75%, rgba(255,255,255,0.3), transparent),
    radial-gradient(4px 4px at 45% 15%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 95% 45%, rgba(255,255,255,0.5), transparent),
    radial-gradient(3px 3px at 25% 85%, rgba(255,255,255,0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 150px;
  animation: sparkleFloat 20s linear infinite;
  z-index: 2;
}

@keyframes sparkleFloat {
  0% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-50px) rotate(180deg);
    opacity: 0.6;
  }
  100% { 
    transform: translateY(-100px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Wave Effect */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: waveMove 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes waveMove {
  0%, 100% { 
    transform: translateX(-100%);
    opacity: 0.1;
  }
  50% { 
    transform: translateX(100%);
    opacity: 0.3;
  }
}

/* Transport Animations */
@keyframes roadGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes truckFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
  25% { 
    transform: translate(30px, -20px) scale(1.1);
    opacity: 1;
  }
  50% { 
    transform: translate(-20px, 30px) scale(0.9);
    opacity: 0.6;
  }
  75% { 
    transform: translate(40px, 10px) scale(1.05);
    opacity: 0.9;
  }
}

@keyframes gpsRoute {
  0% { 
    transform: translateX(-100%) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(0%) rotate(180deg);
    opacity: 0.6;
  }
  100% { 
    transform: translateX(100%) rotate(360deg);
    opacity: 0.3;
  }
}

@keyframes containerMove {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }
  33% { 
    transform: translate(20px, -15px) rotate(45deg);
    opacity: 0.3;
  }
  66% { 
    transform: translate(-15px, 25px) rotate(-45deg);
    opacity: 0.2;
  }
}

@keyframes gpsPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes deliveryRoute {
  0% { 
    transform: translateX(-100%) translateY(0);
    opacity: 0.2;
  }
  25% { 
    transform: translateX(-50%) translateY(-20px);
    opacity: 0.4;
  }
  50% { 
    transform: translateX(0%) translateY(0);
    opacity: 0.6;
  }
  75% { 
    transform: translateX(50%) translateY(20px);
    opacity: 0.4;
  }
  100% { 
    transform: translateX(100%) translateY(0);
    opacity: 0.2;
  }
}

/* Additional Transport Elements */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Speed Lines */
    linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.1) 15%, transparent 20%),
    linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.1) 65%, transparent 70%),
    linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.1) 35%, transparent 40%),
    linear-gradient(90deg, transparent 80%, rgba(255,255,255,0.1) 85%, transparent 90%);
  animation: speedLines 12s linear infinite;
  z-index: 2;
}

@keyframes speedLines {
  0% { 
    transform: translateX(-100%);
    opacity: 0.1;
  }
  50% { 
    transform: translateX(0%);
    opacity: 0.3;
  }
  100% { 
    transform: translateX(100%);
    opacity: 0.1;
  }
}

/* Logistics Network */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Network Nodes */
    radial-gradient(4px 4px at 15% 25%, rgba(7,171,221,0.8), transparent),
    radial-gradient(4px 4px at 85% 75%, rgba(7,171,221,0.8), transparent),
    radial-gradient(4px 4px at 45% 15%, rgba(7,171,221,0.8), transparent),
    radial-gradient(4px 4px at 95% 45%, rgba(7,171,221,0.8), transparent),
    radial-gradient(4px 4px at 25% 85%, rgba(7,171,221,0.8), transparent),
    /* Network Connections */
    linear-gradient(45deg, transparent 45%, rgba(7,171,221,0.2) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 35%, rgba(7,171,221,0.2) 40%, transparent 45%),
    linear-gradient(90deg, transparent 65%, rgba(7,171,221,0.2) 70%, transparent 75%);
  animation: networkPulse 6s ease-in-out infinite;
  z-index: 3;
}

/* Floating Particles */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleFloat 15s linear infinite;
  z-index: 2;
}

/* Transport Page Specific Styles */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.process-step:hover::before {
  left: 100%;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #07abdd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
}

.process-step h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.process-step p {
  color: #666;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ff88, #07abdd);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #07abdd, #00ff88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(7, 171, 221, 0.3);
}

.feature-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Enhanced Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Transport Page */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step,
  .feature-card {
    padding: 1.5rem;
  }
  
  .process-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Transport Page Hero Enhancements */
.hero .hero-content h1 {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Transport Page Modern Styles */
.transport-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 255, 136, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

.hero-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(0, 255, 136, 0.1) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 255, 136, 0.1) 50%, transparent 51%);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  color: #00ff88;
  font-size: 0.9rem;
  font-weight: 500;
}

.gradient-text {
  background: linear-gradient(45deg, #00ff88, #07abdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  justify-content: center;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-stats .stat-number.animating {
  transform: scale(1.02);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.hero-stats .stat-number::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #07abdd);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.hero-stats .stat-number.animating::after {
  width: 100%;
  opacity: 1;
}

.hero-stats .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid #00ff88;
  color: #00ff88;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #00ff88;
  color: #1a1a2e;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #00ff88, #07abdd);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Modern Service Cards */
.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00ff88, #07abdd);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0c1330, #07abdd);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #555;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.service-features i {
  color: #00ff88;
  font-size: 0.8rem;
}

/* Timeline Design */
.process-section {
  background: #f8f9fa;
  padding: 6rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00ff88, #07abdd);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #00ff88, #07abdd);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid #00ff88;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00ff88;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
  max-width: 300px;
}

.timeline-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Modern Features Grid */
.features-section {
  padding: 6rem 0;
  background: white;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-modern {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #07abdd, #00ff88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-modern {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(7, 171, 221, 0.3);
}

.feature-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Modern Contact Section */
.contact-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 6rem 0;
  color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-badge {
  display: inline-block;
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-details-modern {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-modern {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00ff88;
}

.contact-text h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-text p {
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Modern Contact Form */
.contact-form-modern {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-modern {
  margin-bottom: 1.5rem;
}

.form-group-modern label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: #00ff88;
  background: rgba(255, 255, 255, 0.15);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-primary-modern {
  background: linear-gradient(45deg, #00ff88, #07abdd);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* Modern Footer */
.footer-modern {
  background: #0f0f23;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content-modern {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo h4 {
  color: #00ff88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link-modern {
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-modern:hover {
  background: #00ff88;
  color: #0f0f23;
  transform: translateY(-2px);
}

.footer-section-modern h5 {
  color: #00ff88;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section-modern ul {
  list-style: none;
  padding: 0;
}

.footer-section-modern ul li {
  margin-bottom: 0.5rem;
}

.footer-section-modern ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section-modern ul li a:hover {
  color: #00ff88;
}

.footer-section-modern ul li i {
  color: #00ff88;
  margin-right: 0.5rem;
}

.footer-bottom-modern {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design for Transport Page */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .services-showcase {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: row !important;
  }
  
  .timeline-content {
    margin-left: 4rem;
    margin-right: 0;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  height: 80vh;
  background: linear-gradient(135deg, #0c1330 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

/* Hero Background Elements */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: roadGrid 15s linear infinite;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 200px 60px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 240px 20px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 280px 90px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 320px 50px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 360px 80px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 400px 10px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 440px 70px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 480px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 520px 60px, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 560px 90px, rgba(255,255,255,0.6), transparent);
  background-repeat: repeat;
  background-size: 600px 100px;
  animation: particleFloat 20s linear infinite;
  z-index: 2;
}

.hero-routes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(0,255,136,0.3) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 30%, rgba(0,255,136,0.2) 40%, transparent 50%),
    linear-gradient(90deg, transparent 60%, rgba(0,255,136,0.25) 70%, transparent 80%);
  animation: gpsRoute 25s linear infinite;
  z-index: 1;
}

.hero-gps-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(3px 3px at 20% 30%, rgba(0,255,136,0.8), transparent),
    radial-gradient(3px 3px at 70% 70%, rgba(0,255,136,0.8), transparent),
    radial-gradient(3px 3px at 40% 60%, rgba(0,255,136,0.8), transparent),
    radial-gradient(3px 3px at 90% 40%, rgba(0,255,136,0.8), transparent),
    radial-gradient(3px 3px at 30% 90%, rgba(0,255,136,0.8), transparent);
  animation: gpsPulse 4s ease-in-out infinite;
  z-index: 3;
}

.contact-hero .hero-content {
  z-index: 4;
  color: white;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  color: #00ff88;
  font-size: 0.9rem;
  font-weight: 500;
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
  }
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, #00ff88, #07abdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.contact-hero h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  color: rgba(255, 255, 255, 0.9);
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-contact-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-stat:hover {
  transform: translateY(-5px);
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
}

.contact-stat i {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 0.5rem;
}

.contact-stat span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Hero Animations */
@keyframes roadGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes particleFloat {
  0% { 
    transform: translateY(0);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-60px);
    opacity: 0.9;
  }
  100% { 
    transform: translateY(-120px);
    opacity: 0.6;
  }
}

@keyframes gpsRoute {
  0% { 
    transform: translateX(-100%) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(0%) rotate(180deg);
    opacity: 0.6;
  }
  100% { 
    transform: translateX(100%) rotate(360deg);
    opacity: 0.3;
  }
}

@keyframes gpsPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.contact-page {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-page .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.contact-page .contact-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.contact-page .contact-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-page .contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.contact-page .contact-form p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-page .form-group {
  margin-bottom: 1.5rem;
}

.contact-page .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.contact-page .form-group input,
.contact-page .form-group textarea,
.contact-page .form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus,
.contact-page .form-group select:focus {
  outline: none;
  border-color: #00ff88;
}

.contact-page .form-group textarea {
  height: 120px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: #00ff88;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.contact-page .btn-primary {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: white;
  padding: 2rem 3rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: block;
  text-align: center;
}

.contact-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.contact-page .contact-map {
  margin-top: 4rem;
}

.contact-page .contact-map h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.contact-page .contact-map p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-page .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
  margin-top: 4rem;
  padding: 4rem 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.faq-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #00ff88;
}

.faq-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.faq-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    height: 70vh;
  }
  
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero h2 {
    font-size: 1.5rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .hero-contact-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-stat {
    padding: 0.8rem 1rem;
  }
  
  .contact-page .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-page .contact-form {
    padding: 2rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .contact-page .contact-map iframe {
    height: 300px;
  }
}
