/* Base Styles & Variables */
:root {
  --primary: #121212;
  --secondary: #1e1e1e;
  --accent: #333333;
  --highlight: #4a4a4a;
  --text: #e0e0e0;
  --text-secondary: #b0b0b0;
  --gold: #ffd700;
  --gold-light: #fff3b0;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--highlight);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Marquee Animation */
.modern-marquee {
  background: linear-gradient(90deg, #121212 0%, #333 50%, #121212 100%);
  color: var(--gold-light);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  margin-right: 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 20px;
}

.marquee-content span::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header Styles */
header {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo span {
  color: var(--gold);
  font-weight: 600;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: var(--transition);
}

nav a:hover, nav a:focus {
  color: var(--gold);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

/* Hero Section */
.luxe-booking-section {
  position: relative;
  padding: 5rem 5%;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 20% 30%, var(--gold-light) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, var(--gold-light) 0%, transparent 20%),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-blend-mode: overlay;
  color: var(--text);
  isolation: isolate;
}

.luxe-booking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  z-index: -1;
}

/* Optional: Add some floating gold particles for extra luxury */
.luxe-booking-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(3px 3px at 15% 25%, var(--gold) 50%, transparent 50%),
    radial-gradient(3px 3px at 85% 75%, var(--gold) 50%, transparent 50%),
    radial-gradient(4px 4px at 25% 15%, var(--gold-light) 50%, transparent 50%),
    radial-gradient(4px 4px at 75% 85%, var(--gold-light) 50%, transparent 50%);
  background-repeat: no-repeat;
  animation: float 15s infinite linear;
  z-index: -1;
  opacity: 0.3;
}

@keyframes float {
  0% {
    background-position: 
      15% 25%,
      85% 75%,
      25% 15%,
      75% 85%;
  }
  25% {
    background-position: 
      20% 30%,
      80% 70%,
      30% 20%,
      70% 80%;
  }
  50% {
    background-position: 
      15% 35%,
      85% 65%,
      25% 25%,
      75% 75%;
  }
  75% {
    background-position: 
      20% 30%,
      80% 70%,
      30% 20%,
      70% 80%;
  }
  100% {
    background-position: 
      15% 25%,
      85% 75%,
      25% 15%,
      75% 85%;
  }
}

.luxe-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.luxe-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.luxe-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #e0e0e0 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.luxe-title span {
  background: linear-gradient(90deg, var(--gold) 0%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.luxe-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.luxe-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider-line {
  height: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.5) 50%, transparent 100%);
}

.divider-icon {
  margin: 0 1rem;
  color: var(--gold);
  font-size: 1.2rem;
}

/* Booking Card */
.luxe-booking-card {
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.luxe-booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.header-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.input-group {
  position: relative;
}

.input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

.input-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.input-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: var(--transition);
}

.input-wrapper input:focus + .input-icon svg {
  fill: var(--gold);
}

.swap-btn {
  align-self: flex-end;
  margin-bottom: 2.5rem;
  background: var(--highlight);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.swap-btn:hover {
  background: var(--gold);
  transform: rotate(180deg);
}

.swap-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--text);
}

.swap-btn:hover svg {
  fill: var(--primary);
}

