/* ============================================
   Lombok Taxis - CSS
   Mobile-first responsive design
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2332;
  letter-spacing: 1px;
}

/* Hamburger Toggle */
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  position: relative;
}

.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

.header__toggle.active .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__toggle.active .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__toggle.active .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 149;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Navigation - Mobile Slide Menu */
.nav {
  display: block;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  padding: 80px 0 24px;
  z-index: 150;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav.active {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 16px;
}

.nav__item {
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.nav__item:last-child {
  border-bottom: none;
}

.nav__link {
  display: block;
  padding: 16px 12px;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav__link:hover,
.nav__link:focus {
  background: #f0f7ff;
  color: #1a5276;
  padding-left: 20px;
}

.nav__link:active {
  background: #e8f4fd;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.anim-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}

.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

/* Staggered grid animations */
.tours-grid .tour-card:nth-child(1) { animation-delay: 0.05s; }
.tours-grid .tour-card:nth-child(2) { animation-delay: 0.1s; }
.tours-grid .tour-card:nth-child(3) { animation-delay: 0.15s; }
.tours-grid .tour-card:nth-child(4) { animation-delay: 0.2s; }
.tours-grid .tour-card:nth-child(5) { animation-delay: 0.25s; }
.tours-grid .tour-card:nth-child(6) { animation-delay: 0.3s; }
.tours-grid .tour-card:nth-child(7) { animation-delay: 0.35s; }
.tours-grid .tour-card:nth-child(8) { animation-delay: 0.4s; }
.tours-grid .tour-card:nth-child(9) { animation-delay: 0.45s; }
.tours-grid .tour-card:nth-child(10) { animation-delay: 0.5s; }
.tours-grid .tour-card:nth-child(11) { animation-delay: 0.55s; }
.tours-grid .tour-card:nth-child(12) { animation-delay: 0.6s; }
.tours-grid .tour-card:nth-child(13) { animation-delay: 0.65s; }
.tours-grid .tour-card:nth-child(14) { animation-delay: 0.7s; }
.tours-grid .tour-card:nth-child(15) { animation-delay: 0.75s; }
.tours-grid .tour-card:nth-child(16) { animation-delay: 0.8s; }

/* Staggered blog grid animations */
.blog-grid .blog-card:nth-child(1) { animation-delay: 0.05s; }
.blog-grid .blog-card:nth-child(2) { animation-delay: 0.1s; }
.blog-grid .blog-card:nth-child(3) { animation-delay: 0.15s; }
.blog-grid .blog-card:nth-child(4) { animation-delay: 0.2s; }
.blog-grid .blog-card:nth-child(5) { animation-delay: 0.25s; }
.blog-grid .blog-card:nth-child(6) { animation-delay: 0.3s; }
.blog-grid .blog-card:nth-child(7) { animation-delay: 0.35s; }
.blog-grid .blog-card:nth-child(8) { animation-delay: 0.4s; }
.blog-grid .blog-card:nth-child(9) { animation-delay: 0.45s; }
.blog-grid .blog-card:nth-child(10) { animation-delay: 0.5s; }
.blog-grid .blog-card:nth-child(11) { animation-delay: 0.55s; }
.blog-grid .blog-card:nth-child(12) { animation-delay: 0.6s; }
.blog-grid .blog-card:nth-child(13) { animation-delay: 0.65s; }
.blog-grid .blog-card:nth-child(14) { animation-delay: 0.7s; }
.blog-grid .blog-card:nth-child(15) { animation-delay: 0.75s; }
.blog-grid .blog-card:nth-child(16) { animation-delay: 0.8s; }

/* ============================================
   Home Hero — Clean White
   ============================================ */
.home-hero {
  padding: 80px 0 60px;
  background: #fff;
}

.home-hero__inner {
  text-align: center;
}

.home-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.home-hero__subtitle {
  font-size: 1.15rem;
  color: #666;
  margin: 0 0 36px;
  font-weight: 400;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.home-hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

.home-hero__cta:active {
  transform: scale(0.98);
}

/* ============================================
   Section Common
   ============================================ */
.section {
  padding: 64px 0;
}

.section--alt {
  background: #f8f9fa;
}

.section__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1a2332;
}

.section__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

.text-center { text-align: center; }

/* ============================================
   Features Grid
   ============================================ */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border-color: #e8f4fd;
}

.feature__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a2332;
}

.feature__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   Tour Cards Grid
   ============================================ */
.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.tour-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tour-card__image {
  position: relative;
  padding-top: 117%;
  overflow: hidden;
}

.tour-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.05);
}

.tour-card__body {
  padding: 16px;
}

.tour-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2980b9;
  background: #e8f4fd;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a5276;
}

.tour-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #2980b9;
  font-size: 0.9rem;
}

.tour-card__link:hover {
  color: #1a5276;
}

/* ============================================
   Car / Rent Cards
   ============================================ */
.cars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.car-card__image {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
}

.car-card__image img {
  max-height: 200px;
  margin: 0 auto;
  object-fit: contain;
}

.car-card__body {
  padding: 20px;
}

.car-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a5276;
  margin-bottom: 16px;
}

.car-card__pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.car-card__price-box {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.car-card__price-label {
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.car-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a5276;
  margin: 4px 0;
}

.car-card__price-unit {
  font-size: 0.8rem;
  color: #888;
}

.car-card__specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.car-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #666;
}

.car-card__spec strong {
  color: #333;
}

/* ============================================
   Blog Cards Grid
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card__image {
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}

.blog-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 16px;
}

.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

.blog-card__category {
  font-weight: 600;
  color: #2980b9;
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a5276;
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.blog-card__link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #2980b9;
  font-size: 0.9rem;
}

/* ============================================
   Tour Detail Page — Design A: Full Bleed Hero
   ============================================ */
