/* *** HALAMAN HOME *** */
/* ==========================
   HERO SECTION (IMMERSIVE)
============================= */
.home-hero {
  position: relative;
  width: 100%;
  min-height: clamp(550px, 80vh, 750px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: var(--global-margin);
  padding: 120px 20px 80px;
}
@media (max-width: 768px) {
  .home-hero { 
    min-height: clamp(500px, 85vh, 650px);
    height: auto;
    padding: 120px 20px 80px; 
  }
  .hero-badge { font-size: 1.1rem; margin-bottom: 8px; }
  .home-hero-content h1 { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
}

@keyframes panBackground {
  0% { object-position: 0% 50%; }
  50% { object-position: 100% 50%; }
  100% { object-position: 0% 50%; }
}

.home-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}
.home-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .home-hero-img {
    animation: panBackground 25s ease-in-out infinite;
  }
}
.home-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1100px;
  padding: 0 20px;
  animation: heroFadeIn 1s ease-out forwards;
}

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

.hero-badge {
  display: inline-block;
  font-family: 'Reey', cursive;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: capitalize;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.home-hero-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.home-hero-content h1 em {
  font-style: italic;
  color: #f0c040;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary, .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.4);
}
.btn-hero-primary:hover {
  background: #d99500;
  transform: translateY(-2px);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ==========================
   ABOUT US MINI
============================= */
.home-about {
  padding: 60px 20px;
  background: #f9fbff;
  margin-bottom: var(--global-margin);
}
.home-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .home-about-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.home-about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.home-about-shape {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, #e8f1fc, #c8d8f0);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 8s ease-in-out infinite;
  position: absolute;
  z-index: 1;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34%      { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67%      { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
.home-about-logo {
  width: 140px; height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}
.home-section-badge {
  display: inline-block;
  font-family: 'Reey', cursive;
  font-size: 1.4rem; font-weight: bold; 
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.home-about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--primary);
  line-height: 1.25; margin-bottom: 16px;
}
.home-about-text p {
  color: #555; line-height: 1.8; margin-bottom: 24px;
}
.home-about-text p strong { color: var(--primary); }
.home-about-list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 860px) {
  .home-about-list { align-items: center; }
}
.home-about-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: #444; font-size: 0.95rem;
}
.home-about-list li i { color: #2ecc71; font-size: 1.1rem; }
.btn-home-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-home-primary:hover { background: var(--accent); transform: translateX(5px); }

/* ==========================
   LOCATION MAP (HOME)
============================= */
.section-maps .map-container {
  height: clamp(300px, 34vw, 360px);
}

.section-maps .map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .section-maps .map-container {
    height: 300px;
  }
}

/* Carousel */
.carousel-container {
  width: 100%;
  max-width: 1000px;
  height: 580px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #000;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--global-margin);
}

@media (max-width: 768px) {
  .carousel-container {
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
  }
}

.carousel-slide .carousel-item {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease;
  border-radius: 15px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.carousel-slide .carousel-item .carousel-label {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  font-size: 11px;
  color: var(--text-color-dark);
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 4px;
  font-weight: bold;
  border-radius: 0 0 8px 8px;
  text-shadow: 1px 1px 3px #000;
}

.carousel-slide .carousel-item:nth-child(1),
.carousel-slide .carousel-item:nth-child(2) {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(0);
  border-radius: 0;
}

.carousel-slide .carousel-item:nth-child(3) {
  left: 58%;
  width: 140px;
  height: 200px;
  z-index: 3;
  transform: translateY(-50%) scale(0.95);
}

.carousel-slide .carousel-item:nth-child(4) {
  left: 70%;
  width: 130px;
  height: 190px;
  z-index: 2;
  transform: translateY(-50%) scale(0.9);
}

.carousel-slide .carousel-item:nth-child(5) {
  left: 81%;
  width: 120px;
  height: 180px;
  z-index: 1;
  transform: translateY(-50%) scale(0.85);
}

.carousel-slide .carousel-item:nth-child(n+6) {
  opacity: 0;
  pointer-events: none;
}

.carousel-item .carousel-content {
  position: absolute;
  top: 50%;
  left: 40px;
  max-width: 300px;
  color: var(--text-color-dark);
  transform: translateY(-50%);
  display: none;
  text-shadow: 1px 1px 3px #000;
}

.carousel-slide .carousel-item:nth-child(2) .carousel-content {
  display: block;
}

.carousel-content .carousel-name {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-color-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease forwards;
}

.carousel-content .carousel-des {
  font-size: 13px;
  text-align: justify;
  line-height: 1.4;
  animation: fadeInUp 1s ease 0.2s forwards;
  margin-bottom: 12px;
  max-width: 250px;
}

.carousel-content a button {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #000;
  background: yellow;
  color: #000;
  cursor: pointer;
  animation: fadeInUp 1s ease 0.4s forwards;
  border-radius: 5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
  }

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

.carousel-button {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.carousel-button button {
  width: 40px;
  height: 40px;
  margin: 0 3px;
  margin-bottom: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition, all 0.3s ease);
  outline: none;
}

.carousel-button button:hover {
  background-color: #000;
  color: #fff;
}

.carousel-button button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.carousel-button button:active {
  outline: none;
  box-shadow: none;
}

@media (max-width:768px) {
  .carousel-container {
    height: 280px;
  }

  .carousel-item .carousel-content {
    left: 20px;
    max-width: 80%;
  }

  .carousel-content .carousel-name {
    font-size: 22px;
  }

  .carousel-content .carousel-des {
    font-size: 11px;
    max-width: 200px;
  }

  .carousel-slide .carousel-item:nth-child(3) {
    left: 70%;
    top: 65%;
    width: 75px;
    height: 105px;
  }

  .carousel-slide .carousel-item:nth-child(4) {
    left: 78%;
    top: 68%;
    width: 65px;
    height: 95px;
  }

  .carousel-slide .carousel-item:nth-child(5) {
    left: 85%;
    top: 71%;
    width: 60px;
    height: 85px;
  }

  .carousel-button {
    justify-content: flex-start;
    padding-left: 15px;
    bottom: 10px;
  }

  .carousel-slide .carousel-item .carousel-label {
    font-size: 10px;
  }
}

/* Paket Wisata Terbaik */
.popular-packages-section {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 20px;
  height: 400px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: var(--global-margin);
  position: relative;
  text-align: left;
}

.flip-card {
  background-color: transparent;
  width: 250px;
  height: 360px;
  perspective: 1000px;
  flex: 0 0 auto;
  position: relative;
  scroll-snap-align: center;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  filter: blur(8px);
  transition: filter 0.5s ease;
}

.flip-card-front img.loaded {
  filter: blur(0);
}

.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: white;
  color: var(--text);
  text-align: center;
  border: var(--card-border-width) solid #e0e0e0;
  box-shadow: var(--card-box-shadow);
}

.flip-card-back p {
  font-size: var(--body-font-size);
  margin: 10px 0;
}

.flip-card-back a {
  display: inline-block;
  padding: 8px 16px;
  margin: 4px;
  border-radius: var(--border-radius);
  background-color: var(--accent-color);
  color: var(--primary-button-text-color);
  text-decoration: none;
  font-size: 14px;
}

/* Spinner & Shimmer */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #d1d5db;
  border-top: 4px solid var(--accent-color);
  border-radius: 50%;
  z-index: 2;
  opacity: 1;
  animation: spin 0.4s linear infinite;
  transition: opacity 0.6s ease;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  z-index: 1;
  opacity: 1;
  animation: shimmer 1.5s infinite;
  transition: opacity 0.6s ease;
}

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

  100% {
    background-position: 200% 0;
  }
}

