/*==============================
  GLOBAL STYLES
==============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: 0.3s;
}

/* NAVBAR VARIABLES */
:root {
  --bg: #111;
  --text: #fff;
  --gold: #F69E22;
  --glass-bg: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --text: #111;
  --gold: #F69E22;
  --glass-bg: rgba(255, 255, 255, 0.2);
}

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 0.3rem 0.4rem;
  transition: all 0.3s;
  margin-right: 3rem;
}

.theme-toggle:hover {
  background: rgba(105, 25, 170, 0.1);
  color: var(--gold);
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image */
.logo img {
  height: 80px;
  width: 120px;
  border-radius: 12px;
  padding: 4px;
  transition: all 0.3s ease;
  margin-left: 30px;
}

/* Hover effect */
.logo img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* HERO */
#hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text);
  overflow: hidden;
}

#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.display-3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--gold);
}

.lead {
  font-size: 1.2rem;
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 1rem 2rem;
  border-radius: 200px;
  background-color: rgb(36, 33, 33);
  transition: 0.3s;
  display: flex;
  justify-content: center;
  height: 80px;
  
}

/* Navbar container */
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  
}

/* Navbar links */
#mainNavLinks {
  display: flex;
  gap: 2rem;
}

/* mainNavlinks */
#mainNavLinks a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s;
}

#mainNavLinks a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}

.h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 2rem;
  margin-top: 2rem;
  position: relative;
}

.h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

/* Introduction section*/
.intro-section {
  padding: 80px 0;
  background: var(--bg-color);
  color: var(--text-color);
 padding:80px 5%;
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-right: 5%;
}
.intro-image{
  width: 100% !important;
}
.intro-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #F69E22;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.intro-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #F69E22;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.intro-btn:hover {
  background: #fff;
}

/* services section */
.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 400px;
  height: 410px;
  margin-left: 0cap;

}

.service-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-left: 5%;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
  margin-left: 10px;
  line-height: 1.6;
  margin-top:15px;
}

.service-card h4 {
  margin-left: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(77, 68, 68, 0.4);
}

.image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

/* cta-btn-themed */
.cta-btn-themed {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: transform 0.3s;
  width: 50%;
margin: 15px auto 0;
  margin-top: 10%;
}

/* FLEET SECTION */
#fleet {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.fleet-card {
  background: var(--glass-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.fleet-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fleet-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fleet-info h3 {
  width: 100%;
  font-size: 1.3rem;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}
/* Ensure paragraph has space below it */
.fleet-info p {
  margin-bottom: 15px; /* space between paragraph and .specs */
}

.specs span {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  background: var(--glass-bg);
  border-radius: 8px;
  font-size: 0.9rem;
}

.fleet-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 20px;
}

.fleet-btn:hover {
  transform: scale(1.05);
}


.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 40px;
}

.fleet-card {
  background: var(--glass-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.fleet-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.fleet-content {
  padding: 15px;
  text-align: center;
}

.fleet-content h4 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.fleet-content p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.fleet-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 15px;
  padding: 0 10px;
}

/* FAB */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.5rem;
  z-index: 100;
}

.fab-button {
  background: var(--glass-bg);
  padding: 0.8rem 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s;
}

.fab-container.active .fab-options {
  display: flex;
  flex-direction: column;
}

.fab-options {
  display: none;
  gap: 0.5rem;
}

.fab-option {
  background: var(--glass-bg);
  padding: 0.7rem;
  border-radius: 50%;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTACT Us ===== */
.contact-section {
  padding: 4rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: auto;
}

.contact-info h1 {
  font-family: 'Montserrat', sans-serif;
  color: #F69E22;
  font-size: 2.5rem;
  margin-bottom: 1rem;

}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-box i {
  font-size: 2rem;
  color: #F69E22 !important;
  min-width: 30px;
}

.info-box h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F69E22 !important;
}

.info-box a {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.info-box a:hover {
  color: #F69E22;
}

.contact-form-info h2 {
  color: #F69E22;
}

/* ===== contact FORM ===== */
#contact-form {
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-form input,
#contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;

  font-size: 1rem;
  outline: none;
}

#contact-form textarea {
  resize: none;
  min-height: 120px;
}

#contact-form button {
  background: linear-gradient(45deg, #F69E22);
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

#contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

/* Loading animation of contact form */
#loading {
  color: #F69E22;
  font-weight: 500;
  text-align: center;
  animation: blink 1s infinite;
  margin-top: 10px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Success popup of contact*/
#successPopup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #F69E22;
  color: #111;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  animation: fadeInOut 4s forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
}

.contact-form textarea {
  resize: none;
}

.inquiry-btn {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.inquiry-btn:hover {
  background: #b8962e;
}

/* ===== footer SECTION ===== */
.footer-section {
  color: var(--text);
  padding: 4rem 2rem 2rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.footer-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  margin: 1rem 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.footer-desc {
  max-width: 600px;
  margin: 1rem auto 3rem;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  max-width: 1200px;
  margin: auto;
}

.footer-grid h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 0.5rem;
}

.footer-grid ul li a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.3s;
}

