
:root {
  --gold: #fae20d;
  --gray: #F5F5F5;
  --black: #111111;
  --white: #FFFFFF;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1500px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  transition: var(--transition);
  border-radius: 14px;
}

.btn:hover {
  background: var(--black);
  color: var(--gold);
}

header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a:hover {
  color: var(--gold);
}
/*Hero1 */

.hero1 {
  position: relative;
  height: 70vh;
 /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

.hero-img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-overlay1 {
   position: relative;
  color: var(--white);
  max-width: 1200px;
}
.hero1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero1 h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.hero1 h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #f5de10;
}




/* HERO TRUST OVERLAY */
.hero-trust-overlay {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(110, 95, 6, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 50px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(62, 63, 3, 0.5);
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 20;
}

/* TRUST ITEM */
.trust-item {
  text-align: center;
  color: #fff;
}

.trust-label {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.trust-stars {
  font-size: 20px;
  color: #d4af37;
  letter-spacing: 3px;
}

.trust-score {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
}

/* DIVIDER */
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* WHATSAPP */
.whatsapp-highlight a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.whatsapp-highlight a:hover {
  color: #d4af37;
}

.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-text {
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-trust-overlay {
    flex-direction: column;
    gap: 15px;
    padding: 18px 25px;
    bottom: -60px;
    border-radius: 25px;
  }

  .trust-divider {
    display: none;
  }
}

/* end */

.hero {
  height: 60vh;
 /* background: url('../images/Luxury-Airport-Transfer-Paris.webp') center/cover no-repeat; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 1200px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section {
  padding: 80px 0;
}

.gray-bg {
  background: var(--gray);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 50px;
  align-items: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 25px;
  border: 1px solid #eee;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.vehicle-specs p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0;
  font-size: 15px;
}

.vehicle-specs span:last-child {
  font-weight: 600;
}


.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 25px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 40px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
}

footer {
  background: var(--black);
  color: var(--white);
  padding: 10px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 10px;
}

.footer {
  background: #0c1c2c;
  color: #ffffff;
  padding: 70px 0 30px;
}

.footer h4 {
  color: var(--gold);
  margin-bottom: 15px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.8;
}


.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
}

@media(max-width:768px){
  .hero h1 { font-size: 1.8rem; }
}


.locations-grid-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.location-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.location-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: transform 0.4s ease;
}

.location-card:hover img {
  transform: scale(1.05);
}

.location-content {
  padding: 25px;
}

.location-content h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.location-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.contact-card {
  background: var(--gray);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  font-size: 22px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 50%;
}

.contact-item h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-item p a {
  color: var(--black);
  font-weight: 500;
}

.contact-item p a:hover {
  color: var(--gold);
}

.map-card {
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
}


.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  height:100px;
  width:auto;
}

.logo span{
  font-weight:600;
}

/*Mobile Responsive */

/* ===============================
   GLOBAL RESPONSIVE FIXES
================================= */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 70px 0;
}

/* ===============================
   GRID RESPONSIVE SYSTEM
================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.locations-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===============================
   TABLET RESPONSIVE
================================= */

@media (max-width: 1024px) {

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid-pro {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 768px) {

  /* Navigation */
  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 15px;
  }

  /* About */
  .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Fleet */
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  /* Locations */
  .locations-grid-pro {
    grid-template-columns: 1fr;
  }

  .location-card {
    flex-direction: column;
  }

  /* Contact */
  .contact-pro-grid {
    grid-template-columns: 1fr;
  }

  iframe {
    height: 300px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Buttons */
  .btn {
    width: 100%;
    text-align: center;
  }

}

/* ===============================
   SMALL MOBILE DEVICES
================================= */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 22px;
  }

  .section {
    padding: 50px 0;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}





.luxury-faq-section {
  background: #0e0e0e;
  color: #ffffff;
  padding: 100px 20px;
}

.luxury-faq-title {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}

.luxury-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.luxury-faq-item {
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 20px;
}

.luxury-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  padding: 15px 0;
  position: relative;
  transition: color 0.3s ease;
}

.luxury-faq-question:hover {
  color: #D4AF37;
}

.luxury-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  color: #D4AF37;
}

.luxury-faq-item.active .luxury-faq-question::after {
  content: "–";
}

.luxury-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #cccccc;
}

.luxury-faq-item.active .luxury-faq-answer {
  max-height: 250px;
  padding-top: 10px;
}

.luxury-faq-cta {
  text-align: center;
  margin-top: 70px;
}

.luxury-cta-btn {
  background: #D4AF37;
  color: #000;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;

  
}

.luxury-cta-btn:hover {
  background: #ffffff;
  color: #000;
}

@media (max-width: 900px) {
  .luxury-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/*Add New Humberg */

/* =================================
   NAVIGATION - DESKTOP DEFAULT
================================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hide hamburger & close button on desktop */
.hamburger {
  display: none;
}

.menu-close {
  display: none;
}


/* =================================
   MOBILE NAVIGATION (Slide Panel)
================================= */

@media (max-width: 991px) {

  /* Show hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2100;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s ease;
  }

  /* Slide panel */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 2000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--white);
    font-size: 18px;
  }

  /* Close (X) button */
  .menu-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .menu-close:hover {
    transform: rotate(90deg);
  }

}


/* =================================
   BOOKING MODAL
================================= */
/* Buttons */

/*
.book-now-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #0c1c2c, #bfa046);
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
  text-decoration: none;
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191,160,70,0.3);
}

*/

/* Modal Overlay */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.booking-modal.active {
  display: flex;
}


/* Popup Box */
.booking-box {
  background: #081420;
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border: 1px solid rgba(191,160,70,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}


/* Center Logo */
.booking-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.booking-logo img {
  max-width: 170px;
  height: auto;
}


/* Text */
.booking-box h3 {
  color: #bfa046;
  margin-bottom: 10px;
}

.booking-box p {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 25px;
}


/* Loader */
.booking-loader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid #bfa046;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}


/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