.tour-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.tour-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.tour-badge {
  display: inline-block;
  background: #e8f4fd;
  color: #2980b9;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0 0 16px;
  line-height: 1.2;
}

.tour-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a5276;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e8f4fd;
}

.tour-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 20px 0 8px;
}

.tour-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444;
  margin: 16px 0 6px;
}

.tour-content p {
  margin-bottom: 14px;
  color: #555;
  line-height: 1.75;
  font-size: 0.95rem;
}

.tour-content ul,
.tour-content ol {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}

.tour-content li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: #555;
  line-height: 1.65;
}

.tour-content li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
}

.tour-content strong {
  color: #1a2332;
}

.tour-content img {
  border-radius: 10px;
  margin: 20px 0;
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.tour-content hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 28px 0;
}

.tour-cta-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 40px auto 0;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.tour-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Blog meta */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-date,
.blog-readtime {
  font-size: 0.85rem;
  color: #888;
}

.blog-readtime::before {
  content: "•";
  margin-right: 12px;
}

.tour-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.9rem;
}

.tour-detail__content th,
.tour-detail__content td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.tour-detail__content th {
  background: #f8f9fa;
  font-weight: 600;
  color: #1a2332;
}

/* CTA Box */
.cta-box {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-box__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
}

.cta-box__text {
  margin-bottom: 20px;
  color: #666;
}

.cta-box__btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1a2332;
  color: #ccc;
  padding: 48px 0 24px;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: #aaa;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid #2a3a4a;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ============================================
   Rent Page — Variant A Style
   ============================================ */

/* Rent Cards Grid */
.rent-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.rent-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}

.rent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: #e0e0e0;
}

.rent-card__image {
  position: relative;
  padding-top: 70%;
  overflow: hidden;
}

.rent-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.rent-card:hover .rent-card__image img {
  transform: scale(1.05);
}

.rent-card__body {
  padding: 24px;
}

.rent-card__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #25d366;
  background: #eafaf1;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.rent-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rent-card__text {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}

.rent-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2332;
}

/* Rent Vehicles List */
.rent-vehicles {
  margin-bottom: 60px;
}

.rent-vehicles__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.rent-vehicle {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.rent-vehicle:last-child {
  border-bottom: none;
}

.rent-vehicle__img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.rent-vehicle__info {
  flex: 1;
}

.rent-vehicle__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.rent-vehicle__specs {
  font-size: 0.8rem;
  color: #888;
}

.rent-vehicle__price {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2332;
  text-align: right;
}

/* Rent CTA */
.rent-cta {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.rent-cta h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rent-cta p {
  color: #888;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

@media(max-width:768px) {
  .rent-cards { grid-template-columns: 1fr; }
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.page-header {
  background: #fff;
  padding: 48px 0 32px;
  text-align: center;
}

.page-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 8px;
}

.page-header__subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================
   Responsive: Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .nav__list {
    flex-direction: row;
    gap: 0;
    padding: 0;
  }

  .nav__item {
    border-bottom: none;
  }

  .nav__link {
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .nav__link:hover,
  .nav__link:focus {
    padding-left: 16px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

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

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

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

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

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

/* ============================================
   Responsive: Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .section {
    padding: 64px 0;
  }

  .features {
    grid-template-columns: repeat(4, 1fr);
  }

  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Responsive: Large Desktop (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .tours-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.cookie-consent.show {
  display: flex;
}

.cookie-consent__modal {
  background: #fff;
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.cookie-consent__header {
  background: #1a2332;
  padding: 20px 24px;
  text-align: center;
}

.cookie-consent__icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.cookie-consent__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cookie-consent__body {
  padding: 20px 24px;
}

.cookie-consent__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.cookie-consent__text a {
  color: #25d366;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-consent__text a:hover {
  color: #20bd5a;
}

.cookie-consent__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-consent__btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.cookie-consent__btn--accept {
  background: #25d366;
  color: #fff;
}

.cookie-consent__btn--accept:hover {
  background: #20bd5a;
}

.cookie-consent__btn--settings {
  background: #f5f5f5;
  color: #333;
}

.cookie-consent__btn--settings:hover {
  background: #eee;
}

.cookie-consent__btn--reject {
  background: transparent;
  color: #999;
  font-size: 0.85rem;
}

.cookie-consent__btn--reject:hover {
  color: #333;
}

/* Settings Modal */
.cookie-settings {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.cookie-settings.show {
  display: flex;
}

.cookie-settings__modal {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-settings__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2332;
  margin: 0;
}

.cookie-settings__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 4px;
  line-height: 1;
}

.cookie-settings__close:hover {
  color: #333;
}

.cookie-settings__body {
  padding: 20px 24px;
}

.cookie-settings__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-settings__category {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.cookie-settings__category:last-child {
  margin-bottom: 0;
}

.cookie-settings__category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings__category-name {
  font-weight: 600;
  color: #1a2332;
  font-size: 0.95rem;
}

.cookie-settings__category-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f0f0f0;
  color: #666;
}

.cookie-settings__category-badge--required {
  background: #e8f4fd;
  color: #2980b9;
}

.cookie-settings__category-desc {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
  line-height: 1.5;
}

.cookie-settings__toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: #ddd;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.cookie-settings__toggle.active {
  background: #25d366;
}

.cookie-settings__toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-settings__toggle.active::after {
  transform: translateX(20px);
}

.cookie-settings__toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-settings__footer {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-settings__save {
  width: 100%;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-settings__save:hover {
  background: #20bd5a;
}

/* Responsive */
@media (min-width: 640px) {
  .cookie-consent__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .cookie-consent__btn {
    flex: 1;
  }
}
