/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c6a43f;
  --primary-dark: #9e7b2c;
  --primary-light: #e5c87a;
  --secondary: #1a1a1a;
  --dark: #0a0a0a;
  --light: #faf9f6;
  --gray: #f5f5f5;
  --text-dark: #1e1e1e;
  --text-light: #757575;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 30px rgba(198, 164, 63, 0.3);
  --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-medium: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-fast: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 24px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 6px;
  border: 3px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ===== LOADER ===== */
.loader-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.loader-page.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 8px;
  background: linear-gradient(
    135deg,
    var(--white),
    var(--primary),
    var(--white)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation:
    logoShimmer 3s infinite,
    logoPulse 2s infinite;
  background-size: 200% auto;
  font-family: "Times New Roman", serif;
}

@keyframes logoShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

.loader-spinner {
  position: relative;
  width: 100px;
  height: 100px;
}

.loader-spinner::before,
.loader-spinner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.loader-spinner::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  animation: spin 1.5s infinite linear;
}

.loader-spinner::after {
  top: 15px;
  left: 15px;
  width: 70px;
  height: 70px;
  border: 3px solid var(--primary);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.loading-text {
  color: var(--white);
  margin-top: 2rem;
  font-size: 1rem;
  letter-spacing: 4px;
  opacity: 0.7;
  animation: fadeText 2s infinite;
}

@keyframes fadeText {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.progress-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 1.5rem;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--white),
    var(--primary)
  );
  background-size: 200% 100%;
  transition: width 0.3s ease;
  animation: gradientMove 1.5s infinite linear;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* ===== HEADER & NAVIGATION ===== */
/* .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-medium);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 164, 63, 0.2);
  animation: slideDown 1s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.98);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--white), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1001;
  font-family: "Times New Roman", serif;
  animation: logoGlow 3s infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(198, 164, 63, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(198, 164, 63, 0.8)); }
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
  animation: fadeInNav 1s ease backwards;
}

.nav-link:nth-child(1) { animation-delay: 0.1s; }
.nav-link:nth-child(2) { animation-delay: 0.2s; }
.nav-link:nth-child(3) { animation-delay: 0.3s; }
.nav-link:nth-child(4) { animation-delay: 0.4s; }
.nav-link:nth-child(5) { animation-delay: 0.5s; }
.nav-link:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInNav {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.nav-cta:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--white), var(--primary));
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
} */

/* ===== CUSTOM SCROLLBAR ===== */
      ::-webkit-scrollbar {
        width: 12px;
      }
      ::-webkit-scrollbar-track {
        background: var(--light);
      }
      ::-webkit-scrollbar-thumb {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        border-radius: 6px;
        border: 3px solid var(--light);
      }
      ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(
          135deg,
          var(--primary-dark),
          var(--primary)
        );
      }

      /* ===== HEADER ===== */
      .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        transition: var(--transition-medium);
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(198, 164, 63, 0.2);
      }
      .header.scrolled {
        padding: 1rem 5%;
        background: rgba(10, 10, 10, 0.98);
      }
      .logo {
        font-size: 2rem;
        font-weight: 700;
        text-decoration: none;
        background: linear-gradient(135deg, var(--white), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: "Times New Roman", serif;
      }

      /* Desktop Navigation */
      .nav-menu {
        display: flex;
        gap: 3rem;
        list-style: none;
      }
      .nav-link {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding: 0.5rem 0;
        transition: var(--transition-fast);
      }
      .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--primary),
          var(--primary-light)
        );
        transition: width 0.3s ease;
      }
      .nav-link:hover::before {
        width: 100%;
      }
      .nav-link:hover {
        color: var(--primary);
        transform: translateY(-2px);
      }
      .nav-cta {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: var(--dark);
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition-medium);
      }
      .nav-cta:hover {
        background: linear-gradient(135deg, var(--white), var(--primary));
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
      }

      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
      }
      .hamburger span {
        width: 100%;
        height: 2px;
        background: var(--white);
        transition: var(--transition-fast);
        border-radius: 2px;
      }
      .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--dark), #000);
        z-index: 999;
        transition: var(--transition-medium);
        padding: 6rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
      }
      .mobile-menu.active {
        right: 0;
      }
      .mobile-menu .mobile-nav-links {
        list-style: none;
        margin-bottom: 2rem;
      }
      .mobile-menu .mobile-nav-link {
        display: block;
        color: var(--white);
        text-decoration: none;
        font-size: 1.2rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(198, 164, 63, 0.2);
        transition: var(--transition-fast);
      }
      .mobile-menu .mobile-nav-link:hover,
      .mobile-menu .mobile-nav-link:active {
        color: var(--primary);
        padding-left: 1rem;
      }
      .mobile-menu .mobile-nav-cta {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: var(--dark);
        text-align: center;
        padding: 1rem;
        border-radius: 50px;
        font-weight: 600;
        margin-top: 1rem;
        border-bottom: none;
      }
      .mobile-menu .mobile-nav-cta:hover {
        background: linear-gradient(135deg, var(--white), var(--primary));
      }

      /* Overlay */
      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
      }
      .overlay.active {
        opacity: 1;
        visibility: visible;
      }


