:root {
  --primary: #000000;
  --secondary: #FFD700;
  --soft-yellow: #FFF9C4;
  --accent: #E5B800;
  --light: #F8F8F8;
  --dark: #111111;
  --gray: #777777;
  --white: #FFFFFF;
  --price-color: #000000;
  --success: #28a745;
}

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

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

/* ========== MULTI-PAGE STYLING ========== */
.page {
  display: none;
}

.page.active {
  display: block;
}

.back-to-home-btn {
  display: none; 
}

/* ========== HOW IT WORKS (3 STEPS) STYLES ========== */
.how-it-works {
  padding: 5rem 1rem;
  background: var(--white);
  text-align: center;
}

.steps-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  position: relative;
  background: var(--light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
}

.hiw-step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.step-card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

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

/* ========== TESTIMONY SLIDER SECTION STYLES ========== */
.testimony-slider {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.testimony-slider-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimony-slider-container > p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
}

.testimony-slider-title {
  font-size: 1.5rem; 
  margin-bottom: 2rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: 600;
}

.testimony-slider-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.testimony-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.testimony-slides {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0.5rem 0 1rem;
}

.testimony-slide {
  min-width: 25%;
  padding: 0 12px;
  box-sizing: border-box;
  opacity: 1;
}

.testimony-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
  margin: 0 auto;
}

.testimony-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimony-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.testimony-slider-buttons {
  display: none; 
}

.testimony-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.testimony-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimony-slider-dot.active {
  background: var(--secondary);
}

/* ========== SERVICES SECTION STYLES ========== */
.services {
  padding: 5rem 1rem;
  background: var(--white);
}

.services-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--soft-yellow);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  border-bottom: 4px solid var(--primary);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card.active {
  border-color: var(--primary);
  background: var(--accent);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 1.6rem;
  color: var(--primary);
}

.service-number {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
}

.service-detail-panel {
  max-width: 800px;
  margin: 2.5rem auto 0;
  background: var(--light);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
}

.service-detail-panel h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-detail-panel p {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail-panel .airport-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-detail-panel .airport-list li {
  margin-bottom: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--soft-yellow);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service-detail-panel .airport-list li:hover {
  transform: translateX(5px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.7rem 1.5rem; 
  font-size: 0.9rem; 
  width: max-content; 
  border-radius: 50px;
}

/* ========== HOLIDAY CALENDAR SECTION STYLES ========== */
.holiday-calendar {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.holiday-calendar-container {
  max-width: 1200px;
  margin: 0 auto;
}

.calendar-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
  overflow: hidden;
}

.calendar-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.calendar-note {
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* ========== HERO SECTION ========== */
.hero {
  background: radial-gradient(circle at 75% 50%, #262626 0%, var(--primary) 70%);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 4rem 1rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 420px;
  max-width: 460px;
}

.hero-cutout {
  flex: 1 1 600px;
  max-width: 760px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.45));
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: calc(1rem - 2px) calc(2.5rem - 2px);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    var(--secondary) 0,
    var(--secondary) 14px,
    var(--primary) 14px,
    var(--primary) 28px
  );
}

.cta-button {
  display: inline-block;
  background: var(--secondary); 
  color: var(--primary); 
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: pulse-glow 2s infinite;
}

.cta-button:hover {
  background: var(--accent); 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary); 
  z-index: -2;
  border-radius: 50px;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.7); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.6); }
  100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.7); }
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-checklist li i {
  margin-top: 0.2rem;
}

.about-checklist li i {
  color: var(--success);
  font-size: 1.1rem;
}

.hero-checklist {
  max-width: 500px;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.hero-checklist li {
  color: var(--white);
}

/* ========== PROMO CODE ICON STYLES ========== */
.promo-code-icon {
  display: flex;
  background: none;
  border: none;
  color: var(--secondary); 
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0;
  position: relative;
  overflow: visible;
}

.promo-code-icon:hover {
  background: rgba(255, 215, 0, 0.1); 
  transform: scale(1.1);
}

.promo-code-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.promo-code-icon:hover::before {
  opacity: 0.7;
}

.promo-code-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  background-size: 400%;
  border-radius: 50%;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: glowing 20s linear infinite;
}

.promo-code-icon:hover::after {
  opacity: 0.7;
}

.promo-code-icon .icon-text {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary); 
  color: var(--primary); 
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s, top 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.promo-code-icon:hover .icon-text {
  opacity: 1;
  top: -30px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  left: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  animation: pulse-green 2s infinite, float-glow 3s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes float-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.9), 0 0 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-text {
  position: absolute;
  right: 70px;
  background: var(--primary);
  color: var(--white); 
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
}