/* Efek Lain-lain */
.fade-out {
  opacity: 0;
  pointer-events: none;
}

.about-us p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* Kendaraan */
.vehicle-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 12px;
}

.vehicle-card {
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  border: var(--card-border-width) solid #e6e7eb;
  padding: 12px;
  background: #fff;
  box-shadow: var(--card-box-shadow);
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.vehicle-title {
  font-weight: 700;
  margin: 8px 0 4px;
}

.vehicle-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.vehicle-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.vehicle-badge {
  padding: 6px 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vehicle-available {
  background: #dcfce7;
  color: #065f46;
}

.vehicle-booked {
  background: #fee2e2;
  color: #7f1d1d;
}

.vehicle-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  background: #fff;
  padding-top: 8px;
}

.vehicle-btn-wa {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 6px;
}

.vehicle-btn-detail {
  background: var(--primary-button-color);
  color: var(--primary-button-text-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 8px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.vehicle-no-result {
  color: #9ca3af;
  margin-top: 20px;
  font-style: italic;
}

/* Modal Kendaraan */
.vehicle-detailModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.vehicle-detailModalContent {
  background: #fff;
  border: var(--card-border-width) solid #888;
  border-radius: var(--border-radius);
  padding: 20px;
  width: 90%;
  max-width: 500px;
}

.vehicle-detailModal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Shimmer & Spinner */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 8px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  filter: blur(8px);
  transition: filter 0.5s ease;
}

.image-wrapper img.loaded {
  filter: blur(0);
}

.image-wrapper .shimmer,
.image-wrapper .spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS untuk Promo Terbaru */
.promo-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  margin-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}

.promo-card {
  width: 300px;
  flex-shrink: 0;
  border-radius: var(--border-radius);
  border: var(--card-border-width) solid #e6e7eb;
  padding: 12px;
  background: #fff;
  box-shadow: var(--card-box-shadow);
  display: flex;
  flex-direction: column;
}

.promo-card h3 {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin: 8px 0 4px;
  color: var(--text);
}

.promo-card p {
  font-size: var(--body-font-size);
  line-height: 1.4em;
  color: #6b7280;
  margin-bottom: 8px;
}

.promo-card button {
  margin-top: auto;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--primary-button-text-color);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: var(--font-weight-bold);
  background-color: var(--primary-button-color);
}