.footer-grid ul li a:hover {
  color: var(--gold);
}

.footer-contact a {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-social .social-icons a {
  display: inline-block;
  color: var(--text);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-social .social-icons a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-page {
  padding: 80px 0;
  background: var(--bg-color);
  color: var(--text-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 20px;
  color: gold;
}

.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;

}

.info-box i {
  font-size: 18px;
  margin-top: 5px;
}

.info-box a {
  color: #fff;
  text-decoration: none;
}

.info-box-1 {
  display: flex;
  gap: 15px;
  margin-bottom: 80px;
  align-items: flex-start;

}

.info-box-1 i {
  font-size: 18px;
  margin-top: 5px;
  color: #F69E22;
}

.info-box-1 a {
  color: #fff;
  text-decoration: none;
}

.info-box-1 a:hover {
  color: #F69E22;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
}

.contact-form button {
  padding: 12px 25px;
  background: #ffd700;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 25px;
}

.intro-image {
  justify-self: end; /* pushes image to the right within its grid column */
  width: 85%;       /* keep width smaller so it doesn't overflow */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.slider img {
  width: 100%;
  display: none;
  border-radius: 15px;
  height: 350px;
}

.slider img.active {
  display: block;
  animation: fade 1s;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* ==============================
   GRID & GENERAL LAYOUT
============================== */
.grid {
  display: grid;
  gap: 20px;
}

.fleet-grid {
  display: grid;
  gap: 20px;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  height: auto;
}

/* Intro Image */
.intro-image {
  justify-self: end; /* pushes image to the right within its grid column */
  width: 85%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* ==============================
   RESPONSIVE FIXES
============================== */

/* Large Tablets */
@media (max-width: 1200px) {
  .grid,
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .display-3 {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 992px) {
  nav {
    padding: 0.8rem 1rem;
  }

  #mainNavLinks {
    gap: 1rem;
  }

  #mainNavLinks a {
    font-size: 1rem;
  }

  .display-3 {
    font-size: 2.2rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    width: 100%;
  }

  .intro-image {
    justify-self: center;
    width: 90%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-text h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .display-3 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card {
    height: auto;
  }

  .cta-btn-themed {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-image {
    width: 100%;
  }

  .intro-text h2 {
    font-size: 28px;
    text-align: center;
  }

  /* Hide main navbar links on mobile */
  #mainNavLinks {
    display: none;
  }

  /* Show hamburger menu on mobile */
  .mobile-hamburger {
    display: block;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .display-3 {
    font-size: 1.5rem;
  }

  .intro-text h2,
  .fleet-content h4,
  .contact-info h1,
  .contact-form h2,
  .display-3 {
    font-size: 14px !important;
    text-align: center !important;
  }

  .intro-text p,
  .fleet-content p,
  .contact-info p,
  .contact-form p,
  .lead {
    font-size: 11px !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .service-card h4,
  .service-card p {
    font-size: 11px !important;
    text-align: center !important;
  }

  .fleet-info,
  .fleet-info span {
    font-size: 11px !important;
    text-align: center !important;
  }

  #mainNavLinks a {
    font-size: 11px !important;
    padding: 0.3rem 0.5rem !important;
  }

  .intro-btn,
  .fleet-btn,
  .cta-btn-themed,
  .inquiry-btn,
  #contact-form button {
    font-size: 11px !important;
    padding: 8px 15px !important;
  }

  .contact-info h1 {
    font-size: 2rem;
  }

  nav {
    height: auto;
  }

  .logo img {
    height: 60px;
    width: 90px;
  }
}

/* ==============================
   INTRO IMAGE & SLIDER FIX
============================== */
.intro-image {
  justify-self: end;
  width: 85%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.slider img {
  width: 100%;
  display: none; /* hide all images initially */
  border-radius: 15px;
  height: 350px; /* default desktop height */
}

.slider img.active {
  display: block;
  animation: fade 1s;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==============================
   RESPONSIVE FIXES
============================== */

/* Tablets */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    width: 100%;
  }

  .intro-image {
    justify-self: center;
    width: 90%;
  }

  .display-3 {
    font-size: 2.2rem;
  }

  .intro-text h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .intro-image {
    width: 100%;
  }

  .slider img {
    height: 250px; /* reduced height for tablet/small mobile */
    object-fit: cover;
  }

  .display-3 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 0.95rem;
  }

  .intro-text h2 {
    font-size: 28px;
    text-align: center;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .intro-text h2,
  .fleet-content h4,
  .contact-info h1,
  .contact-form h2,
  .display-3 {
    font-size: 14px !important;
    text-align: center !important;
  }

  .intro-text p,
  .fleet-content p,
  .contact-info p,
  .contact-form p,
  .lead {
    font-size: 11px !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .slider img,
  .intro-image {
    height: 200px !important; /* reduced further for mobile */
    width: 100% !important;
    object-fit: cover;
    border-radius: 10px;
  }
}

/* ==========================
   MOBILE SIDEBAR
========================== */
#mobileSidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #144c80;
  color: #fff;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: left 0.3s ease;
  z-index: 9999;
}

#mobileSidebar.active {
  left: 0;
}

#mobileSidebar a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
  cursor: pointer;
}

#mobileSidebar a:hover {
  color: #F69E22;
}

#mobileSidebar .book-btn {
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #F69E22;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: block;
  text-decoration: none;
}

#mobileSidebar .book-btn:hover {
  background-color: #ffd700;
}

