:root {
  --orange1: #ff6b2b;
  --orange1-dark: #e55a1c;
  --dark: #0d0d0d;
  --dark2: #161616;
  --dark3: #1f1f1f;
  --dark4: #242424;
  --white: #f0ede8;
  --muted: #9a9490;
  --border: rgba(255, 255, 255, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--dark);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav .navbar-brand {
  font-family: "Syne", sans-serif;
}

/*  NAVBAR  */
.navbar {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  color: var(--orange1) !important;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--white);
}

.nav-link {
  color: var(--muted) !important;
  font-weight: 400;

  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color 0.25s;
  padding: 0.4rem 0.9rem !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
}

.nav-find {
  background: var(--orange1) !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.4rem 1.2rem !important;
  transition: all 0.25s;
}

.nav-find:hover {
  background: var(--orange1-dark) !important;
  transform: scale(1.04);
}

.navbar-toggler {
  border-color: var(--border);
}

.navbar-collapse {
  background: rgba(13, 13, 13, 0.95);
  padding: 1rem;
  border-radius: 10px;
}

/* home */
.home-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1590674899484-d5640e854abe?w=1800")
    center/cover no-repeat;
  filter: brightness(0.25) saturate(0.7);
}
.home-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.95) 40%,
    rgba(255, 107, 43, 0.12) 100%
  );
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 43, 0.12);
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--orange1);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.home h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;

  color: var(--white);
}

.home h1 span {
  color: var(--orange1);
}

.home p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  line-height: 1.75;
}

.btn-primary-custom {
  background: var(--orange1);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(255, 107, 43, 0.3);
  font-family: "Syne", sans-serif;
}

.btn-primary-custom:hover {
  background: var(--orange1-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 45px rgba(255, 107, 43, 0.45);
  color: #fff;
}

.btn-outline-custom {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-outline-custom:hover {
  border-color: var(--orange1);
  color: var(--orange1);
  background: rgba(255, 107, 43, 0.07);
}

.home-search-bar input {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  flex: 1;
  outline: none;
  font-family: "DM Sans", sans-serif;
}

.home-search-bar input::placeholder {
  color: var(--muted);
}

.home-search-bar button {
  background: var(--orange1);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.25s;
}

.home-search-bar button:hover {
  background: var(--orange1-dark);
}

.home-stat {
  border-left: 2px solid var(--orange1);
  padding-left: 1rem;
}

.home-stat .val {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Syne", sans-serif;
  color: var(--white);
  line-height: 1;
}

.home-stat .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.home-img-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.home-img-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s;
}

.home-img-card:hover img {
  transform: scale(1.04);
}

.home-search-bar {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 560px;
}

/* Features */
section {
  padding: 6rem 0;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange1);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
}

.divider-line {
  width: 48px;
  height: 3px;
  background: var(--orange1);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* - FEATURE CARDS - */
.feature-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

/* .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.35s;
} */

.feature-card:hover {
  border-color: rgba(255, 107, 43, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* .feature-card:hover::before {
  opacity: 1;
} */

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 107, 43, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange1);
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--orange1);
  color: #fff;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* - VEHICLE TYPES - */
.vehicle-sec {
  background: var(--dark2);
}

.vehicle-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.35s;
  cursor: pointer;
}

.vehicle-card:hover {
  border-color: var(--orange1);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255, 107, 43, 0.15);
}

.vehicle-card .v-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--orange1);
}

.vehicle-card h5 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.vehicle-card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.vehicle-btn {
  display: inline-block;
  background: rgba(255, 107, 43, 0.1);
  color: var(--orange1);
  border-radius: 50px;
  font-size: 0.72rem;
  padding: 0.25rem 0.8rem;
  margin-top: 0.8rem;
  font-weight: 600;
}

/* - LOCATIONS - */
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--white);
  transition: all 0.25s;
  cursor: pointer;
  margin: 0.3rem;
}

.loc-chip:hover {
  border-color: var(--orange1);
  color: var(--orange1);
  background: rgba(255, 107, 43, 0.07);
}

.loc-chip i {
  color: var(--orange1);
  font-size: 0.75rem;
}

/* - GALLERY - */
.gallery-wrap {
  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  gap: 1rem;
}

.g-item {
  border-radius: 16px;
  overflow: hidden;
}

.g-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.g-item:hover img {
  transform: scale(1.07);
}

.g-item.large {
  grid-row: span 2;
}

.g-item.large img {
  height: 416px;
}

/* - HOW IT WORKS - */
.how-sec {
  background: var(--dark2);
}

.step-card {
  text-align: center;
  padding: 2rem 1rem;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange1);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: "Syne", sans-serif;
  box-shadow: 0 0 30px rgba(255, 107, 43, 0.3);
}

.step-arrow {
  color: rgba(255, 107, 43, 0.3);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.8rem;
}

.step-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* - TESTIMONIALS - */
.testi-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.35s;
}

.testi-card:hover {
  border-color: rgba(255, 107, 43, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.testi-card .quote {
  color: var(--orange1);
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Syne", sans-serif;
}

.testi-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.testi-card .stars {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange1);
}

.testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* - CTA SECTION - */
.cta-sec {
  background: linear-gradient(135deg, #1a0e07 0%, #0d0d0d 50%, #1a0e07 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sec h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
}

/* - FOOTER - */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange1);
  font-family: "Syne", sans-serif;
}

.footer-brand span {
  color: var(--white);
}

.footer-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 260px;
}

.footer-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--orange1);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;

  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  margin-right: 0.5rem;
  transition: all 0.25s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--orange1);
  border-color: var(--orange1);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* - ANIMATIONS - */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(70px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 107, 43, 0.3);
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 107, 43, 0.55);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up.d1 {
  animation-delay: 0.1s;
}

.fade-up.d2 {
  animation-delay: 0.2s;
}

.fade-up.d3 {
  animation-delay: 0.3s;
}

.fade-up.d4 {
  animation-delay: 0.4s;
}

.btn-primary-custom {
  animation: pulse-glow 2.5s infinite;
}

/* mobile */
@media only screen and (min-width: 300px) and (max-width: 600px) {
  html {
    font-size: 14px;
  }
  section {
    padding: 3rem 0;
  }
  .home-stat .val {
    font-size: 1.1rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .home h1 {
    font-size: 2rem;
  }

  .home p {
    font-size: 0.9rem;
  }

  .home-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .home-search-bar button {
    width: 100%;
  }

  .home-stat {
    font-size: 0.8rem;
  }

  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .g-item img,
  .g-item.large img {
    height: 180px;
  }

  .vehicle-card {
    padding: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/*Tablet  */

@media only screen and (min-width: 600px) and (max-width: 900px) {
  html {
    font-size: 15px;
  }
  .navbar-nav {
    text-align: center;
  }

  .nav-find {
    display: inline-block;
    margin-top: 10px;
  }

  section {
    padding: 4rem 0;
  }

  .home h1 {
    font-size: 2.8rem;
  }

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

  .g-item.large {
    grid-row: span 1;
  }

  .grow {
    grid-column: span 2;
  }

  .g-item.large img {
    height: 220px;
  }
}

/* Laptop */
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .home h1 {
    font-size: 3.5rem;
  }

  .navbar-collapse {
    background: transparent;
    padding: 0;
  }
}




  