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

:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --success-color: #28a745;
  --whatsapp-color: #25d366;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #333;
  --border-color: #e9ecef;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --border-radius-large: 20px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

/* Desktop Header */
.desktop-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.call-btn,
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.call-btn:hover {
  background: white;
  color: var(--primary-color);
}

.whatsapp-btn {
  background: var(--whatsapp-color);
  border-color: var(--whatsapp-color);
}

.whatsapp-btn:hover {
  background: #128c7e;
  border-color: #128c7e;
}

/* Mobile Header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.mobile-logo img {
  height: 35px;
  width: auto;
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-call-btn,
.mobile-whatsapp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-call-btn:hover {
  background: white;
  color: var(--primary-color);
}

.mobile-whatsapp-btn {
  background: var(--whatsapp-color);
  border-color: var(--whatsapp-color);
}

.mobile-whatsapp-btn:hover {
  background: #128c7e;
  border-color: #128c7e;
}

.menu-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transition: left 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-menu.active {
  left: 0;
}

.nav-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
}

.nav-logo img {
  height: 30px;
  width: auto;
}

.nav-close-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-menu-list {
  flex: 1;
  list-style: none;
  padding: 2rem 0;
  margin: 0;
}

.nav-menu-list li {
  margin-bottom: 0.5rem;
}

.nav-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: var(--transition);
  font-weight: 500;
}

.nav-menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-menu-link i {
  width: 20px;
  text-align: center;
}

.nav-menu-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-contact-info {
  margin-bottom: 1.5rem;
}

.nav-contact-info p {
  color: white;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

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

.nav-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.nav-social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Header */
@media (min-width: 768px) {
  .desktop-header {
    display: flex;
  }

  .mobile-header {
    display: none;
  }

  .nav-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
  }
}

/* Main Content */
main {
  margin-top: 70px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
   content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://res.cloudinary.com/dx2ak2xwe/image/upload/v1753899366/22978_y3yke0.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2; 
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

/* Booking Section */
.booking-section {
  padding: 2rem 0;
  background: var(--light-color);
}

.booking-card {
  background: white;
  border-radius: var(--border-radius-large);
  padding: 2rem;
  box-shadow: var(--shadow-heavy);
  margin: -50px auto 0;
  position: relative;
  z-index: 10;
  max-width: 500px;
}

.booking-card h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.booking-card h2 i {
  margin-right: 10px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

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

.form-group label i {
  margin-right: 8px;
  width: 16px;
}

.pickup-icon {
  color: var(--success-color);
}

.destination-icon {
  color: var(--danger-color);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:hover {
  background: var(--light-color);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.book-btn {
  background: linear-gradient(135deg, var(--whatsapp-color) 0%, #128c7e 100%);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.book-btn:hover::before {
  left: 100%;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.book-btn:active {
  transform: translateY(0);
}

.book-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: white;
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 700;
}

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

.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: var(--light-color);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Fleet Section */
.fleet {
  padding: 4rem 0;
  background: var(--light-color);
}

.fleet h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 700;
}

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

.fleet-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.fleet-card img {
  width: calc(100% - 15px);
  height: 200px;
  object-fit: cover;
  padding: 65px;
}

.fleet-card h3 {
  padding: 1rem 1rem 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.fleet-card p {
  padding: 0 1rem;
  color: #666;
  font-size: 0.9rem;
}

.fleet-price {
  padding: 0.5rem 1rem 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background: white;
}

.about h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 700;
}

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

.feature {
  text-align: center;
  padding: 2rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h3 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-weight: 600;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: var(--light-color);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: 700;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1rem;
  width: 50px;
  text-align: center;
}

.contact-item h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.contact-item p {
  color: #666;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

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

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
  padding: 0.5rem;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.loading-spinner {
  text-align: center;
  color: white;
}

.loading-spinner i {
  font-size: 3rem;
  animation: bounce 1s infinite;
  color: var(--whatsapp-color);
  margin-bottom: 1rem;
}

.loading-spinner p {
  font-size: 1.2rem;
  font-weight: 500;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 90px;
  right: 20px;
  background: var(--success-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease;
  max-width: 300px;
}

.notification.error {
  background: var(--danger-color);
}

.notification.warning {
  background: var(--warning-color);
  color: var(--dark-color);
}

.notification.info {
  background: var(--info-color);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