/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  z-index: -1;
  animation: gradientShift 10s infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
  }
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
  z-index: 1;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
  font-family: "Times New Roman", serif;
  text-shadow: 0 0 20px rgba(198, 164, 63, 0.3);
  animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(198, 164, 63, 0.3);
  }
  50% {
    text-shadow: 0 0 40px rgba(198, 164, 63, 0.6);
  }
}

.hero-title span {
  color: var(--primary);
  display: block;
  animation: slideInRight 1s ease 0.4s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.8s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--white), var(--primary));
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  border-color: transparent;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--primary);
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===== SECTION STYLES ===== */
section {
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(198, 164, 63, 0.05),
    transparent 50%
  );
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: "Times New Roman", serif;
  animation: slideInFromLeft 1s ease;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(198, 164, 63, 0.2);
  z-index: -1;
  animation: underlineExpand 1s ease 0.5s both;
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
  animation: fadeInUp 1s ease 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  animation: cardFadeIn 1s ease backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light),
    var(--primary)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: rgba(198, 164, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--primary);
  transform: translateY(-2px);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(10px);
}

/* ===== FLEET SECTION ===== */
.fleet-section {
  background: var(--gray);
}

.fleet-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease;
}

.filter-btn {
  padding: 0.8rem 2rem;
  background: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 63, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fleet-grid.filtering {
  opacity: 0.5;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  animation: vehicleAppear 0.8s ease backwards;
}

.vehicle-card.hidden {
  display: none;
}

@keyframes vehicleAppear {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.vehicle-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.vehicle-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.15);
}

.vehicle-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vehicle-card:hover .vehicle-overlay {
  opacity: 1;
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  transform: translateX(100px);
  transition: transform 0.5s ease 0.1s;
}

.vehicle-card:hover .vehicle-badge {
  transform: translateX(0);
}

.vehicle-details {
  padding: 2rem;
}

.vehicle-details h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.vehicle-details h3 a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.vehicle-details h3 a:hover {
  color: var(--primary);
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.spec i {
  color: var(--primary);
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.price span {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--text-light);
}

/* ===== SEE MORE BUTTON ===== */
.see-more-container {
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 1s ease;
}

.see-more-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text-dark);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.see-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 164, 63, 0.2),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.see-more-btn:hover::before {
  left: 100%;
}

.see-more-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}

.see-more-btn i {
  transition: transform 0.3s ease;
}

.see-more-btn:hover i {
  transform: translateY(3px);
}

.see-more-btn.active i {
  transform: rotate(180deg);
}

.see-more-btn.active:hover i {
  transform: rotate(180deg) translateY(-3px);
}

.see-more-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.see-more-btn.loading i {
  animation: spin 1s infinite linear;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(198, 164, 63, 0.1), transparent 70%);
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-content {
  animation: slideInFromLeft 1s ease;
}

.booking-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.booking-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  animation: expandWidth 1s ease 0.5s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.booking-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.booking-features {
  list-style: none;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  animation: slideInFromLeft 1s ease backwards;
}

.booking-features li:nth-child(1) {
  animation-delay: 0.1s;
}
.booking-features li:nth-child(2) {
  animation-delay: 0.2s;
}
.booking-features li:nth-child(3) {
  animation-delay: 0.3s;
}
.booking-features li:nth-child(4) {
  animation-delay: 0.4s;
}

