
:root {
  --gold: #D4AF37;
  --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: 4px;
}

.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);
}

.hero {
  height: 60vh;
  background: url('../images/Luxury-Airport-Transfer-Paris.png') 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: 800px;
}

.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: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 30px;
}

.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:60px;
  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;
  }

}

/* ===============================
   HAMBURGER MENU
================================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--black);
  transition: 0.3s ease;
}

/* Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}


@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: right;
    padding: 30px 0;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-150%);
    transition: 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: flex;
  }

}