.event-date {
  font-style: italic;
  color: #555;
}

/* Style untuk indikator scroll */
.scroll-indicator {
  z-index: 20;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  pointer-events: none;
  /* Efek fade+animasi tarik kiri */
  opacity: 1;
  transition: opacity var(--scroll-indicator-fade-duration) var(--scroll-indicator-fade-ease), visibility var(--scroll-indicator-fade-duration) var(--scroll-indicator-fade-ease);
  animation: pullLeft 2s ease-in-out infinite;
  transition-delay: 0.5s;
  /* delay default saat muncul */
}

.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  animation: none;
  /* stop animasi saat disembunyikan */
  transition-delay: 0s;
  /* langsung hilang */
}

/* Animasi tarik kiri */
@keyframes pullLeft {
  0% {
    transform: translateY(-50%) translateX(0);
  }

  10% {
    transform: translateY(-50%) translateX(-8px);
  }

  20% {
    transform: translateY(-50%) translateX(0);
  }

  30% {
    transform: translateY(-50%) translateX(-8px);
  }

  40% {
    transform: translateY(-50%) translateX(0);
  }

  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* Perbaikan wrapper scroller supaya tidak merusak layout */
.scroller-wrap {
  position: relative;
  width: 100%;
  /* ikut lebar parent */
  overflow: hidden;
  /* cegah konten meluber */
}

.scroller-wrap>*:first-child {
  width: 100%;
  /* scroller utama tetap pakai 100% */
}

/* CSS untuk Layanan Driver On Call */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Mengatur agar responsif */
  gap: 9px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: var(--border-radius);
  border: var(--card-border-width) solid #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.service-item:hover {
  background: #f5f9ff;
}