.booking-features i {
  color: var(--primary);
  font-size: 1.2rem;
  animation: checkPulse 2s infinite;
}

@keyframes checkPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.booking-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  animation: slideInFromRight 1s ease;
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-medium);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(198, 164, 63, 0.1);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-slider {
  position: relative;
  margin-top: 3rem;
}

.testimonials-container {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

.testimonial-card {
  background: var(--gray);
  border-radius: var(--border-radius);
  min-width: calc(33.333% - 1.3rem);
  padding: 2rem;
  transition: var(--transition-slow);
  animation: testimonialAppear 1s ease backwards;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-btn.prev {
  left: -60px;
}

.testimonial-btn.next {
  right: -60px;
}

.testimonial-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes testimonialAppear {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 1rem;
  animation: float 3s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  transition: var(--transition-medium);
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1) rotate(360deg);
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== REGISTERED SECTION ===== */
.registered-section {
  text-align: center;
  background: var(--white);
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

.registered-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(198, 164, 63, 0.05),
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.registered-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.registered-container img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

.registered-container img:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: var(--shadow-gold);
}

.registered-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: slideInFromLeft 1s ease;
}

.registered-container p {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  animation: slideInFromRight 1s ease;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--gray);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  animation: slideInFromLeft 1s ease;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  animation: expandWidth 1s ease 0.5s both;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--gray);
  border-radius: 12px;
  transition: var(--transition-medium);
  animation: slideInFromLeft 1s ease backwards;
  position: relative;
  overflow: hidden;
}

.contact-item:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-item:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-item:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-medium);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(360deg);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: var(--shadow-gold);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  animation: slideInFromRight 1s ease;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark), #000);
  color: var(--white);
  padding: 4rem 5% 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  animation: scanLine 3s infinite;
}

@keyframes scanLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: "Times New Roman", serif;
  background: linear-gradient(135deg, var(--white), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoGlow 3s infinite;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  animation: pulseWidth 2s infinite;
}