/* ==========================
   RESPONSIVE BEHAVIOR
========================== */

/* Hide sidebar on desktop */
@media (min-width: 769px) {
  #mobileSidebar {
    display: none;
  }
  .mobile-hamburger {
    display: none; /* hide sidebar hamburger button completely on desktop */
  }
}

/* Hide main navbar links on mobile */
@media (max-width: 768px) {
  #mainNavLinks {
    display: none;
  }
  .mobile-hamburger {
    display: block; /* show hamburger only on mobile */
  }
}
/* =================================
   CONTACT SECTION RESPONSIVE
================================= */

/* Tablets */
@media (max-width: 992px){

  .contact-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info{
    text-align: center;
  }

  .info-box{
    justify-content: center;
  }

  .contact-form-info{
    width: 100%;
  }

  .contact-form-info form{
    width: 100%;
  }

}


/* Mobile */
@media (max-width: 768px){

  .contact-section{
    padding: 60px 20px;
  }

  .contact-info h1{
    font-size: 28px;
  }

  .contact-form-info h2{
    font-size: 24px;
    text-align: center;
  }

  .contact-form-info input,
  .contact-form-info textarea{
    width: 100%;
    font-size: 14px;
  }

  #contact-form button{
    width: 100%;
  }

}


/* Small Phones */
@media (max-width: 480px){

  .contact-info h1{
    font-size: 22px;
  }

  .contact-info p{
    font-size: 13px;
  }

  .info-box{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .contact-form-info h2{
    font-size: 20px;
  }

}


/* =================================
   FOOTER SECTION RESPONSIVE
================================= */

/* Tablets */
@media (max-width: 992px){

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-cta h2{
    font-size: 28px;
  }

}


/* Mobile */
@media (max-width: 768px){

  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta{
    text-align: center;
  }

  .footer-cta h2{
    font-size: 24px;
  }

  .footer-desc{
    font-size: 14px;
  }

  .social-icons{
    justify-content: center;
  }

}


/* Small Phones */
@media (max-width: 480px){

  .footer-cta h2{
    font-size: 20px;
  }

  .footer-desc{
    font-size: 13px;
  }

  .footer-copy{
    font-size: 12px;
  }

}
@media (max-width:768px){

  .contact-info{
    text-align:center;
  }

  .info-box{
    justify-content:center;
  }

  .info-box a{
    text-align:center;
  }

}
#booking-form {
  max-width: 900px;
  margin: auto;
  margin-top: 3%;
}



/* Booking Form Layout */
#booking-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* Inputs & Select */
#booking-form input,
#booking-form select {
  flex: 1;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 16px;
}

/* Button */
#booking-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f6a622;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
/* Mobile Responsive Booking Form (max-width 768px) */
@media (max-width: 768px) {

  /* Center the form and make it compact */
  #booking-form {
    max-width: 320px;
    margin: 15px auto;
    padding: 12px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  /* Form row flex with wrapping */
  #booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    flex-direction: row; /* normal order for mobile */
  }

  /* Pickup, Destination, Date, Time - 2 per line */
  #booking-form input#pickup,
  #booking-form input#destination,
  #booking-form input#date,
  #booking-form input#time {
    flex: 1 1 48%;
    padding: 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    direction: ltr;
    text-align: left;
  }

  /* Ensure Pickup is left, Drop-off is right */
  #booking-form input#pickup { order: 1; }
  #booking-form input#destination { order: 2; }
  #booking-form input#date { order: 3; }
  #booking-form input#time { order: 4; }

  /* Select Services + Vehicle - 2 per line */
  #booking-form select#services,
  #booking-form select#vehicle {
    flex: 1 1 48%;
    padding: 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    direction: ltr;
    text-align: left;
  }

  #booking-form select#services { order: 5; }
  #booking-form select#vehicle { order: 6; }

  /* Email field - full width */
  #booking-form input#email {
    flex: 1 1 100%;
    padding: 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    direction: ltr;
    text-align: left;
    order: 7;
  }

  /* Button full width and attractive */
  #booking-form button#bookingSubmit {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: #f69e22;
    color: black;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    order: 8;
  }

  #booking-form button#bookingSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }

  /* Loading & Success messages */
  #booking-form #loading,
  #booking-form #successPopup {
    text-align: center;
    margin-top: 6px;
    font-size: 12px;
  }

  #booking-form #successPopup {
    color: green;
    font-weight: 500;
  }
}
/* Match your booking form style */
.flatpickr-input {
  padding: 8px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
  border: 1px solid #ccc !important;
  background-color: #f9f9f9 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}
.flatpickr-calendar {
  z-index: 9999; /* make sure calendar appears on top */
}