.service-icon {
  font-size: 1.5rem;
  color: var(--primary-button-color);
  margin-right: 15px;
  min-width: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.service-info {
  flex: 1;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
  transition: all 0.3s ease;
}

.service-description {
  font-size: 0.9rem;
  color: #555;
  max-height: 0;
  overflow: hidden;
  line-height: 1.4;
  margin-top: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, margin-top 0.3s ease;
  white-space: pre-wrap;
}

/* Aktif */
.service-item.active {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #f0f8ff;
  border-color: var(--primary-button-color);
}

.service-item.active .service-icon {
  font-size: 2rem;
  margin: 0 0 10px 0;
  color: var(--accent-color);
  animation: spinOnce 0.6s ease;
}

@keyframes spinOnce {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.service-item.active .service-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-item.active .service-description {
  max-height: 500px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

/* Animasi per kata/span */
.service-description span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  white-space: pre;
}

.service-item.active .service-description span {
  animation: fadeUp 0.5s forwards;
}

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

/* CTA */
.cta-container {
  text-align: center;
  margin-top: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.95rem;
  border-radius: var(--border-radius);
  background: var(--primary-button-color);
  color: var(--primary-button-text-color);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  transition: background 0.2s ease;
}

.cta-btn:hover {
  background: #003580;
}

/* Mengapa Memilih Kami Section */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: var(--global-margin);
}

.feature-item {
  width: calc(33.333% - 20px);
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.6s ease;
}

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

.feature-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.feature-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  font-family: var(--primary-font);
  transition: opacity 0.3s ease;
}

.feature-item.selected {
  background-color: #fff;
  transform: scale(1.1) translateY(8px);
  z-index: 2;
  padding: 5px;
}

.feature-item.selected p {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

/* Popup bubble */
.popup-bubble {
  display: none;
  position: absolute;
  z-index: 9999;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--text);
  text-align: center;
  word-wrap: break-word;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: slideUpIn 0.3s ease forwards;
}

.popup-title {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
}

.popup-text {
  margin-top: 6px;
  font-size: 13px;
  font-family: 'Segoe UI', sans-serif;
}

.popup-bubble::after {
  content: '';
  position: absolute;
  border-width: 6px;
  border-style: solid;
}

.popup-top::after {
  top: -12px;
  left: 30px;
  border-color: transparent transparent #fff transparent;
}

.popup-left::after {
  top: 10px;
  right: -12px;
  border-color: transparent transparent transparent #fff;
}

.popup-right::after {
  top: 10px;
  left: -12px;
  border-color: transparent #fff transparent transparent;
}

/* Animasi baru */
@keyframes slideUpIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes slideDownOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(15px);
  }
}

.slide-out {
  animation: slideDownOut 0.3s ease forwards;
}

@media screen and (max-width:768px) {
  .feature-item {
    width: calc(50% - 15px);
  }

  .feature-item img {
    width: 60px;
    height: 60px;
  }

  .feature-item p {
    font-size: 13px;
  }

  .section-wrapper h3 {
    font-size: 22px;
  }

  .popup-bubble {
    font-size: 13px;
    max-width: 160px;
    padding: 8px 10px;
  }

  .feature-item.selected {
    transform: scale(1.05) translate(6px, 8px);
    padding: 5px;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: var(--section-padding);
}

/* Gallery wrapper full-bleed */
.gallery-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .gallery-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .gallery-container {
    height: 600px !important;
  }
}

.gallery-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  height: clamp(250px, 50vw, 500px);
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.5s ease;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-position: center center;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  transition: transform 4s ease;
  pointer-events: none;
  will-change: transform;
}

/* Overlay atas */
.overlay-top {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: bold;
  opacity: 0;
  transition: opacity 1s ease;
  backdrop-filter: blur(3px);
  pointer-events: none;
}