@keyframes pulseWidth {
  0%,
  100% {
    width: 40px;
    opacity: 1;
  }
  50% {
    width: 60px;
    opacity: 0.7;
  }
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links li:hover {
  transform: translateX(10px);
}

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

.footer-newsletter input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(198, 164, 63, 0.1);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 50px;
  color: var(--dark);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.footer-newsletter button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.footer-newsletter button:hover::before {
  width: 300px;
  height: 300px;
}

.footer-newsletter button:hover {
  background: linear-gradient(135deg, var(--white), var(--primary));
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 99;
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(198, 164, 63, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(198, 164, 63, 0.8);
  }
}

.scroll-top:hover {
  background: var(--white);
  transform: translateY(-5px) scale(1.1);
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark), #000);
  padding: 6rem 2rem 2rem;
  z-index: 1000;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-menu.active li:nth-child(5) {
  transition-delay: 0.5s;
}
.mobile-menu.active li:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  background: rgba(198, 164, 63, 0.1);
  color: var(--primary);
  padding-left: 1.5rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .booking-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 3.5rem;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  section {
    padding: 4rem 5%;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .see-more-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /* Loader */
  .loader-page {
    padding: 1rem;
  }

  .loader-logo {
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    animation:
      logoShimmer 3s infinite,
      logoPulse 2s infinite;
  }

  .loader-spinner {
    width: 70px;
    height: 70px;
  }

  .loader-spinner::after {
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
  }

  .loading-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: 1.5rem;
  }

  .progress-bar {
    width: 250px;
    height: 3px;
    margin-top: 1.2rem;
  }

  /* Hero Section */
  .hero {
    height: 90vh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 2rem;
    padding: 0 0.5rem;
    line-height: 1.5;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-indicator span {
    font-size: 0.85rem;
  }

  .scroll-indicator i {
    font-size: 1rem;
  }

  /* Fleet Grid */
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .
  

  /* Contact Items */
  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  /* About Section */
  .services-section#about {
    padding: 3rem 1rem;
  }

  .services-section#about .section-title {
    font-size: 2rem;
  }

  .services-section#about .section-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .services-section#about div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    margin-top: 1.5rem !important;
  }

  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child {
    order: 2;
  }

  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child
    p:first-child {
    font-size: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child
    p:last-child {
    font-size: 0.9rem;
  }

  .services-section#about div[style*="background: black"] {
    height: 250px !important;
    font-size: 2rem !important;
    order: 1;
    margin-bottom: 0.5rem;
  }

  .services-section#about div[style*="background: black"] span {
    font-size: 0.8rem !important;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonials-section .section-title {
    font-size: 2rem;
  }

  .testimonials-section .section-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .testimonial-btn {
    display: none;
  }

  .testimonials-slider {
    padding: 0;
    margin-top: 1.5rem;
  }

  .testimonials-container {
    overflow: hidden;
    width: 100%;
  }

  .testimonials-track {
    gap: 2rem;
    transition: transform 0.4s ease;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    padding: 1.5rem;
    margin: 0;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }

  .quote-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    opacity: 0.3;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .testimonial-author {
    gap: 0.8rem;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .testimonial-dots {
    gap: 8px;
    margin-top: 2rem;
  }

  .testimonial-dot {
    width: 8px;
    height: 8px;
  }

  .testimonial-dot.active {
    width: 10px;
    height: 10px;
  }

  /* Touch-friendly improvements */
  .hero-buttons .btn {
    -webkit-tap-highlight-color: transparent;
    transition:
      transform 0.2s ease,
      background 0.2s ease;
  }

  .hero-buttons .btn:active {
    transform: scale(0.98);
  }

  .scroll-indicator {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .scroll-indicator:active {
    transform: translateX(-50%) scale(0.95);
  }

  .services-section#about div[style*="background: black"] {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .testimonial-dot {
    transition: all 0.3s ease;
  }

  .testimonial-dot:hover {
    background: var(--primary-light);
  }

  /* Better readability */
  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child
    p {
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  .hero {
    min-height: 550px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    max-width: 240px;
  }

  .hero-buttons .btn {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
  }

  .services-section#about .section-title {
    font-size: 1.8rem;
  }

  .services-section#about div[style*="background: black"] {
    height: 200px !important;
    font-size: 1.6rem !important;
  }

  .services-section#about div[style*="background: black"] span {
    font-size: 0.7rem !important;
  }

  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child
    p:first-child {
    font-size: 0.95rem !important;
  }

  .services-section#about
    div[style*="grid-template-columns: 1fr 1fr"]
    > div:first-child
    p:last-child {
    font-size: 0.85rem;
  }

  .testimonials-section {
    padding: 2rem 0.8rem;
  }

  .testimonials-section .section-title {
    font-size: 1.8rem;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .testimonial-dots {
    gap: 6px;
  }

  .testimonial-dot {
    width: 6px;
    height: 6px;
  }

  .testimonial-dot.active {
    width: 8px;
    height: 8px;
  }
}

/* Landscape Orientation */
@media (max-width: 480px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: 400px;
  }

  .hero-buttons .btn {
    padding: 0.8rem 1.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .services-section#about {
    padding: 2rem 1rem;
  }

  .services-section#about div[style*="background: black"] {
    height: 180px !important;
  }

  .services-section#about div[style*="grid-template-columns: 1fr 1fr"] {
    gap: 1.5rem !important;
  }
}


/* Dark Mode Support */
@media (prefers-color-scheme: dark) and (max-width: 480px) {
  .hero::after {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.7)
    );
  }

  .services-section#about div[style*="background: black"] {
    background: #1a1a1a !important;
    box-shadow: 0 10px 30px rgba(198, 164, 63, 0.15) !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) and (max-width: 480px) {
  .hero-title,
  .hero-description,
  .hero-buttons .btn,
  .scroll-indicator {
    animation: none !important;
  }

  .hero-title {
    text-shadow: 0 0 10px rgba(198, 164, 63, 0.3);
  }

  .hero-buttons .btn {
    transition: none;
  }

  .services-section#about div[style*="animation: float"] {
    animation: none !important;
  }

  .testimonial-card.loading-card {
    animation: none !important;
  }
}

/* Notched Phones */
@media (max-width: 480px) {
  @supports (padding: max(0px)) {
    .hero-content {
      padding-left: max(1.5rem, env(safe-area-inset-left));
      padding-right: max(1.5rem, env(safe-area-inset-right));
    }

    .scroll-indicator {
      bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
  }
}

/* Loading State Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.testimonial-card.loading-card {
  animation: pulse 1.5s ease-in-out infinite;
}