/* ========== HEADER STYLES ========== */
header {
  background: var(--primary); 
  color: var(--white); 
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.scrolled header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(255, 255, 255, 0.2); 
}

.top-header {
  padding: 0.6rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 0;
  cursor: pointer;
}

.logo-image {
  height: 70px; 
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); 
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  gap: 0.2rem 0.4rem;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0;
}

nav a {
  display: inline-block;
  white-space: nowrap;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  padding: 0.45rem 0.7rem;
  border-radius: 50px;
  position: relative;
  font-size: 0.8rem;
}

nav a:hover {
  color: var(--secondary);
  background: rgba(255, 215, 0, 0.08);
}


/* DROPDOWN MENU STYLES */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary);
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 1000;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0 !important;
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--secondary) !important;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--secondary); 
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  padding: 0.4rem;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 0;
}

.mobile-menu:hover {
  background: rgba(255, 215, 0, 0.1); 
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
  padding-right: 0;
}

/* ========== PROMO CODE MODAL STYLES ========== */
.promo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.promo-modal.active {
  display: flex;
}

.promo-modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}

.promo-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

.promo-code-display {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary);
  background: var(--primary);
  padding: 15px;
  border-radius: 8px;
  margin: 1.5rem 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.promo-terms {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-align: left;
}

.promo-terms h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.promo-terms ul {
  list-style-type: none;
  padding: 0;
}

.promo-terms li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.promo-terms li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* ========== MULTI-PAGE BOOKING FORM STYLES ========== */
.booking {
  background: var(--primary);
  padding: 0 1rem 3rem;
  text-align: center;
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(255, 255, 255, 0.2);
}

.booking-form {
  display: block;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  animation: fadeIn 0.5s ease;
}

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

.form-step.full-width {
  grid-template-columns: 1fr;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--white); 
  font-size: 0.9rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.7rem;
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.3); 
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  transition: border 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--white); 
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.2rem;
  display: none;
}

.input-error {
  border-color: #ff6b6b !important;
}

/* Price Summary Styles for Desktop */
.price-summary {
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.3); 
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-summary h3 {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  color: var(--white) !important; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
  color: var(--soft-yellow);
  font-size: 0.95rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-total {
  border-top: 2px solid rgba(255, 255, 255, 0.4); 
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white) !important; 
}

.delivery-note {
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-style: italic;
  opacity: 0.9;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.form-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent); 
  transition: left 0.7s;
}

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

.form-btn:hover {
  background: var(--accent); 
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-btn.prev {
  background: var(--dark);
  color: var(--white); 
  border: 1px solid var(--white); 
}

.form-btn.prev:hover {
  background: rgba(255, 255, 255, 0.1); 
}

.form-btn:disabled {
  background: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 1rem;
  position: relative;
}

.progress-step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3); 
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3); 
  z-index: 2;
}

.progress-step.active .step-number {
  background: var(--secondary); 
  color: var(--primary); 
  border-color: var(--secondary); 
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); 
}

.step-label {
  font-size: 0.8rem;
  color: var(--white); 
}

.progress-step.active .step-label {
  color: var(--white); 
  font-weight: 600;
}

/* ========== TERMS & CONDITIONS STYLES ========== */
.terms-container {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  max-height: 400px;
  overflow-y: auto;
  text-align: center;
}

.terms-content {
  text-align: left;
}

.terms-content h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}

.terms-content h5 {
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.terms-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark);
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms-list li:before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.rules-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--dark);
  font-size: 0.9rem;
  line-height: 1.4;
}

