/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a5c3a;
  --primary-dark: #0f3d26;
  --accent: #c9a84c;
  --accent-hover: #b8963f;
  --text: #2d2d2d;
  --text-light: #555555;
  --bg: #ffffff;
  --bg-light: #f5f9f7;
  --bg-dark: #0f2b1a;
  --border: #e0e6e3;
  --success: #28a745;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

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

ul {
  list-style: none;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  color: var(--primary-dark);
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ===== UTILITIES ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 600px;
  margin: 0.5rem auto 0;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
}

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

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

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

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

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

.nav-logo img {
  border-radius: 6px;
}

.nav-logo h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0;
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--primary-dark);
  color: #ffffff !important;
  padding: 0.6rem 2rem !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid var(--primary-dark);
  box-shadow: none;
  transition: all var(--transition);
  text-transform: none;
  letter-spacing: 0.2px;
  margin-left: 1rem;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--primary-dark) !important;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO CONTENT (shared by slider) ===== */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-content h1 {
  color: var(--bg);
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition);
}

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

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.highlight-card h3 {
  font-size: 1.1rem;
}

.highlight-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
}

.card ul li {
  padding: 0.4rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* ===== BOOKING FORM ===== */
.form-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.booking-form {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 1.5rem;
  text-align: center;
}

.form-submit .btn {
  min-width: 200px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

.stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: rgba(15, 37, 64, 0.92);
  padding: 1.25rem 1rem;
  backdrop-filter: blur(4px);
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 0.1rem;
  line-height: 1;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.about-image {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.about-image h3 {
  color: var(--accent);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-image p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-list {
  margin-top: 1.5rem;
}

.about-list li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

.about-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
}

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

.fleet-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

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

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

.fleet-card h3 {
  margin-bottom: 0.5rem;
}

.fleet-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Routes */
.routes-section {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 4rem 0;
  margin-top: 4rem;
}

.routes-section h2 {
  color: var(--bg);
  text-align: center;
  margin-bottom: 2rem;
}

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

.route-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.route-item h4 {
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.route-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.contact-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

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

.footer-col h3 {
  color: var(--bg);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition);
  cursor: pointer;
}

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

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

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--bg);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 61, 38, 0.8);
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 61, 38, 0.85) 0%, rgba(26, 92, 58, 0.7) 100%);
}

.slide .container {
  position: relative;
  z-index: 2;
}

.slide .hero-content {
  max-width: 650px;
  padding-top: 80px;
}

.slide .hero-content h1 {
  color: var(--bg);
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease forwards;
}

