:root {
  --primary-color: #1754cf;
  --primary-hover: #1042aa;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --font-family: 'Manrope', sans-serif;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  padding-top: 80px; /* Space for fixed header */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-img {
  height: 40px;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 500;
}

.lang-select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: inherit;
  cursor: pointer;
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Overlay to fix hero text visibility */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  color: white; /* Make text white */
  max-width: 800px;
  margin: 0 auto;
  text-align: center; /* Center align for better visibility */
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Typography & Layout Utility */
.py-large {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-title, h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle, .text-center > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Booking Card */
.booking-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.booking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-header .material-symbols-outlined {
  font-size: 3rem;
  color: var(--primary-color);
}

.booking-header h2 {
  font-size: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.booking-card .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.input-with-icon {
  position: relative;
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
  text-align: left;
}

.section-header p {
  color: var(--text-light);
  text-align: left;
  margin: 0;
}

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

/* Route Cards */
.route-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--bg-white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.route-category {
  color: var(--text-light);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.route-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.route-stats span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Services Page Specific */
.services-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.services-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-hero .hero-title {
  color: var(--text-dark);
  font-size: 3rem;
  text-shadow: none;
  margin-bottom: 1rem;
}

.services-hero .hero-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  text-shadow: none;
}

.services-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.services-tabs {
  display: flex;
  gap: 1rem;
  background-color: var(--bg-light);
  padding: 0.5rem;
  border-radius: 1rem;
}

.services-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
  transition: all var(--transition-speed);
}

.services-tab:hover {
  background-color: rgba(23, 84, 207, 0.1);
  color: var(--primary-color);
}

.services-tab.active {
  background-color: var(--bg-white);
  color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.services-cta {
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin-top: 4rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.services-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.services-cta-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.services-cta-text p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .services-cta-text p {
    margin: 0;
  }
}

/* Base Card Styling (from services.html structure) */
.card {
  background-color: var(--bg-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed);
}

.card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.card-category {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.card-badge {
  background-color: rgba(23, 84, 207, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-desc {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.card-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.card-feature .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  display: flex;
  flex-direction: column;
}

.card-price span:first-child {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-price span:last-child {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
}

.card-price small {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 400;
}


.fleet-grid {
  display: grid;
  gap: 2rem;
}

/* Cards */
.service-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform var(--transition-speed);
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-large {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-light);
}

.fleet-card {
  background-color: var(--bg-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.fleet-image {
  height: 250px;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fleet-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.feature-item .material-symbols-outlined {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.fleet-content .btn {
  margin-top: auto;
}

/* Footer */
.site-footer {
  background-color: var(--bg-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.brand-col p {
  color: var(--text-light);
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.footer-logo {
  height: 40px;
}

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

.social-links a {
  color: var(--text-light);
  width: 24px;
  height: 24px;
}

.social-links svg {
  fill: currentColor;
}

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

.footer-col h3 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

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

.footer-links .icon {
  color: var(--primary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-icon {
  background-color: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-tooltip {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Page Headers (About/Contact) */
.page-header {
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
}

/* Forms & Contact Info */
.contact-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .fleet-card {
    flex-direction: row;
  }
  .fleet-image {
    width: 50%;
    height: auto;
  }
  .fleet-content {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* Hide for mobile initially */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 1rem;
  }

  .main-nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    display: none; /* Hide desktop actions on mobile if desired, or adjust layout */
  }

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

.contact-column {
  padding: 2rem;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Update hero-video to apply to img too */
.hero-video, .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Page Headers (About/Contact) */
.page-header {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding: 6rem 0; /* Add padding here so it's not hidden behind navbar */
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}