.rules-list li:before {
  content: "❌";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

.file-upload {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: center;
}

.file-upload h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.document-list {
  text-align: left;
  margin: 1rem 0;
  color: var(--primary);
  display: inline-block;
  list-style: none;
  padding-left: 0;
}

.document-list li {
  margin-bottom: 0.8rem;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.document-list li:before {
  content: "✔️";
  color: var(--success);
  margin-right: 0.5rem;
  font-weight: bold;
}

.document-note {
  color: var(--primary);
  font-style: italic;
  margin-top: 1rem;
  text-align: center;
}

/* ========== WHY CHOOSE US SLIDER SECTION ========== */
.benefits {
  background: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.benefits-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.benefits-slider {
  display: flex;
  transition: transform 0.5s ease;
  padding: 2.5rem 0 1rem;
}

.benefit-slide {
  min-width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
  transition: all 0.5s ease;
  opacity: 0.7;
  transform: translateY(20px);
}

.benefit-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.benefit-item {
  background: var(--white);
  padding: 3.5rem 1.3rem 2rem;
  border-radius: 90px 90px 20px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: visible;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--accent);
  height: 78px;
  width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-yellow);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
  background: var(--secondary);
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.benefit-item h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 600;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
  text-align: center;
}

.benefits-slider-nav {
  display: none; 
}

.benefits-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.benefits-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.benefits-slider-dot.active {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); 
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

/* ========== CAR PRICELIST ========== */
.cars {
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.car-category-section {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.5rem; 
  margin-bottom: 1.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: 600;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.car-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.car-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0;
  cursor: grab;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
}

.car-slider:active {
  cursor: grabbing;
}

.car-slide {
  min-width: calc(33.333% - 20px);
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.3s, opacity 0.3s;
  flex: 0 0 calc(33.333% - 20px);
}

.car-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 100%;
}

.car-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 255, 255, 0.3); 
}

.car-image {
  height: 160px;
  overflow: hidden;
  position: relative;
  background-color: var(--white);
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.car-image img.img-smaller {
  transform: scale(0.8);
  object-fit: contain;
}

.car-image img.img-medium {
  transform: scale(0.95);
  object-fit: contain;
}

.car-item:hover .car-image img {
  transform: scale(1.1);
}

.car-item:hover .car-image img.img-smaller {
  transform: scale(0.9);
}

.car-item:hover .car-image img.img-medium {
  transform: scale(1.05);
}

.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary); 
  color: var(--primary); 
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 5px rgba(255, 255, 255, 0.5); 
}

.car-info {
  padding: 0.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.2rem;
}

.car-info h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

.car-price {
  color: var(--price-color);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  margin-top: -2px;
}

.car-specs-box {
  padding: 0.8rem 0;
  margin-bottom: 1rem;
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 3px;
  flex: 1;
  min-width: 60px;
}

.spec-icon {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 3px;
}

.spec-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
}

.spec-divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  font-size: 0.8rem;
}

.car-book-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  width: 100%;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.car-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent); 
  transition: left 0.7s;
}

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