.slide .hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.slide .hero-content .hero-buttons {
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.slide.active .hero-content h1,
.slide.active .hero-content p,
.slide.active .hero-content .hero-buttons {
  opacity: 1;
}

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

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ===== UX ENHANCEMENTS ===== */

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth image loading */
img {
  transition: opacity 0.3s ease;
}

/* Better link underline for content */
.about-content a:not(.btn),
.card a:not(.btn) {
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

.about-content a:not(.btn):hover,
.card a:not(.btn):hover {
  color: var(--accent-hover);
}

/* Card icon circle background enhancement */
.card-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 4px 12px rgba(26, 92, 58, 0.2);
}

/* Highlight card hover improvement */
.highlight-card {
  border-bottom: 3px solid transparent;
}

.highlight-card:hover {
  border-bottom-color: var(--accent);
}

/* Fleet card image placeholder visual */
.fleet-icon {
  background: var(--bg-light);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Footer enhancements */
.footer-col img {
  opacity: 0.9;
}

.footer-col img:hover {
  opacity: 1;
}

/* Form input placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

/* Scroll to top visible on scroll (handled via JS) */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Loading animation for images */
.about-visual,
.page-banner {
  background-color: var(--bg-light);
}

/* ===== RESPONSIVE ===== */

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

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

  .about-visual-img {
    height: 300px;
  }

  h1 { font-size: 2rem; }
  .hero-content h1 { font-size: 2.5rem; }

  .container {
    width: 92%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header fix */
  .header {
    padding: 0 0.5rem;
  }

  .nav {
    padding: 0.75rem 0;
  }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    gap: 0.5rem;
    overflow-y: auto;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  /* Mobile overlay when nav open */
  .nav-links.active ~ .nav-overlay {
    display: block;
  }

  /* Hero Slider mobile */
  .hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }

  .slide {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .slide .hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .slide .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .slide .hero-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Highlights */
  .highlights {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
    gap: 1rem;
  }

  .highlight-card {
    padding: 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col img {
    max-width: 180px;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Fleet */
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  /* Slider controls */
  .slider-controls {
    bottom: 1.5rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* About visual */
  .about-visual-img {
    height: 220px;
  }

  .stats-overlay {
    padding: 1rem 0.5rem;
    position: relative;
  }

  .stat-item h3 {
    font-size: 1.4rem;
  }

  .stat-item p {
    font-size: 0.7rem;
  }

  /* Page banners */
  .page-banner {
    padding: 7rem 0 3rem;
  }

  .page-banner h1 {
    font-size: 1.75rem;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  /* Routes */
  .routes-grid {
    grid-template-columns: 1fr;
  }

  .routes-section {
    margin-top: 2rem;
    padding: 3rem 0;
  }

  /* Contact */
  .contact-grid {
    gap: 2rem;
  }

  .map-container iframe {
    height: 250px;
  }

  /* Tables - horizontal scroll on mobile */
  .booking-form table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Nav CTA on mobile */
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* About grid on services/about pages */
  .about-image {
    min-height: 200px;
    padding: 2rem;
  }

  .about-image h3 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  /* Fix touch targets - minimum 44px */
  .footer-col ul li {
    margin-bottom: 0.75rem;
  }

  .footer-col ul li a {
    padding: 0.25rem 0;
    display: inline-block;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }

  .header {
    padding: 0 0.25rem;
  }

  .nav {
    padding: 0.65rem 0;
  }

  .hero-content h1,
  .slide .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p,
  .slide .hero-content p {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .highlight-card {
    padding: 1.25rem;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .highlight-card h3 {
    font-size: 1rem;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .about-visual-img {
    height: 180px;
  }

  .stat-item h3 {
    font-size: 1.1rem;
  }

  .stat-item p {
    font-size: 0.6rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .card-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .fleet-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1rem;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    bottom: 6rem;
    right: 1rem;
    font-size: 1rem;
  }

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

  .nav-logo h2 {
    font-size: 1.1rem;
  }

  .nav-logo span {
    font-size: 0.6rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .page-banner {
    padding: 6rem 0 2.5rem;
  }

  .page-banner h1 {
    font-size: 1.5rem;
  }

  .page-banner p {
    font-size: 0.9rem;
  }

  /* Contact items stack nicely */
  .contact-item {
    gap: 0.75rem;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Extra small (very narrow phones) */
@media (max-width: 360px) {
  .nav-logo h2 {
    font-size: 1rem;
  }

  .nav-logo span {
    display: none;
  }

  .slide .hero-content h1 {
    font-size: 1.25rem;
  }

  .stats-overlay {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

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

  .stat-item h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }
}

/* ===== Technology Partners Popup ===== */
.company-popup {
    position: fixed;
    inset: 0;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease
}

.company-popup.is-open {
    opacity: 1;
    pointer-events: auto
}

.company-popup__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 20%, rgba(26, 92, 58, .2), rgba(0, 0, 0, .86) 60%);
    pointer-events: none
}

.company-popup__dialog {
    position: relative;
    width: min(940px, calc(100% - 30px));
    max-height: calc(100vh - 100px);
    overflow: hidden;
    margin: 84px auto 20px;
    background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 54%, #1e6b44 100%);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(201, 168, 76, .25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    color: #fff;
    transform: translateY(24px) scale(.96);
    transition: transform .35s ease;
    pointer-events: none
}

.company-popup__dialog::before,
.company-popup__dialog::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(6px);
    z-index: 0
}

.company-popup__dialog::before {
    background: radial-gradient(circle, rgba(201, 168, 76, .3), rgba(201, 168, 76, 0) 70%);
    top: -120px;
    right: -80px
}

.company-popup__dialog::after {
    background: radial-gradient(circle, rgba(201, 168, 76, .2), rgba(201, 168, 76, 0) 70%);
    bottom: -120px;
    left: -90px
}

.company-popup.is-open .company-popup__dialog {
    transform: translateY(0) scale(1);
    pointer-events: auto
}

.company-popup.is-open .company-popup__overlay {
    pointer-events: auto
}

.company-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2
}

.company-popup__close:hover {
    background: rgba(255, 255, 255, .26)
}

.company-popup__eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1
}

.company-popup__title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.company-popup__subtitle {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 14px;
    line-height: 1.7;
    max-width: 760px;
    position: relative;
    z-index: 1
}

.company-popup__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1
}

.company-popup__card {
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
    backdrop-filter: blur(5px)
}

.company-popup__brand {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 10px
}

.company-popup__card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.05rem
}

.company-popup__card p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px
}

.company-popup__mini {
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    margin-bottom: 12px
}

.company-popup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 13px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

.company-popup__cta:hover {
    transform: translateY(-1px)
}

.company-popup__cta--primary {
    color: #fff;
    background: linear-gradient(95deg, var(--accent), var(--accent-hover));
    box-shadow: 0 8px 24px rgba(201, 168, 76, .35)
}

.company-popup__cta--secondary {
    color: #fff;
    background: linear-gradient(95deg, #2d8a5e, #3da86e);
    box-shadow: 0 8px 24px rgba(45, 138, 94, .35)
}

.company-popup__assist {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .08);
    position: relative;
    z-index: 1
}

.company-popup__assist p {
    margin: 0;
    color: rgba(255, 255, 255, .95);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500
}

.company-popup__assist-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    color: var(--primary-dark);
    background: linear-gradient(95deg, var(--accent), var(--accent-hover));
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(201, 168, 76, .35)
}

.company-popup__assist-call:hover {
    transform: translateY(-1px)
}

@media(max-width:768px) {
    .company-popup__dialog {
        margin: 78px auto 18px;
        max-height: calc(100vh - 82px);
        padding: 20px 16px
    }

    .company-popup__title {
        font-size: 1.25rem;
        padding-right: 34px
    }

    .company-popup__subtitle {
        font-size: 14px
    }

    .company-popup__grid {
        grid-template-columns: 1fr
    }

    .company-popup__assist {
        flex-direction: column;
        align-items: flex-start
    }
}