/* Overlay bawah */
.overlay-bottom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.65rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .6s ease, transform .6s ease;
  backdrop-filter: blur(4px);
}

.overlay-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

.overlay-bottom i {
  font-size: 14px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 4px rgba(255, 75, 92, 0.6));
  margin-right: 4px;
  margin-top: 4px;
  animation: markerSpin 3s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes markerSpin {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.overlay-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.overlay-text .destination {
  font-size: 0.55rem;
  opacity: 0.9;
}

.overlay-text .city {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}

.gallery-slide.active .overlay-text .city {
  opacity: 1;
  transform: translateY(0);
}

/* Tombol navigasi */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.gallery-btn.prev {
  left: 15px;
}

.gallery-btn.next {
  right: 15px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  appearance: none;
  border: 0;
  padding: 0;
  line-height: 0;
  box-sizing: content-box;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.dot.active {
  background: rgba(255, 255, 255, 0.9);
}

/* Placeholder untuk slide kosong */
.gallery-slide img.placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}

/* Tombol hanya di desktop */
@media (max-width:767px) {
  .gallery-btn {
    display: none;
  }
}


/* === Modal Kalender === */
#rentcalendarModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  backdrop-filter: blur(4px);
}

#rentcalendarModal.show {
  display: flex;
  opacity: 1;
}

/* === Kontainer Utama Modal === */
#rentcalendarContent {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  width: 96%;
  max-width: 880px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  animation: popUp 0.3s ease;
}

@keyframes popUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* === Header === */
#rentcalendarContent>div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f3f4f6;
  padding-bottom: 8px;
}

#rentcalendarTitle {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

#rentcloseCalendar {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#rentcloseCalendar:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* === Area Kalender (lebih kompak) === */
#rentcalendarRoot {
  width: 100%;
  flex: 1;
  min-height: 220px !important;
  max-height: 340px !important;
  overflow-y: auto;
  border-radius: 12px;
  background: #f9fafb;
  padding: 4px;
}

/* === Kontrol (Durasi, WA, Info) === */
#rentcalendarControls {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 6px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

#rentcalendarControls select,
#rentcalendarControls button {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
}

#rentcalendarControls select:focus {
  outline: none;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

#rentcalendarControls button {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#rentcalendarControls button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

/* === Info Tanggal === */
#rentselectedDateInfo {
  font-style: italic;
  color: #065f46;
  display: none;
  text-align: center;
  font-weight: 600;
}

/* === FullCalendar Styling (super kompak & fix override) === */
.fc {
  background: #fff;
  border-radius: 12px;
  padding: 8px !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px !important;
}

/* Toolbar */
.fc-toolbar {
  margin-bottom: 4px !important;
}

.fc-toolbar-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Tombol navigasi */
.fc-button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 2px 6px !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  color: white !important;
}

.fc-button:hover {
  transform: scale(1.05);
}