.car-book-btn:hover {
  background: var(--accent); 
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.car-slider-nav {
  display: none; 
}

.car-slider-dots {
  display: none; 
}

.swipe-hint {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.swipe-hint i {
  color: var(--secondary);
  animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* ========== CAR SPOTLIGHT (TABS + SINGLE CAR CARD) ========== */
.car-tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.car-tab {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.car-tab:hover {
  background: #333;
}

.car-tab.active {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.car-spotlight-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.car-spotlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.car-spotlight-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.car-spotlight-arrow:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

.car-item.car-spotlight-item {
  flex-direction: row;
  border-radius: 20px;
  height: auto;
  min-height: 400px;
  max-width: 900px;
  width: 100%;
}

.car-spotlight-item .car-image {
  flex: 1 1 45%;
  height: auto;
  align-self: stretch;
  background-image: url('image/picture/jalan raya.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.car-spotlight-item .car-image img {
  position: relative;
  z-index: 1;
  max-height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.car-spotlight-item .car-image img.car-model-toyota-alphard {
  max-height: 230px;
}

.car-spotlight-item .car-spotlight-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0.8rem 0 1.5rem;
}

.car-spotlight-item .car-info {
  flex: 1 1 55%;
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem;
  justify-content: center;
}

.car-spotlight-item .car-info h3 {
  color: var(--white);
  font-size: 1.6rem;
}

.car-spotlight-item .car-price {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.car-spotlight-item .car-book-btn {
  width: auto;
  align-self: flex-start;
  padding: 0.9rem 2.5rem;
  margin-top: 0.5rem;
}

.car-spotlight-counter {
  text-align: center;
  margin-top: 1.2rem;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.car-categories-mobile {
  display: none;
}

.car-category-block {
  margin-bottom: 3rem;
}

.car-category-block:last-child {
  margin-bottom: 0;
}

/* ========== GOOGLE REVIEWS SLIDER STYLES ========== */
.google-reviews {
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.google-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.google-reviews-slider {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.google-reviews-slides {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0.5rem 0 1rem;
}

.google-reviews-slide {
  min-width: 25%;
  padding: 0 12px;
  box-sizing: border-box;
  opacity: 1;
}

.google-review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s;
}

.google-review-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.2); 
}

.google-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.google-review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  margin-right: 1rem;
}

.google-review-name {
  font-weight: 600;
  color: var(--primary);
}

.google-review-date {
  color: var(--gray);
  font-size: 0.9rem;
}

.google-review-stars {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.google-reviews-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.google-reviews-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.google-reviews-slider-dot.active {
  background: var(--secondary);
}

.google-reviews-rating {
  text-align: center;
  margin-bottom: 30px;
}

.google-reviews-rating-badge {
  background: #4285F4;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
}

.google-reviews-button {
  text-align: center;
  margin-top: 40px;
}

.google-reviews-button a {
  background: #4285F4;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  transition: all 0.3s;
}

.google-reviews-button a:hover {
  background: #3367D6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-reviews-button p {
  color: var(--gray);
  font-size: 14px;
  margin-top: 15px;
}

/* ========== FOOTER STYLES ========== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  color: var(--secondary) !important; 
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary); 
}

.footer-column p {
  color: var(--white) !important; 
}

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

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

.footer-links a {
  color: var(--white) !important; 
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary) !important;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--white) !important; 
}

.contact-info i {
  margin-right: 0.8rem;
  color: var(--white) !important; 
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--secondary); 
  color: var(--primary) !important; 
  border-radius: 50%;
  margin-right: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent); 
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); 
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2); 
  font-size: 0.9rem;
  color: var(--white) !important; 
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary); 
  color: var(--primary); 
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), 0 0 5px rgba(255, 255, 255, 0.5); 
  transition: all 0.3s;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--accent); 
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.7); 
}

/* ========== FAQ SECTION STYLES ========== */
.faq {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.faq-item {
  background: var(--soft-yellow);
  margin-bottom: 0;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.2); 
}

.faq-question {
  padding: 1.5rem;
  background: var(--soft-yellow);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.faq-question span:first-child {
  flex: 1;
  margin-right: 1rem;
  text-align: left;
}

.faq-question:hover {
  background: #FFF59D;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
  text-align: left;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 500px;
  color: var(--dark);
}

.faq-answer p, 
.faq-answer ul {
  text-align: left;
  margin-bottom: 1rem;
}

.faq-answer ul {
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  text-align: left;
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* ========== NOTES STYLING ========== */
.rental-notes {
  background: rgba(255, 255, 255, 0.15); 
  padding: 1.2rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  text-align: left;
  border-left: 4px solid var(--white); 
}

.rental-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rental-notes li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.5;
}

.rental-notes li:before {
  content: "📌";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.rental-notes li:last-child {
  margin-bottom: 0;
}

/* ========== Benefits Description Styling ========== */
.benefits-description {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.benefits-description p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark);
  font-weight: 400;
}

/* ========== Company Information Styling ========== */
.company-info {
  color: var(--white) !important;
  line-height: 1.6;
}

.company-info p {
  margin-bottom: 0.5rem;
}

.company-info strong {
  color: var(--white); 
  font-weight: 600;
}

/* ========== Swipe More Text Styling ========== */
.swipe-more-text {
  text-align: center;
  margin-top: 1rem;
  color: var(--gray);
  font-size: 0.9rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.swipe-more-text i {
  color: var(--secondary);
  animation: swipeMoreHint 2s infinite;
}

@keyframes swipeMoreHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* ========== DESKTOP-SPECIFIC STYLES ========== */
@media (min-width: 769px) {
  .price-summary {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.3); 
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1; 
    width: 100%; 
  }

  .price-summary h3 {
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: var(--white) !important; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    color: var(--soft-yellow);
    font-size: 0.95rem;
  }

  .price-row:last-child {
    border-bottom: none;
  }

  .price-total {
    border-top: 2px solid rgba(255, 255, 255, 0.4); 
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white) !important; 
  }

  .price-summary .form-navigation {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
  }

  .car-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 0 10px;
  }

  .car-slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem 0;
    cursor: grab;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .car-slide {
    min-width: calc(33.333% - 20px);
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s, opacity 0.3s;
    flex: 0 0 calc(33.333% - 20px);
  }

  .car-item {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
  }

  .overtime-note {
    display: none;
  }

  .car-slider-nav,
  .car-slider-dots,
  .swipe-hint {
    display: none;
  }
}

@media (min-width: 1025px) {
  .car-slide {
    min-width: calc(25% - 20px);
    flex: 0 0 calc(25% - 20px);
  }
}

/* ========== MOBILE RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    text-align: left;
  }

  .logo-image {
    height: 60px; 
  }

  nav ul {
    margin-top: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav li {
    margin: 0.4rem;
  }

  .hero {
    padding: 2rem 1rem 0;
  }

  .hero-inner {
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }

  .hero-content,
  .hero-cutout {
    flex: none;
    width: 100%;
  }

  .hero-cutout {
    max-width: 420px;
    order: 2;
  }

  .hero-cutout img {
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.4));
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
    max-width: 100%;
    margin: 0 auto 1.2rem;
  }

  .hero-checklist {
    margin: 0 auto 1.2rem;
  }

  .hero-checklist li {
    font-size: 0.85rem;
  }

  .hero-buttons {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .hero-buttons .cta-button,
  .hero-buttons .hero-btn-outline {
    flex: 1 1 0;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .form-step.active {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .booking-container {
    padding: 1rem;
  }

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

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .price-summary {
    padding: 1rem;
    margin: 1rem 0;
  }

  .form-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .mobile-menu {
    display: block;
    font-size: 1.6rem;
    width: 45px;
    height: 45px;
    padding: 0.3rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 0.8rem;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
  }

  nav li {
    margin: 0.4rem 0;
  }

  .benefits, .cars, .booking, .google-reviews, .faq, .holiday-calendar, .testimony-slider, .services {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .car-slide {
    min-width: 100%;
  }

  .car-price {
    margin: 0.8rem 0;
    font-size: 0.9rem;
  }

  .specs-row {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .spec-item {
    min-width: 0;
    margin: 0 2px;
  }

  .spec-icon {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .spec-text {
    font-size: 0.6rem;
  }

  .spec-divider {
    display: none;
  }

  .booking-container, .google-review-form {
    padding: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-button, .form-btn, .car-book-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .price-summary {
    padding: 1rem;
  }

  .google-review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-review-avatar {
    margin-bottom: 0.5rem;
  }

  .form-btn {
    width: 100%;
  }

  .google-reviews-slider-buttons {
    margin-top: 1rem;
  }

  .car-slider-nav {
    display: none; 
  }

  .car-slider-dots,
  .swipe-hint {
    display: none; 
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    font-size: 25px;
  }

  .whatsapp-text {
    display: none;
  }

  .benefit-slide {
    min-width: 100%;
  }

  .testimony-slide,
  .google-reviews-slide {
    min-width: 100%;
  }

  .benefits-slider-nav {
    display: none; 
  }

  .promo-code-display {
    font-size: 1.8rem;
    padding: 10px;
  }

  .progress-step {
    margin: 0 0.5rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .step-label {
    font-size: 0.7rem;
  }

  .terms-list, .document-list {
    text-align: left;
    display: block;
  }

  .faq-container {
    grid-template-columns: 1fr;
  }

  .calendar-iframe {
    height: 400px;
  }

  .calendar-wrapper {
    padding: 1rem;
  }

  .testimony-slider-title {
    font-size: 1.3rem;
  }

  .testimony-image {
    height: 250px;
  }

  .overtime-note {
    display: none; 
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .step-card {
    padding: 1.2rem 1rem;
  }

  .step-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.85rem;
  }

  .hiw-step-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    top: 0.6rem;
    right: 0.6rem;
  }

  .promo-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .car-tabs-container,
  .car-spotlight-wrap {
    display: none;
  }

  .car-categories-mobile {
    display: block;
  }

  .car-spotlight {
    gap: 0.5rem;
  }

  .car-spotlight-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .car-item.car-spotlight-item {
    flex-direction: column;
    min-height: auto;
  }

  .car-spotlight-item .car-image img:not(.car-cat-ev) {
    max-height: 300px;
  }

  .car-spotlight-item .car-image img.car-model-toyota-alphard {
    max-height: 220px;
  }

  .car-spotlight-item .car-info {
    padding: 1.5rem;
  }

  .car-spotlight-item .car-book-btn {
    width: 100%;
  }

  .about-checklist {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

  .section-title {
    font-size: 1.3rem;
  }

  .header-container {
    padding: 0.6rem 0.5rem;
  }

  .logo-image {
    height: 50px; 
  }

  .google-review-card {
    padding: 1.5rem;
  }

  .specs-row {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .spec-item {
    min-width: 0;
    margin: 0 2px;
  }

  .spec-text {
    font-size: 0.7rem;
  }

  .promo-code-display {
    font-size: 1.5rem;
    padding: 8px;
  }

  .calendar-iframe {
    height: 300px;
  }

  .promo-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}