.cta-group {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.luxe-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #e6c200 100%);
  color: var(--primary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.luxe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.luxe-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  transition: var(--transition);
}

.luxe-btn:hover svg {
  transform: translateX(5px);
}

/* Features */
.booking-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(40, 40, 40, 0.5);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature:hover {
  background: rgba(50, 50, 50, 0.7);
  transform: translateY(-5px);
}

.feature-icon {
  background: rgba(255, 215, 0, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Background Elements */
.luxe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.bg-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.bg-2 {
  width: 600px;
  height: 600px;
  background: #666;
 
  left: -400px;
  animation: float 12s ease-in-out infinite reverse;
}

.bg-3 {
  width: 300px;
  height: 300px;
  background: #444;
  top: 50%;
  left: 30%;
  animation: float 10s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 30px); }
}


/* Footer */
/* Font Awesome for icons */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> */

.wat-footer {
  background-color: var(--primary);
  color: var(--text);
  padding: 3rem 0 0;
  font-family: 'Arial', sans-serif;
  border-top: 1px solid var(--highlight);
}

.wat-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.wat-footer-brand {
  margin-bottom: 2rem;
}

.wat-footer-title {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.wat-footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.wat-footer-social {
  display: flex;
  gap: 1rem;
}

.wat-social-link {
  color: var(--text);
  background-color: var(--highlight);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wat-social-link:hover {
  background-color: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

.wat-footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wat-footer-column {
  margin-bottom: 2rem;
}

.wat-footer-heading {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.wat-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
}

.wat-footer-list {
  list-style: none;
  padding: 0;
}

.wat-footer-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.wat-footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.wat-footer-link:hover {
  color: var(--gold);
}

.wat-footer-icon {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.wat-footer-bottom {
  background-color: var(--secondary);
  padding: 1.5rem 0;
  border-top: 1px solid var(--highlight);
}

.wat-footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.wat-footer-legal p {
  margin-bottom: 0.5rem;
}

.wat-footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wat-footer-legal-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wat-footer-legal-link:hover {
  color: var(--gold);
}

/* Media Queries */
@media (min-width: 992px) {
  .wat-footer-container {
    grid-template-columns: 1fr 2fr;
  }

  .wat-footer-links-group {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }

  .wat-footer-column {
    flex: 1;
  }
}

@media (max-width: 991px) {
  .wat-footer-container {
    grid-template-columns: 1fr;
  }

  .wat-footer-links-group {
    flex-direction: column;
    gap: 1.5rem;
  }

  .wat-footer-column {
    margin-bottom: 1.5rem;
  }

  .wat-footer-heading {
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .wat-footer-legal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .wat-footer-legal p {
    margin-bottom: 0;
  }
}

/* Promo Modal */
.promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.promo-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-container {
  position: relative;
  background: var(--secondary);
  border-radius: var(--radius);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
  opacity: 0;
}

.promo-modal.active .modal-container {
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.modal-content {
  text-align: center;
}

.modal-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.benefits-list {
  text-align: left;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(40, 40, 40, 0.5);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(50, 50, 50, 0.7);
}

.benefit-item i {
  color: var(--gold);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.benefit-item span strong {
  color: var(--text);
}

.learn-more-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #e6c200 100%);
  color: var(--primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.learn-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.learn-more-btn i {
  transition: var(--transition);
}

.learn-more-btn:hover i {
  transform: translateX(5px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .swap-btn {
    margin: 0 auto;
    transform: rotate(90deg);
  }
  
  
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    
  }
  
  nav ul {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.6s ease-out;
  }
  
  nav ul.show {
    clip-path: circle(150% at 100% 0);
  }
  
  .luxe-title {
    font-size: 2.5rem;
  }
  
 
  
}

@media (max-width: 480px) {
  .luxe-title {
    font-size: 2rem;
  }
  
  .luxe-subtitle {
    font-size: 1rem;
  }
  
  
  
  
  .modal-container {
    width: 95%;
    padding: 1.5rem;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --item1-transform: translateX(-100%) translateY(-5%) scale(1.5);
    --item1-filter: blur(30px);
    --item1-zIndex: 11;
    --item1-opacity: 0;

    --item2-transform: translateX(0);
    --item2-filter: blur(0px);
    --item2-zIndex: 10;
    --item2-opacity: 1;

    --item3-transform: translate(50%,10%) scale(0.8);
    --item3-filter: blur(10px);
    --item3-zIndex: 9;
    --item3-opacity: 1;

    --item4-transform: translate(90%,20%) scale(0.5);
    --item4-filter: blur(30px);
    --item4-zIndex: 8;
    --item4-opacity: 1;
    
    --item5-transform: translate(120%,30%) scale(0.3);
    --item5-filter: blur(40px);
    --item5-zIndex: 7;
    --item5-opacity: 0;
}


/* carousel */
.carousel{
    position: relative;
    height:100vh;
    overflow: hidden;
    
}
.carousel .list{
    position: absolute;
    width: 1140px;
    max-width: 90%;
    height: 100vh;
    left: 50%;
    transform: translateX(-50%);
}
.carousel .list .item{
    position: absolute;
    left: 0%;
    width: 70%;
    height: 100%;
    font-size: 15px;
    transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel .list .item:nth-child(n + 6){
    opacity: 0;
}
.carousel .list .item:nth-child(2){
    z-index: 10;
    transform: translateX(0);
}
.carousel .list .item img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1.5s;
}

.carousel .list .item .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel .list .item:nth-child(2) .introduce{
    opacity: 1;
    pointer-events: auto;
    width: 400px;
    position: absolute;
    top: 50%;
    transform:  translateY(-50%);
    transition: opacity 0.5s;
}
.carousel .list .item .introduce .title{
    font-size: 2em;
    font-weight: 500;
    line-height: 1em;
}
.carousel .list .item .introduce .topic{
    font-size: 4em;
    font-weight: 500;
}
.carousel .list .item .introduce .des{
    font-size: small;
    color: white;
}
.carousel .list .item .introduce .seeMore{
    font-family: Poppins;
    margin-top: 1.2em;
    padding: 5px 0;
    background: #a11010;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 3px;
    transition: background 0.5s;
    color: white;
    border: 1px solid black;
}
.carousel .list .item .introduce .seeMore:hover{
   background: white;
   color: black;
}
.carousel .list .item:nth-child(1){
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    z-index: var(--item1-zIndex);
    opacity: var(--item1-opacity);
    pointer-events: none;
}
.carousel .list .item:nth-child(3){
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4){
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5){
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
    pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent{
    from{
        transform: translateY(-30px);
        filter: blur(10px);
    }to{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}
.carousel .list .item:nth-child(2) .introduce .topic{
    animation-delay: 1.2s;
}
.carousel .list .item:nth-child(2) .introduce .des{
    animation-delay: 1.4s;
}
.carousel .list .item:nth-child(2) .introduce .seeMore{
    animation-delay: 1.6s;
}
/* next click */
.carousel.next .item:nth-child(1){
    animation: transformFromPosition2 0.5s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2{
    from{
        transform: var(--item2-transform);
        filter: var(--item2-filter);
        opacity: var(--item2-opacity);
    }
}
.carousel.next .item:nth-child(2){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3{
    from{
        transform: var(--item3-transform);
        filter: var(--item3-filter);
        opacity: var(--item3-opacity);
    }
}
.carousel.next .item:nth-child(3){
    animation: transformFromPosition4 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4{
    from{
        transform: var(--item4-transform);
        filter: var(--item4-filter);
        opacity: var(--item4-opacity);
    }
}
.carousel.next .item:nth-child(4){
    animation: transformFromPosition5 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5{
    from{
        transform: var(--item5-transform);
        filter: var(--item5-filter);
        opacity: var(--item5-opacity);
    }
}
/* previous */
.carousel.prev .list .item:nth-child(5){
    animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4){
    animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3){
    animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2){
    animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1{
    from{
        transform: var(--item1-transform);
        filter: var(--item1-filter);
        opacity: var(--item1-opacity);        
    }
}

/* detail  */
.carousel .list .item .detail{
    opacity: 0;
    pointer-events: none;
}
/* showDetail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4){
    left: 100%;
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2){
    width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce{
    opacity: 0;
    pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img{
    right: 50%;
}
.carousel.showDetail .list .item:nth-child(2) .detail{
    opacity: 1;
    width: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title{
    font-size: 4em;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    display: flex;
    gap: 10px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div{
    width: 90px;
    text-align: center;
    flex-shrink: 0;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div p:nth-child(1){
    font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button{
    font-family: Poppins;
    background-color: transparent;
    border: 1px solid #ffffff;
    margin-left: 5px;
    padding: 5px 10px;
    letter-spacing: 2px;
    font-weight: 500;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button:nth-child(2){
    background-color:var(--gold);
    color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .title,
.carousel.showDetail .list .item:nth-child(2) .detail  .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    opacity: 0;
    animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail  .des{
    animation-delay: 1.2s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications{
    animation-delay: 1.4s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout{
    animation-delay: 1.6s;
}
.arrows{
    position: absolute;
    bottom: 70px;
    width: 1140px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    left: 50%;
    transform: translateX(-50%);
}
#prev,
#next{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: monospace;
    border: 1px solid #5555;
    font-size: large;
    bottom: 20%;
    left: 10%;
}
#next{
    left: unset;
    right: 10%;
}
#back{
    position: absolute;
    z-index: 100;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-bottom: 1px solid #fff9f9;
    font-family: Poppins;
    font-weight: bold;
    letter-spacing: 3px;
    background-color: transparent;
    padding: 10px;
    /* opacity: 0; */
    transition: opacity 0.5s;
    color: white;
}
.carousel.showDetail #back{
    opacity: 1;
}
.carousel.showDetail #prev,
.carousel.showDetail #next{
    opacity: 0;
    pointer-events: none;
}
.carousel::before{
    width: 500px;
    height: 300px;
    content: '';
    background-image: linear-gradient(70deg, #ff2626, rgb(255, 230, 3));
    position: absolute;
    z-index: -1;
    border-radius: 20% 30% 80% 10%;
    filter: blur(150px);
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    transition: 1s;
}
.carousel.showDetail::before{
    transform: translate(-100%, -50%) rotate(90deg);
    filter: blur(130px);
}


/* Mobile responsive layout (stacked vertically) */
@media (max-width: 768px) {
    .carousel {
        height: auto;
        min-height: 100vh;
    }
    .carousel .list .item .detail .specifications {
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 0; /* Space for scrollbar */
    }
    .carousel .list .item {
        flex-direction: column;
        position: relative !important;
        height: auto;
        padding: 40px 20px;
        width: 100% !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-top: 20px;
    }
    
    .carousel .list .item .introduce {
        width: 100% !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .carousel .list .item img {
        width: 80% !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto;
    }
    
    /* Adjust the active item styling */
    .carousel .list .item:nth-child(2) {
        z-index: 10;
    }
    
    /* Hide non-active items on mobile */
    .carousel .list .item:not(:nth-child(2)) {
        display: none;
    }
    
    /* Adjust detail view for mobile */
    .carousel.showDetail .list .item:nth-child(2) .introduce {
        display: none;
    }
    
    .carousel.showDetail .list .item:nth-child(2) .detail {
        width: 100% !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        text-align: center;
        padding: 20px;
    }
    
    .carousel.showDetail .list .item:nth-child(2) img {
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    /* Navigation adjustments */
    .arrows {
       
        bottom: 80px;

        
    }
    
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .carousel .list .item .introduce .title {
        font-size: 1.5em !important;
    }
    
    .carousel .list .item .introduce .topic {
        font-size: 2.5em !important;
    }
    
    .carousel .list .item img {
        width: 100% !important;
    }
    
    .carousel.showDetail .list .item:nth-child(2) .detail .title {
        font-size: 2em !important;
    }
}




.services {
  --card-width: 280px;
  padding: 5rem 2rem;
  background: 
    radial-gradient(circle at 10% 20%, var(--gold-light) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, var(--gold-light) 0%, transparent 15%),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-blend-mode: overlay;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  pointer-events: none;
}

.title1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
}

.title1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  width: var(--card-width);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--gold), var(--gold-dark), var(--gold));
  z-index: -1;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

.card:hover::before {
  opacity: 0.3;
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  position: relative;
  display: inline-block;
}

.card h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.card:hover h3::after {
  width: 100%;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
  }
}



.vision-section {
  --primary: #0a0a0a;
  --secondary: #161616;
  --accent: #252525;
  --highlight: #3a3a3a;
  --text: #f0f0f0;
  --text-secondary: #c0c0c0;
  --gold: #ffd700;
  --gold-light: #ffea8a;
  --gold-dark: #e6c200;
  
  padding: 6rem 5%;
  background: 
    radial-gradient(circle at 10% 20%, var(--gold-light) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, var(--gold-light) 0%, transparent 15%),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-blend-mode: overlay;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  pointer-events: none;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.vision-content {
  flex: 1;
  min-width: 300px;
}

.vision-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.vision-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.vision-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.vision-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.car-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.car-image:hover {
  transform: scale(1.02);
}

.vision-quote {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
}

.quote-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-stats {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.highlight {
  color: var(--gold-light);
  font-weight: bold;
}

@media (max-width: 768px) {
  .vision-container {
    flex-direction: column;
  }
  
  .vision-quote {
    padding: 2rem 1.5rem;
  }
  
  .quote-text {
    font-size: 1.1rem;
  }
}



.faq-section {
  padding: 5rem 2rem;
  background-color: var(--primary);
  color: var(--text);
  font-family: 'Arial', sans-serif;
}

.container4 {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--gold);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--secondary);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  background-color: var(--accent);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  margin: 1rem 0 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}



.how-to-book {

padding: 6rem 0;
  background: 
    radial-gradient(circle at 10% 20%, var(--gold-light) 0%, transparent 15%),
    radial-gradient(circle at 90% 80%, var(--gold-light) 0%, transparent 15%),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-blend-mode: overlay;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.how-to-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 5px
    );
  pointer-events: none;
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.booking-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.step-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 1rem 0;
}

.step-content {
  flex: 1;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.booking-step:hover .step-content {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.vehicle-hint {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.vehicle-hint span {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.booking-alternative {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 215, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.phone-icon {
  font-size: 3rem;
  color: var(--gold);
}

.alternative-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.phone-number {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--gold-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.phone-number:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.alternative-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .how-to-book {
    padding: 4rem 1rem;
  }
  
  .booking-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-indicator {
    flex-direction: row;
    width: 100%;
    align-items: center;
  }
  
  .step-line {
    width: auto;
    flex: 1;
    height: 2px;
    margin: 0 1rem;
    background: linear-gradient(to right, var(--gold), transparent);
  }
  
  .booking-alternative {
    flex-direction: column;
    text-align: center;
  }
  
  .phone-icon {
    margin-bottom: 1rem;
  }
}







.travel-experience {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
  position: relative;
  overflow: hidden;
}

.travel-experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 234, 138, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 234, 138, 0.1) 0%, transparent 20%);
  pointer-events: none;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-title2 {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #ffd700;
}

.experience-text {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.car-gallery {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 400px;
}

.car-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.car-slide.active {
  opacity: 1;
}

.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.control-btn {
  background: rgba(255, 215, 0, 0.7);
  color: #0a0a0a;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: #ffd700;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .experience-container {
    grid-template-columns: 1fr;
  }
  
  .car-gallery {
    height: 350px;
    order: -1;
  }
  
  .section-title2 {
    font-size: 2rem;
  }
}








/* Base Styles */
.driver-hero {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.driver-glass-card {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(15, 15, 20, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.driver-hero.in-view .driver-glass-card {
  transform: translateY(0);
  opacity: 1;
}

/* Background Elements */
.gold-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0.2;
}

.gold-dot-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation: float 12s infinite ease-in-out;
}

.gold-dot-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  animation: float 8s 2s infinite ease-in-out reverse;
}

/* Layout */
.driver-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.driver-image-column {
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.driver-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 1s ease;
  opacity: 0.9;
}

.driver-hero.in-view .driver-image {
  transform: scale(1);
  opacity: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15,15,20,0.3) 0%, transparent 50%);
}

.driver-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.driver-hero.in-view .driver-badge {
  transform: translateY(0);
  opacity: 1;
}

.driver-badge span {
  display: block;
  font-size: 1.2rem;
  color: #0a0a0a;
}

.driver-badge small {
  font-size: 0.8rem;
  opacity: 0.8;
  color: #0a0a0a;
}
.dri{
  color: #0a0a0a;
}
/* Content Styles */
.driver-text-column {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.driver-heading {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.heading-line {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s ease;
}

.driver-hero.in-view .heading-line {
  transform: translateY(0);
  opacity: 1;
}

.driver-hero.in-view .heading-line:first-child {
  transition-delay: 0.2s;
}

.driver-hero.in-view .heading-line:last-child {
  transition-delay: 0.3s;
}

.gold-text {
  background: linear-gradient(90deg, var(--gold), #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.driver-subheading {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.4s;
}

.driver-hero.in-view .driver-subheading {
  transform: translateY(0);
  opacity: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

.driver-hero.in-view .benefit-card {
  transform: translateY(0);
  opacity: 1;
}

.driver-hero.in-view .benefit-card:nth-child(1) { transition-delay: 0.5s; }
.driver-hero.in-view .benefit-card:nth-child(2) { transition-delay: 0.6s; }
.driver-hero.in-view .benefit-card:nth-child(3) { transition-delay: 0.7s; }
.driver-hero.in-view .benefit-card:nth-child(4) { transition-delay: 0.8s; }

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA Button */
.cta-wrapper {
  margin-top: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.9s;
}

.driver-hero.in-view .cta-wrapper {
  transform: translateY(0);
  opacity: 1;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.cta-button:hover .arrow-icon {
  transform: translateX(5px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.button-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: -1;
}

.cta-button:hover .button-glow {
  transform: translateX(100%);
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  text-align: center;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .driver-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .driver-image-column {
    height: 400px;
  }
  
  .image-overlay {
    background: linear-gradient(0deg, rgba(15,15,20,0.5) 0%, transparent 50%);
  }
  
  .driver-text-column {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .driver-heading .heading-line {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .driver-hero {
    padding: 4rem 1rem;
  }
  
  .driver-heading .heading-line {
    font-size: 2rem;
  }
  
  .driver-subheading {
    font-size: 1.1rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: space-between;
  }
}