/* === Grid Hari sangat pendek === */
.fc .fc-daygrid-day-frame {
  min-height: 30px !important;
  max-height: 34px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.fc .fc-daygrid-day-top {
  padding: 0 !important;
  margin-bottom: 1px !important;
}

/* Nomor hari */
.fc .fc-daygrid-day-number {
  font-weight: 600 !important;
  color: #374151 !important;
  font-size: 10px !important;
  line-height: 1.1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Hover & seleksi */
.fc .fc-daygrid-day {
  transition: all 0.15s ease-in-out;
  border-radius: 5px !important;
  cursor: pointer;
}

.fc .fc-daygrid-day:hover {
  background-color: #ecfdf5 !important;
  transform: scale(1.01);
}

.fc .fc-daygrid-day.selected-date {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0) !important;
  border: 2px solid #16a34a !important;
  border-radius: 6px !important;
}

/* === Event (Tanggal Terbooking) === */
.fc .fc-event {
  font-size: 8.8px !important;
  font-weight: 600 !important;
  font-style: italic !important;
  padding: 1px 3px !important;
  margin-top: 1px !important;
  border-radius: 3px !important;
  user-select: none !important;
  color: #7f1d1d !important;
  border: none !important;
  background: linear-gradient(135deg, #fecaca, #f87171) !important;
  box-shadow: 0 1px 1px rgba(248, 113, 113, 0.25) !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transform: rotate(-2deg);
  backdrop-filter: blur(1px);
}

.fc .fc-event:hover {
  transform: rotate(-1deg) scale(1.04);
  box-shadow: 0 2px 5px rgba(248, 113, 113, 0.3);
}

/* === TOAST UTAMA (Merah, Tengah Layar – shake cepat & lembut) === */
#renttoast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: rgba(239, 68, 68, 0.88);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1100;
  max-width: 260px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#renttoast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  animation: shake 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* === Efek goyangan === */
@keyframes shake {
  0%, 100% {
    transform: translate(-50%, -50%);
  }
  10%, 90% {
    transform: translate(-52%, -50%);
  }
  20%, 80% {
    transform: translate(-48%, -50%);
  }
  30%, 70% {
    transform: translate(-50%, -52%);
  }
  40%, 60% {
    transform: translate(-50%, -48%);
  }
}

/* ==== MODAL DETAIL KENDARAAN ==== */
#rentdetailModal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

#rentdetailModal.show {
  display: flex;
  animation: fadeIn 0.25s ease-in-out;
}

#rentdetailModalContent {
  background-color: #fff;
  padding: 24px;
  border-radius: 14px;
  width: 92%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: slideUp 0.3s ease;
  text-align: center;
}

#rentdetailModal .rentclose {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.2s ease;
}

#rentdetailModal .rentclose:hover {
  color: #000;
}

/* ==== GAMBAR ==== */
#rentvehicleDetail img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* ==== TEKS ==== */
#rentvehicleDetail h2 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 8px;
}

#rentvehicleDetail p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

#rentvehicleDetail p strong {
  color: #16a34a;
}

/* ==== RESPONSIVE ==== */
@media (min-width: 768px) {
  #rentdetailModalContent {
    max-width: 620px;
    padding: 28px 36px;
    text-align: left;
  }

  #rentvehicleDetail img {
    max-height: 320px;
    border-radius: 12px;
  }

  #rentvehicleDetail h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  #rentvehicleDetail p {
    font-size: 1rem;
  }
}

/* ==== ANIMASI ==== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

/* ===== Terms & Conditions Section ===== */
#rentterms {
  margin: 16px;
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 25px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  color: #333;
}

#rentterms h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

#rentterms p {
  margin-bottom: 10px;
  line-height: 1.6;
}

#rentterms ul {
  padding-left: 0;
  margin-bottom: 15px;
}

#rentterms ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#rentterms ul li i {
  color: #00b4d8;
}
/* ==========================
   WHY CHOOSE US: BENTO GRID
============================= */
.home-bento {
  padding: 80px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto var(--global-margin);
}
.home-bento-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.home-bento-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.home-bento-header p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 24px;
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
}

.bento-item {
  background: #f8fafc;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(26,58,110,0.08);
  background: #fff;
}

