/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Inter',sans-serif;
  background:#0a0a0a;
  color:#fff;
}
h1,h2,h3{font-family:'Playfair Display',serif;}
html,body{overflow-x:hidden;scroll-behavior:smooth;}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  height:70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 25px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  z-index:1001;
}

.brand-text{
  color:#d4af37;
  font-size:20px;
  font-weight:700;
  letter-spacing:0.5px;
  line-height:70px;
}

.navbar nav{
  display:flex;
  gap:20px;
  height:100%;
  align-items:center;
}

.nav-link{
  color:#fff;
  text-decoration:none;
  line-height:70px;
}

.nav-link:hover{
  color:#d4af37;
}

.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#000;
  color:#d4af37;
  padding:4px 12px;
  border-radius:16px;
  border:1px solid #d4af37;
  font-size:14px;
  min-height:30px;
  height:30px;
}

.nav-btn:hover{
  background:#d4af37;
  color:#000;
}

/* HERO */
.hero{
  min-height:100vh;
  padding-top:80px;
  position:relative;
}

.hero video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.5;
  z-index:0;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:0;
}

.hero-wrapper{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:60px;
  padding:40px 20px;
}

.glass{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(15px);
  border-radius:20px;
  padding:30px;
}

/* LEFT */
.hero-left{
  flex:1;
  max-width:500px;
  text-align:center;
}

.logo{
  width:100px;
  margin-bottom:10px;
}

/* RIGHT */
.hero-right{
  flex:1;
  max-width:420px;
}

/* FORM */
.hero-right form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input,select{
  padding:12px;
  border-radius:10px;
  border:none;
  background:rgba(255,255,255,0.08);
  color:#fff;
}

.gold-btn{
  padding:14px;
  border-radius:30px;
  background:#d4af37;
  color:#000;
  border:none;
}

/* CTA */
.call-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 20px;
  border-radius:10px;
  background:#d4af37;
  color:#000;
  text-decoration:none;
}

/* FLEET */
.fleet{
  padding:80px 5%;
  scroll-margin-top:80px;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
  color:#d4af37;
}

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.fleet-card{
  background:rgba(255,255,255,0.05);
  border-radius:20px;
  overflow:hidden;
  transition:all 0.35s ease;
}

.fleet-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.fleet-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.3),
    0 0 20px rgba(212,175,55,0.4),
    0 0 40px rgba(212,175,55,0.3),
    0 0 60px rgba(212,175,55,0.2);
  border:1px solid rgba(212,175,55,0.4);
}

.fleet-card.active{
  outline:2px solid #d4af37;
  box-shadow:0 0 25px rgba(212,175,55,0.4);
}

.card-content{
  padding:20px;
}

.price{
  color:#d4af37;
}

.selected-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:rgba(212,175,55,0.95);
  color:#000;
  font-size:12px;
  letter-spacing:0.5px;
  padding:6px 10px;
  border-radius:999px;
  opacity:0;
  transform:translateY(-10px);
  transition:all 0.3s ease;
  pointer-events:none;
}

.fleet-card{
  position:relative;
  background:rgba(255,255,255,0.05);
  border-radius:20px;
  overflow:hidden;
  transition:all 0.35s ease;
}

.fleet-card.active .selected-badge{
  opacity:1;
  transform:translateY(0);
}

.testimonials{
  padding:80px 5%;
  scroll-margin-top:80px;
  background:rgba(255,255,255,0.03);
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.testimonial-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(212,175,55,0.18);
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:nth-child(1){
  animation-delay:0.1s;
}

.testimonial-card:nth-child(2){
  animation-delay:0.35s;
}

.testimonial-card:nth-child(3){
  animation-delay:0.6s;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.3),
    0 0 20px rgba(212,175,55,0.35),
    0 0 40px rgba(212,175,55,0.25),
    0 0 60px rgba(212,175,55,0.15);
  border-color:rgba(212,175,55,0.5);
}

.testimonial-card p{
  margin-bottom:18px;
  line-height:1.8;
  color:#e6e6e6;
}

.testimonial-card strong{
  display:block;
  color:#d4af37;
  font-size:15px;
}

/* WHATSAPP */
.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:25px;
  font-size:16px;
  text-decoration: none;
  z-index:999;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ANIMATION */
.animate{
  opacity:0;
  transform:translateY(30px);
}

.animate.show{
  opacity:1;
  transform:translateY(0);
  transition:all 1s ease;
}

.fade-left{transform:translateX(-60px);}
.fade-right{transform:translateX(60px);}
.fade-up{transform:translateY(30px);}
.zoom{transform:scale(0.85);}

.fade-left.show,
.fade-right.show,
.fade-up.show{
  transform:translate(0);
}

.zoom.show{
  transform:scale(1);
}

/* MOBILE */
@media(max-width:768px){

  .navbar{
    padding:0 10px;
  }

  .brand-text{
    font-size:14px;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    max-width:100%;
    line-height:1.2;
    word-break:break-word;
  }

  .navbar{
    flex-wrap:nowrap;
    gap:10px;
    align-items:center;
    height:auto;
    min-height:70px;
    padding:10px 14px;
  }

  .brand-text{
    flex:0 1 auto;
    max-width:180px;
    min-width:0;
  }

  .navbar nav{
    display:flex;
    flex:1;
    justify-content:flex-end;
    gap:8px;
    flex-wrap:nowrap;
    min-width:0;
    overflow-x:auto;
  }

  .navbar nav::-webkit-scrollbar{
    display:none;
  }

  .nav-link,
  .nav-btn{
    white-space:nowrap;
    font-size:13px;
    line-height:1.2;
    padding:8px 0;
  }

  .nav-btn{
    font-size:12px;
    padding:4px 8px;
  }

  .hero-wrapper{
    flex-direction:column;
    gap:40px;
    padding:20px 15px;
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
  }

  .hero-left,
  .hero-right{
    width:100%;
    max-width:100%;
  }

  .logo{
    width:80px;
  }

  .hero-left h1{
    font-size:28px;
  }

  .hero-left p{
    font-size:14px;
  }

  .fleet-grid{
    grid-template-columns:1fr;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .whatsapp-float{
    bottom:80px;
  }

}