:root {
  --primary-color: #f59e0b;
  --dark-bg: #111827;
  --light-bg: #f9fafb;
  --text-light: #f3f4f6;
  --text-dark: #1f2937;
  --card-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
}

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

/* Header & Navbar */
.hero {
  background: linear-gradient(135deg, var(--dark-bg), #1f2937);
  color: var(--text-light);
  padding-top: 100px; /* Space for fixed navbar */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 50px;
  z-index: 100;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(10px);
}

.btn-primary{
  text-decoration: none;
  height: 40px;
  width: auto;
  background-color: #f59e0b;
  padding: 8px 12px;
  color: black;
  text-align: center;
}

.btn-secondary{
  text-decoration: none;
  height: 40px;
  width: auto;
  background-color: #25D366;
  padding: 8px 12px;
  color: white;
  text-align: center;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.language-switcher select {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: inherit;
}

/* Hero Section Content */
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-nav {
  margin-top: 30px;
}

.hero-nav h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
  opacity: 0.8;
}

.hero-nav .nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}

.hero-nav .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.hero-nav .nav-links a:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Route Cards & Slideshows */
.route-card {
  background: var(--card-bg);
  border-radius: 16px;
  margin: 40px 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: clamp(200px, 35vw, 420px);
  overflow: hidden;
}


.slideshow-container h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 2.2rem;
  z-index: 2;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenburns 20s infinite;
}

.card-grid {
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.taxi-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.taxi-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.taxi-card h3 {
  padding: 15px 15px 5px;
  font-size: 1.1rem;
}

.luggage-service {
  padding: 0 15px;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.price {
  padding: 0 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: inline-block; /* Allow the discount tag to sit next to it */
}

.discount-tag {
  background-color: #ef4444; /* A red-ish color for discount */
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px; /* Space from the price */
  display: inline-block; /* Make it an inline block to sit next to the price */
  transform: translateY(-5px); /* Slightly raise it to align with price */
}

.card-actions {
  margin-top: auto;
  padding: 15px;
  display: flex;
  gap: 10px;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}

.card-actions .btn {
  height: 35px;
  width: auto;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  flex-grow: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-actions .primary {
  background: var(--primary-color);
  color: var(--text-dark);
}

.card-actions .secondary {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.card-actions .primary:before {
  content: '📞';
  margin-right: 5px;
}

/* Package Section */
.package-section {
  background: var(--card-bg); /* Use a slightly different background */
  border-radius: 16px;
  margin: 40px 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  padding-bottom: 25px; /* Add padding to the bottom */
  text-align: center; /* Center the heading */
}

.package-section h2 {
  font-size: 2.2rem;
  padding: 25px;
  color: var(--text-dark);
}

.package-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.package-card img {
  width: 100%;
  height: 180px; /* Slightly taller images for packages */
  object-fit: cover;
}

.package-card h3 {
  padding: 15px 15px 10px;
  font-size: 1.2rem; /* Slightly larger font for package titles */
  flex-grow: 1; /* Allow title to take up available space */
}

/* Rate Table */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1rem;
  text-align: left;
}

.rate-table thead tr {
  background-color: var(--primary-color);
  color: var(--text-dark);
  text-align: left;
  font-weight: bold;
}

.rate-table th, .rate-table td {
  padding: 12px 15px;
}

.rate-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.rate-table tbody tr:nth-of-type(even) {
  background-color: #f3f4f6;
}

.rate-table tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary-color);
}

.rate-table tbody tr:hover {
  background-color: #e5e7eb;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 60px 20px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-form h3, .footer-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer input,
.footer textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #1f2937;
  color: #d1d5db;
}

.footer-contact p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.hashtags {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #9ca3af;
  opacity: 0.7;
}

.footer-note {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  border-top: 1px solid #374151;
  padding-top: 40px;
  color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.sticky-cta a {
  background: var(--primary-color);
  color: #fff;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.sticky-cta a:hover {
    transform: scale(1.1);
}

/* ===== Permanent Language Selector Container ===== */
.lang-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-size-adjust: inherit;
  justify-content: space-around;
  background: transparent;
}

/* ===== Card Styling ===== */
.lang-popup-content {
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Title ===== */
.lang-popup-content h3 {
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  margin: 0;
  color: #374151;
  white-space: nowrap;
}

/* ===== Select ===== */
.lang-popup-content select {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  cursor: pointer;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lang-popup-content select:hover {
  border-color: #2563eb;
}

.lang-popup-content select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}

.logo{
  border-radius: 6px;
  height: auto;
  width: 50px;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 480px) {
  .lang-popup {
    top: auto;
    bottom: 90px; /* stays above call/whatsapp buttons */
    right: 12px;
  }

  .lang-popup-content h3 {
    display: none; /* keep UI minimal on mobile */
  }

  .lang-popup-content {
    padding: 8px;
  }

  .lang-popup-content select {
    font-size: 14px;
  }
}

.footer-logo {
  width: clamp(70px, 12vw, 120px);
  height: auto;
  border-radius: 6px;
}


.seo-toggle {
  background-color: bisque;
  color: #111827;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
}

.seo-text {
  padding: 10px;
  margin-top: 15px;
  line-height: 1.7;
  color: #374151;
}

.hidden {
  display: none;
}