/* Grid Span Classes */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}
.bento-large h3 { color: #fff !important; font-size: 1.8rem !important; }
.bento-large p { color: rgba(255,255,255,0.9) !important; font-size: 1.05rem !important; }
.bento-large .bento-icon { background: rgba(255,255,255,0.2) !important; color: #fff !important; }

@media (max-width: 900px) {
  .bento-large { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  .bento-large { grid-column: span 1; grid-row: span 1; }
}

.bento-wide {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .bento-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .bento-wide { grid-column: span 1; }
}
.bento-wide .bento-content-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-icon {
  width: 56px; height: 56px;
  background: #e8f1fc;
  color: var(--primary-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.bento-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}
.bento-item p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================
   DRIVER ON CALL: PREMIUM SPLIT LIST
============================= */
.home-services-split {
  padding: 60px 20px;
  background: #f8fafc;
  margin-bottom: var(--global-margin);
}
.home-services-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .home-services-inner { grid-template-columns: 1fr; gap: 40px; }
}
.home-services-left {
  max-width: 450px;
}
.home-services-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.home-services-left p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.home-services-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(26,58,110,0.1);
  padding-left: 30px;
}
@media (max-width: 860px) {
  .home-services-right { border-left: none; padding-left: 0; }
}

.service-strip {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,58,110,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-strip:last-child {
  border-bottom: none;
}
.service-strip:hover {
  transform: translateX(10px);
}
.service-strip-icon {
  width: 48px; height: 48px;
  background: #e8f1fc;
  color: var(--primary-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.service-strip:hover .service-strip-icon {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(35,88,159,0.3);
}
.service-strip-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.service-strip:hover .service-strip-text h3 {
  color: var(--accent);
}
.service-strip-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================
   CAROUSEL SECTION
============================= */
.home-carousel-section {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.home-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.home-section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.home-section-header p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================
   WHY CHOOSE US: MINIMAL GRID
============================= */
.home-why-choose {
  padding: 80px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto var(--global-margin);
}
.home-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.home-why-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.home-why-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.why-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .why-minimal-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .why-minimal-grid { grid-template-columns: 1fr; }
}

.why-minimal-item {
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(26,58,110,0.05);
  transition: all 0.3s ease;
}
.why-minimal-item:hover {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-5px);
  border-color: rgba(26,58,110,0.1);
}
.why-minimal-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  background: #e8f1fc;
  color: var(--primary);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.why-minimal-item:hover .why-minimal-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.why-minimal-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.why-minimal-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   MOBILE DENSITY & PROPORTION OPTIMIZATION
============================================ */
@media (max-width: 768px) {
  /* Reduce global section paddings to make them denser */
  .home-carousel-section, 
  .home-about, 
  .promo-section, 
  .container_paket, 
  .vehicle-section, 
  .why-minimal-section, 
  .home-services-split, 
  .cta-modern {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Shrink section titles and descriptions */
  .section-title, .home-about-text h2 {
    font-size: clamp(1.6rem, 5vw, 2rem) !important;
    margin-bottom: 12px !important;
  }
  .section-description, .home-about-text p {
    font-size: 0.95rem !important;
    margin-bottom: 24px !important;
  }
  .home-section-badge {
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
  }
  
  /* Shrink Grid Gaps */
  .home-about-inner, 
  .why-minimal-grid, 
  .home-services-inner {
    gap: 24px !important;
  }

  /* Adjust About Us graphic for denser look */
  .home-about-visual {
    min-height: 220px !important;
  }
  .home-about-shape {
    width: 220px !important;
    height: 220px !important;
  }
  .home-about-logo {
    width: 110px !important;
    height: 110px !important;
  }
  
  /* Scale down buttons slightly */
  .btn-home-primary, 
  .btn-hero-primary, 
  .btn-hero-secondary {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }

  /* Proportional Cards (Slightly smaller than desktop, but not too narrow) */
  .promo-card, .vehicle-card {
    width: 250px !important;
    padding: 12px !important;
  }
  .promo-card h3, .vehicle-title {
    font-size: 1.1rem !important;
    margin: 8px 0 6px !important;
    white-space: normal;
  }
  .promo-card p, .vehicle-card p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    display: block !important;
    max-height: 3.57rem !important; /* (0.85rem font-size * 1.4 line-height * 3 baris) */
    overflow: hidden !important;
  }
  .promo-card button, .vehicle-card button {
    padding: 8px 12px !important;
    font-size: 0.8rem !important;
  }
  .promo-card img, .vehicle-card img {
    height: 140px !important;
    object-fit: cover !important;
  }
}
