
        :root {
            --primary-color: #1e88e5;
            --primary-light: #6ab7ff;
            --primary-dark: #005cb2;
            --secondary-color: #f5f9ff;
            --text-dark: #333333;
            --text-light: #ffffff;
            --accent-color: #ff9800;
            --accent-dark: #f57c00;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --radius: 12px;
        }


       .floating-bottom-menu-3d {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffffd9;
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  display: flex;
  gap: 12px;
  padding: 8px 16px;
  z-index: 999;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
}

.icon-3d {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: inset -1.5px -1.5px 4px rgba(255,255,255,0.6),
              inset 2px 2px 4px rgba(0,0,0,0.1),
              0 3px 10px rgba(0,0,0,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
  color: #fff;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  flex-shrink: 0;
}

.icon-3d i {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-3d:hover {
  transform: scale(1.1);
  box-shadow: inset -1px -1px 4px rgba(255,255,255,0.5),
              inset 3px 3px 6px rgba(0,0,0,0.15),
              0 6px 16px rgba(0,0,0,0.2);
}

/* Custom warna tiap tombol */
.icon-3d.home     { background: linear-gradient(135deg, #4e54c8, #8f94fb); }
.icon-3d.bus      { background: linear-gradient(135deg, #1cc88a, #20df98); }
.icon-3d.rentalss { background: linear-gradient(135deg, #36b9cc, #60e9f5); }
.icon-3d.taxii     { background: linear-gradient(135deg, #f6c23e, #fddb78); }
.icon-3d.contactt  { background: linear-gradient(135deg, #e74a3b, #f28888); }
.icon-3d.share  { background: linear-gradient(135deg, #00aa74, #015717); }

.menu-item span {
  margin-top: -1px;
}

/* Mobile only */
@media (min-width: 768px) {
  .floating-bottom-menu-3d {
    display: none;
  }
}

        
        /* Tambahkan di dalam style */
.map-container {
    margin: 4rem 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.responsive-map {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.responsive-map iframe {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-subtitle {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

.map-note i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

         .route-button {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--primary-color);
            color: white;
            text-align: center;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .route-button:hover {
            background: var(--primary-dark);
        }


         /* Car Rental Section */
        .rentals {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .rental-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .rental-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            flex: 1 1 300px;
            max-width: 350px;
            transition: all 0.3s ease;
        }
        
        .rental-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .rental-header {
            background: linear-gradient(135deg, #ff9800, #f57c00);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .rental-price {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .rental-name {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .rental-content {
            padding: 20px;
        }
        
        .rental-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .rental-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }
        
        .rental-features li i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        /* Taxi Travel Section */
        .taxi {
            padding: 80px 0;
            background: white;
        }
        
        .taxi-routes {
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            margin-top: 40px;
        }
        
        .taxi-routes h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-dark);
            text-align: center;
        }
        
        .route-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .route-list-item {
            padding: 10px 15px;
            background: #f5f5f5;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }
        
        .route-list-item i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .taxi-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .taxi-info-box {
            flex: 1 1 300px;
            background: #f5f5f5;
            padding: 20px;
            border-radius: var(--radius);
        }
        
        .taxi-info-box h4 {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--primary-dark);
        }
        
        .taxi-info-box h4 i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .taxi-cta {
            text-align: center;
            margin-top: 40px;
        }
        
          .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 14px 32px;
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f0f8ff;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .logo span {
            color: #ffeb3b;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        /* Navigation */
        nav {
            display: flex;
            align-items: center;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 20px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 136, 229, 0.8), rgba(0, 92, 178, 0.8));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }
        
        .hero-slide h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-slide p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .slider-dot.active {
            background: white;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 14px 32px;
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.5s ease;
        }
        
        .cta-button:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
          
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            margin: -3rem auto 3rem;
            max-width: 900px;
            position: relative;
            z-index: 10;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
        }
        
        .highlight-item {
            flex: 1 1 200px;
            padding: 1rem;
            text-align: center;
        }
        
        .highlight-item i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }
        
        .highlight-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .highlight-item p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .features {
            padding: 6rem 0 4rem;
            background-color: var(--secondary-color);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            color: var(--primary-dark);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .feature-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .feature-item {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            flex: 1 1 300px;
            max-width: 350px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
        }
        
        .feature-icon i {
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-title {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--primary-dark);
        }
        
        .routes {
            padding: 5rem 0;
            background: linear-gradient(to bottom, #fff, #f0f8ff);
            position: relative;
        }
        
        .routes::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--secondary-color), transparent);
        }
        
        .route-heading {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .route-heading h2 {
            font-size: 2.2rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .route-heading p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }
        
        .route-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .route-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            flex: 1 1 300px;
            max-width: 350px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .route-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .route-header {
            background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
            color: var(--text-light);
            padding: 1.5rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .route-header::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -75px;
            right: -75px;
        }
        
        .route-price {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        
        .route-name {
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .route-content {
            position: relative;
        }
        
        .route-summary {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .route-summary p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .route-summary p i {
            color: var(--primary-color);
        }
        
        .route-details {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .route-details.active {
            opacity: 1;
            visibility: visible;
        }
        
        .route-modal {
            background: white;
            border-radius: var(--radius);
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        
        .route-details.active .route-modal {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #666;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--primary-color);
        }
        
        .modal-title {
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            color: var(--primary-dark);
        }
        
        .route-destinations {
            list-style: none;
            margin-top: 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 0.5rem;
        }
        
        .route-destinations li {
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        
        .route-destinations li i {
            color: var(--primary-color);
        }
        
        .route-toggle {
            display: block;
            width: 100%;
            padding: 1rem;
            background: var(--primary-light);
            border: none;
            color: white;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            transition: background 0.3s ease;
        }
        
        .route-toggle:hover {
            background: var(--primary-color);
        }
        
        .info-section {
            padding: 5rem 0;
            background-color: var(--secondary-color);
            position: relative;
        }
        
        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, #f0f8ff, transparent);
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .info-card {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .info-title {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
            color: var(--primary-dark);
        }
        
        .info-title i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .special-offers {
            padding: 5rem 0;
            background: linear-gradient(135deg, #e6f7ff, #f0f8ff);
        }
        
        .offers-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .offer-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
        }
        
        .offer-header {
            background: linear-gradient(135deg, #ff9800, #f57c00);
            color: white;
            padding: 1.2rem;
            text-align: center;
        }
        
        .offer-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .offer-content {
            padding: 1.5rem;
        }
        
        .offer-list {
            list-style: none;
            margin-top: 1rem;
        }
        
        .offer-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .offer-list li:last-child {
            border-bottom: none;
        }
        
        .offer-list i {
            color: var(--accent-color);
        }
        
        .contact {
            padding: 5rem 0;
            text-align: center;
            background: linear-gradient(to bottom, #fff, #f0f8ff);
        }
        
        .contact-info {
            margin-bottom: 2.5rem;
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
        
        .contact-detail i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .contact-cta {
            margin-top: 2rem;
        }
        
        footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 3rem 0 2rem;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .social-link i {
            font-size: 1.2rem;
        }
        
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: white;
            border-radius: var(--radius);
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 2rem;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: var(--primary-dark);
            z-index: 1001;
            transition: right 0.3s ease;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        
        .mobile-menu.open {
            right: 0;
        }
        
        .mobile-menu .close-menu {
            align-self: flex-end;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }


        
        
        @media (max-width: 768px) {

            
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hero-slide h1 {
                font-size: 2.2rem;
            }
            
            .hero-slide p {
                font-size: 1.1rem;
            }
            
            .highlight-box {
                flex-direction: column;
                padding: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .route-destinations {
                grid-template-columns: 1fr;
            }
            
            .hero-slider {
                height: 500px;
            }
        }
   