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

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#0d0d0d;
  color:white;
  overflow-x:hidden;
}

/* NAVBAR */

nav{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(10px);
  z-index:1000;
}

.logo{
  font-size:1.5rem;
  font-weight:bold;
  letter-spacing:2px;
}

.logo span{
  color:#2d8cff;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.nav-links a:hover{
  color:#2d8cff;
}

/* HERO */

.hero{
  height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.8)),
  url('Image Assets/IMG_8455.jpeg');

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;

  padding:0 8%;
}

.hero-content{
  max-width:650px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#2d8cff;
}

.hero p{
  color:#d0d0d0;
  font-size:1.1rem;
  line-height:1.7;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

/* BUTTONS */

.btn{
  border-radius:999px;
  padding:15px 30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
  display:inline-block;
}

.btn-primary{
  background:#2d8cff;
  color:white;
}

.btn-primary:hover{
  background:#1d74d8;
  transform:translateY(-3px);
}

.btn-secondary{
  border:2px solid white;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:black;
}

/* SERVICES */

.services{
  padding:100px 8%;
  background:#111111;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:2.5rem;
  margin-bottom:15px;
}

.section-title p{
  color:#aaaaaa;
}

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

.service-card{
  background:#1a1a1a;
  padding:35px;
  border-radius:12px;
  transition:0.3s;
  border:1px solid transparent;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:#2d8cff;
}

.service-card h3{
  margin-bottom:15px;
  color:#ffffff;
}

.service-card p{
  color:#b8b8b8;
  line-height:1.6;
}

/* ABOUT */

.about{
  padding:100px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:15px;
}

.about-text h2{
  font-size:2.5rem;
  margin-bottom:25px;
}

.about-text p{
  color:#c2c2c2;
  line-height:1.8;
  margin-bottom:20px;
}

/* CTA */

.cta{
  padding:100px 8%;
  text-align:center;

  background:
  linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
  url('Image Assets/IMG_8517.jpg');

  background-size:cover;
  background-position:center;
}

.cta h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta p{
  color:#d4d4d4;
  margin-bottom:35px;
}

/* FOOTER */

footer{
  background:black;
  padding:40px;
  text-align:center;
  color:#999;
}

/* GALLERY PAGE */

.gallery-header{
  padding-top:140px;
  padding-bottom:60px;
  text-align:center;
  background:#111111;
}

.gallery-header h1{
  font-size:3rem;
  margin-bottom:20px;
}

.gallery-header p{
  color:#b8b8b8;
}

.vehicle-grid{
  padding:60px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
  gap:35px;
  background:#0d0d0d;
}

.vehicle-card{
  background:#161616;
  border-radius:15px;
  overflow:hidden;
  text-decoration:none;
  color:white;
  transition:0.3s;
  border:1px solid transparent;
}

.vehicle-card:hover{
  transform:translateY(-8px);
  border-color:#2d8cff;
}

.vehicle-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}

.vehicle-info{
  padding:25px;
}

.vehicle-info h3{
  margin-bottom:10px;
  font-size:1.3rem;
}

.vehicle-info p{
  color:#b8b8b8;
}

/* VEHICLE PHOTO PAGE */

.photo-section{
  padding:60px 8%;
}

.photo-title{
  font-size:2.2rem;
  margin-bottom:35px;
  text-align:center;
}

/* FEATURED SERVICE */

.featured-service{
  transform:scale(1.06);
  border:2px solid #d4af37;
  position:relative;
  box-shadow:0 0 25px rgba(212,175,55,0.25);
}

.featured-service:hover{
  border-color:#f1cd63;
  transform:scale(1.08) translateY(-8px);
}

.popular-tag{
  position:absolute;
  top:15px;
  right:15px;
  background:#d4af37;
  color:black;
  padding:6px 12px;
  border-radius:50px;
  font-size:0.75rem;
  font-weight:bold;
  letter-spacing:1px;
}

/* BOOKING PAGE */

.booking-page{
  padding:140px 20px 80px;
  background:#0d0d0d;
}

.booking-container{
  max-width:850px;
  margin:auto;
  background:#161616;
  padding:50px;
  border-radius:20px;
  border:1px solid #2d2d2d;
}

.booking-container h1{
  text-align:center;
  margin-bottom:15px;
  font-size:3rem;
}

.booking-container p{
  text-align:center;
  color:#b8b8b8;
  margin-bottom:40px;
}

.booking-form h2{
  margin-top:30px;
  margin-bottom:15px;
  color:#d4af37;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:16px;
  margin-bottom:15px;
  background:#1f1f1f;
  color:white;
  border:1px solid #333;
  border-radius:10px;
  font-size:1rem;
}

.booking-form textarea{
  min-height:140px;
  resize:vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
  outline:none;
  border-color:#2d8cff;
}

.booking-form button{
  width:100%;
  margin-top:20px;
  font-size:1.1rem;
}

.form-info{
  color:#b8b8b8;
  margin-bottom:20px;
  line-height:1.6;
  font-size:0.95rem;
}

/* CONTACT DROPDOWN */

.contact-dropdown{
  position:relative;
  display:inline-block;
}

/* the fork is drawn with an SVG so spacing is pixel-perfect */
.contact-options{
  display:none;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:100;
  flex-direction:column;
  align-items:center;
  gap:0;
  padding-top:0;
  width:200px;
}

.contact-dropdown.open .contact-options{
  display:flex;
}

/* SVG fork drawn as background on a spacer div */
.contact-fork{
  width:100%;
  height:50px;
  position:relative;
}

/* vertical stem */
.contact-fork::before{
  content:'';
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:25px;
  background:white;
}

/* horizontal crossbar — spans exactly between the two button centers */
.contact-fork::after{
  content:'';
  position:absolute;
  top:25px;
  left:25%;
  width:50%;
  height:2px;
  background:white;
}

.contact-prongs{
  display:flex;
  width:100%;
  justify-content:space-between;
  position:relative;
}

/* left prong */
.contact-prongs::before{
  content:'';
  position:absolute;
  bottom:100%;
  left:25%;
  transform:translateX(-50%);
  width:2px;
  height:25px;
  background:white;
}

/* right prong */
.contact-prongs::after{
  content:'';
  position:absolute;
  bottom:100%;
  right:25%;
  transform:translateX(50%);
  width:2px;
  height:25px;
  background:white;
}

.contact-options a{
  position:relative;
  display:block;
  padding:10px 22px;
  color:white;
  text-decoration:none;
  font-weight:bold;
  border-radius:999px;
  border:2px solid white;
  white-space:nowrap;
  transition:0.3s;
}

.contact-options a:hover{
  background:white;
  color:black;
}

/* MOBILE */

@media(max-width:900px){

  .hero h1{
    font-size:3rem;
  }

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

  .nav-links{
    display:none;
  }
}

@media(max-width:600px){

  .hero h1{
    font-size:2.3rem;
  }

  .section-title h2,
  .about-text h2,
  .cta h2,
  .gallery-header h1{
    font-size:2rem;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .vehicle-grid{
    grid-template-columns:1fr;
  }
}
/* LOGO AS LINK */
a.logo {
  text-decoration: none;
  color: white;
}