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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0f1115;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.logo img {
  width: 140px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

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

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f0c95a);
  color: #111;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.small-btn {
  padding: 10px 16px;
  font-size: 14px;
}

.hero {
  padding: 100px 0 70px;
  background:
    linear-gradient(rgba(10, 12, 16, 0.8), rgba(10, 12, 16, 0.9)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 30%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.tagline {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-text h1 {
  font-size: 54px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text p {
  color: #c8c8c8;
  max-width: 620px;
}

.hero-features,
.booking-points,
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-features span,
.booking-points span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 14px;
}

.hero-card,
.booking-form,
.service-box,
.testimonial-card,
.stat-box,
.car-card {
  background: #171a21;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.hero-card {
  padding: 28px;
}

.hero-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.stats {
  padding: 30px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-box {
  padding: 28px 20px;
  text-align: center;
}

.stat-box h2 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 8px;
}

.stat-box p {
  color: #d0d0d0;
}

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

.section-title p {
  color: #d4af37;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 40px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.car-card {
  overflow: hidden;
  transition: 0.3s ease;
}

.car-card:hover {
  transform: translateY(-6px);
}

.car-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.car-info {
  padding: 22px;
}

.car-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.car-info p {
  color: #cfcfcf;
  margin-bottom: 16px;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.car-meta span {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.car-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.car-footer strong {
  color: #d4af37;
  font-size: 20px;
}

.services-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-box,
.testimonial-card {
  padding: 28px;
}

.service-box .icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.service-box h3,
.testimonial-card h4 {
  margin-bottom: 10px;
}

.service-box p,
.testimonial-card p {
  color: #d0d0d0;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.booking-text h2 {
  font-size: 42px;
  margin: 10px 0 16px;
}

.booking-text p {
  color: #cccccc;
}

.booking-form {
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: #0f1115;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

textarea {
  resize: vertical;
  min-height: 130px;
  margin-bottom: 18px;
}

.footer {
  background: #0b0d10;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: #c7c7c7;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

@media (max-width: 1100px) {
  .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .section-title h2,
  .booking-text h2 {
    font-size: 30px;
  }

  .cars-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }
}
.footer-logo-bottom {
  text-align: center;
  padding: 20px 0 30px;
}

.footer-logo-bottom img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  opacity: 0.95;
}
/* ======================
   DESKTOP (PC)
====================== */

@media (min-width: 1024px) {

  .container{
    max-width:1200px;
  }

  .cars-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .services-grid{
    grid-template-columns:repeat(4,1fr);
  }

  .hero-content{
    grid-template-columns:1fr 1fr;
  }

  .hero-text h1{
    font-size:48px;
  }

}


/* ======================
   TABLET
====================== */

@media (max-width:1023px){

  .container{
    width:92%;
  }

  .nav{
    flex-wrap:wrap;
  }

  .nav-links{
    gap:15px;
  }

  .hero-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-card{
    margin-top:30px;
  }

  .cars-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .booking-wrapper{
    grid-template-columns:1fr;
  }

}


/* ======================
   MOBILE (PHONE)
====================== */

@media (max-width:768px){

  .nav{
    flex-direction:column;
    gap:10px;
  }

  .nav-links{
    flex-direction:column;
    align-items:center;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-features{
    flex-direction:column;
    gap:8px;
  }

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

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

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

  .form-row{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .whatsapp-btn{
    width:50px;
    height:50px;
  }

}
@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .logo {
    text-align: center;
  }

  .logo img {
    width: 140px;
    height: auto;
    margin: 0 auto;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    font-size: 15px;
    display: block;
  }

  .nav-btn {
    width: auto;
    min-width: 180px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
  }
}
.nav-links {
  flex-direction: column;
}
.btn {
  width: 100%;
}
/* hamburger icon */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

/* MOBILE */

@media (max-width:768px){

.menu-toggle{
display:block;
position:absolute;
right:20px;
top:25px;
}

/* hide menu */

.nav-links{
display:none;
flex-direction:column;
background:#0f1115;
position:absolute;
top:70px;
left:0;
width:100%;
text-align:center;
padding:20px 0;
gap:15px;
}

/* show menu */

.nav-links.active{
display:flex;
}

.nav-links a{
font-size:18px;
}

.nav-btn{
margin-top:10px;
}

}
/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 18, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
  position: relative;
}

.logo img {
  width: 140px;
  height: auto;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

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

.nav-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
}

/* ================= PC ================= */

@media (min-width: 1025px) {
  .nav {
    flex-wrap: nowrap;
  }

  nav {
    display: flex;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
  }
}

/* ================= TABLET ================= */

@media (min-width: 769px) and (max-width: 1024px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .nav-btn {
    margin-top: 8px;
  }

  .menu-toggle {
    display: none;
  }
}

/* ================= PHONE ================= */

@media (max-width: 768px) {
  .nav {
    min-height: 74px;
    padding: 12px 0;
  }

  .logo img {
    width: 110px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  nav {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    background: #0f1115;
    padding: 18px 0 22px;
    margin-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 17px;
  }

  .nav-btn {
    display: none;
  }
}