.hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.hero img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.search-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.search-input-group {
    display: flex;
    gap: 20px;
    width: 100%;
}

.location-input {
    flex: 1;
    position: relative;
}

.date-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.search-box input {
    width: calc(100% - 30px);
    padding: 12px 15px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.search-box select {
    padding: 12px 15px;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.search-box input:focus,
.search-box select:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.datetime-group {
    display: flex;
    gap: 20px;
}

.time-select {
    margin-top: 8px;
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    overflow: hidden;
    display: none;
}

.location-input input:focus+.location-suggestions {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

.location-icon {
    font-size: 20px;
    color: #666;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-weight: 500;
    color: #333;
}

.location-detail {
    font-size: 13px;
    color: #666;
}

.hero-image img {
    width: 500px;
    height: auto;
    max-width: 90%;
}

.container.main-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 20px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #ffffff);
    box-shadow: 0 6px 18px rgba(45, 52, 57, 0.07);
}

.hero {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 6px 6px 30px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container.main-card {
        padding: 20px 16px;
        margin: 10px;
        border-radius: 12px;
    }

    .hero {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .hero-left {
        width: 100%;
    }

    .hero-image {
        width: 100%;
        order: -1;
        /* Move image to top on mobile */
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    h1 {
        font-size: 32px;
        margin: 12px 0;
    }

    .lead {
        font-size: 18px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cards-row {
        flex-direction: column;
        margin-top: 24px;
        gap: 16px;
    }

    .cards {
        flex-direction: column;
        width: 100%;
    }

    .card_list {
        width: auto;
        min-width: 0;
    }

    .promo {
        width: auto;
    }
}

h1 {
    font-size: 48px;
    margin: 6px 0 8px;
    line-height: 1.02;
    font-weight: 800;
    color: #2d3a40;
}

.lead {
    font-size: 20px;
    color: #6b6f73;
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

/* Buttons used in hero/cards */
.btn {
    border-radius: 10px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn.outline {
    background: transparent;
    border: 2px solid #ff7a2d;
    color: #ff7a2d;
    font-family: 'Noto Serif Lao', serif;
    font-weight: 600;
}

.btn.primary {
    background: #ff7a2d;
    color: #000000;
    font-family: 'Noto Serif Lao', serif;
    font-weight: 600;
}

.btn.small {
    padding: 8px 12px;
    border-radius: 8px;
    background: #ff7a2d;
    color: #000000;
    font-weight: 600;
    font-family: 'Noto Serif Lao', serif; 
}

/* SVG / illustration sizing */
.scooter {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cards row */
.cards-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
    margin-top: 18px;
}

.cards {
    display: flex;
    gap: 20px;
    flex: 1;
}

.card_list {
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(45, 52, 57, 0.07);
    min-width: 220px;
}

.card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.card .muted {
    color: #6b6f73;
    margin: 0 0 12px;
    font-size: 14px;
}

.card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-row img {
    width: 90px;
    height: auto;
    display: block;
    border-radius: 20px;
}

.promo {
    width: 320px;
    background: linear-gradient(180deg, #ff8a3a, #ff5e00);
    color: #fff;
    padding: 26px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(45, 52, 57, 0.07);
}

.promo h3 {
    font-size: 28px;
    margin: 0 0 6px;
}

.promo-sub {
    font-size: 18px;
    margin: 0 0 16px;
}

.btn.promo-btn {
    background: #fff;
    color: #ff7a2d;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-family: 'Noto Serif Lao', serif;
}

.price{
    color: hsl(0, 100%, 50%);
    font-weight: 600;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .search-box {
        padding: 20px;
        margin: 15px;
    }

    .search-input-group,
    .datetime-group {
        flex-direction: column;
        gap: 15px;
    }

    .search-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.features {
    margin: 40px auto;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.997);
    color: #0a0a0a;
    padding: 15px 20px;
    border-radius: 10px;
}

.features span {
    margin: 5px 10px;
}

.features img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
}

.promo-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.promo-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.promo-header p {
    margin: 5px 0 0;
    color: #666;
}

.view-all {
    color: #007bff;
    text-decoration: none;
    font-size: 16px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Promo Car Card Styles */
.promo-carousel-container {
    padding: 10px 0 30px; /* Extra padding for elegant shadows */
    position: relative;
}

.carousel.promo-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px; /* Prevents shadow clipping */
    margin: -20px -10px; /* Counters padding */
    -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.carousel.promo-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.card.promo-car-card {
    background: #ffffff;
    min-width: 320px;
    max-width: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    scroll-snap-align: start;
    flex: 0 0 auto; 
    margin-right: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card.promo-car-card.inactive {
    opacity: 0.85;
    filter: grayscale(0.3);
}

.card.promo-car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.5);
    text-transform: uppercase;
}

.promo-badge.inactive-badge {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    box-shadow: 0 4px 10px rgba(107, 114, 128, 0.3);
}

.card.promo-car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.5s ease;
}

.card.promo-car-card:hover img {
    transform: scale(1.05);
}

.promo-car-image {
    overflow: hidden;
    height: 200px;
}

.promo-car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0;
    font-size: 13px;
}

.spec-item {
    background: linear-gradient(135deg, #f0f7ff, #e8f1ff);
    padding: 6px 12px;
    border-radius: 8px;
    color: #1e40af;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.promo-car-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    position: relative;
    z-index: 1; /* Cover the zoomed image edges */
}

.promo-car-info h3 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    color: #1a2226;
    font-family: 'Noto Serif Lao', serif;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.old-price {
    text-decoration: line-through;
    color: #a0aab2;
    font-size: 16px;
    font-weight: 500;
}

.new-price {
    font-size: 26px;
    font-weight: 800;
    color: #ff5e00;
}

.new-price small {
    font-size: 14px;
    font-weight: 600;
    color: #88929b;
}

.book-promo-btn {
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7a2d, #ff5e00);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    margin-top: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.book-promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.book-promo-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff5e00, #e65500);
    box-shadow: 0 8px 24px rgba(255, 94, 0, 0.4);
    transform: translateY(-3px);
}

.book-promo-btn:hover:not(:disabled)::before {
    left: 100%;
}

.book-promo-btn:disabled {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
    cursor: not-allowed;
    opacity: 0.7;
}

.carousel-btn.next,
.carousel-btn.prev {
    position: absolute;
    top: 40%;
    transform: translateY(-10%);
    background: rgb(255, 255, 255);
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    width: 50px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.carousel-btn.next:hover,
.carousel-btn.prev:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Loading spinner for carousel */
.carousel-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    width: 100%;
    color: #999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff7a2d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: #007bff;
}

.rent-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.rent-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rent-section p {
    color: #666;
    margin-bottom: 25px;
}

.rent-carousel-container {
    position: relative;
    overflow: hidden;
}

.rent-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.rent-card {
    min-width: 260px;
    max-width: 280px;
    margin: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    overflow: hidden;
    flex-shrink: 0;
}

.rent-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.rent-card h3 {
    font-size: 20px;
    margin: 10px 15px 5px;
}

.rent-card p {
    margin: 0 15px 10px;
    font-size: 14px;
    color: #555;
}

.rent-tags {
    margin: 0 15px 10px;
}

.rent-tag {
    display: inline-block;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 5px;
    color: #fff;
}

.rent-tag.orange {
    background: #ff6b35;
}

.rent-tag.blue {
    background: #007bff;
}

.rent-price {
    font-size: 14px;
    margin: 0 15px 15px;
    font-weight: 500;
}


/* ปุ่มเลื่อน */
.rent-prev,
.rent-next {
    position: absolute;
    top: 40%;
    transform: translateY(-10%);
    background: rgb(255, 255, 255);
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    width: 50px;
    z-index: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.rent-prev {
    left: 10px;
    width: 50px;
}

.rent-next {
    right: 10px;
    width: 50px;
}

/* จุด indicator */
.rent-dots {
    text-align: center;
    margin-top: 20px;
}

.rent-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.rent-dot.active {
    background: #007bff;
}

.booking-check {
    background: #eaf3fc;
    padding: 40px;
    text-align: center;
}

.booking-check h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
}

.check-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 620px;
    margin: 20px auto 0;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Soft floating shadow */
}

.check-form input {
    padding: 12px 16px;
    font-size: 15px;
    flex: 1;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    font-family: 'Noto Serif Lao', serif;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.check-form input:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.check-form button {
    padding: 12px 18px;
    font-size: 14px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    min-width: 132px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.check-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .check-form {
        flex-direction: column;
        padding: 15px;
        margin: 15px;
    }
    
    .check-form button {
        width: 100%;
    }
}

/* ...existing code... */

/* Replace existing review styles with site-consistent styles */
.review-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.review-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.1;
}

.review-section-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.review-section-link {
    color: #ff7a2d;
    text-decoration: none;
    font-weight: 700;
}

/* keep the inner review-container spacing consistent */
.review-section .review-container {
    margin-top: 12px;
}

.review-container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.review-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(45, 52, 57, 0.07);
    box-sizing: border-box;
}

.review-card-empty {
    justify-content: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.name {
    font-weight: 700;
    color: #222;
}

.rating {
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
}

.review-date {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 12px;
}

.read-more {
    color: #ff7a2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .review-card {
        flex: 1 1 100%;
        min-width: auto;
    }
}

.review-container {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.review-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(45, 52, 57, 0.07);
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.name {
    font-weight: 700;
    color: #222;
}

.rating {
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
}

.review-date {
    color: #777;
    font-size: 13px;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 12px;
}

.read-more {
    color: #ff7a2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .review-card {
        flex: 1 1 100%;
        min-width: auto;
    }

    .hero {
        padding: 60px 15px 30px;
        background-position: center;
    }

    .hero h1 {
        font-size: 22px;
        margin: 10px 0;
    }

    .hero p {
        font-size: 16px;
        margin: 0 0 20px;
    }

    .search-box {
        margin: 15px;
        padding: 15px;
        flex-direction: column;
    }

    .search-box input,
    .search-box button {
        flex: none;
        font-size: 14px;
        padding: 10px;
    }

    .search-box input {
        margin-bottom: 10px;
    }

    .features {
        margin: 20px 15px;
        padding: 10px;
    }

    .features span {
        padding: 8px 0;
        font-size: 14px;
    }

    .features img {
        width: 16px;
        height: 16px;
    }

    .promo-section {
        padding: 20px 15px;
    }

    .promo-header h2 {
        font-size: 20px;
    }

    .promo-header p {
        font-size: 14px;
    }

    .card {
        min-width: calc(100% - 30px);
        margin: 0 15px;
    }

    .rent-section {
        margin: 30px auto;
        padding: 0 15px;
    }

    .rent-section h2 {
        font-size: 20px;
    }

    .rent-card {
        min-width: calc(100% - 30px);
        max-width: none;
        margin: 0 15px;
    }

    .rent-card h3 {
        font-size: 18px;
    }

    .rent-card p {
        font-size: 13px;
    }

    .booking-check {
        padding: 20px 15px;
    }

    .booking-check h2 {
        font-size: 20px;
    }

    .check-form {
        flex-direction: column;
    }

    .check-form input,
    .check-form button {
        flex: none;
        font-size: 15px;
        padding: 10px 12px;
    }
}

.benefits-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.benefits-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefits-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-section {
        padding: 30px 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefits-section h2 {
        font-size: 24px;
    }

    .benefit-item img {
        width: 50px;
        height: 50px;
    }

    .benefit-item h3 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 12px;
    }

    .carousel {
        display: flex;
        gap: 12px;
        align-items: stretch;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .carousel .card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        border-radius: 8px;
        overflow: hidden;
    }

    .carousel .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .carousel-btn {
        display: none;
    }

    .dots {
        display: none;
    }

    /* rent carousel becomes horizontal scroller */
    .rent-carousel-container {
        padding: 0 8px;
    }

    .rent-carousel {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .rent-card {
        flex: 0 0 70%;
        max-width: 70%;
        scroll-snap-align: center;
        border-radius: 8px;
    }

    .rent-prev,
    .rent-next {
        display: none;
    }

    .rent-card img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }

    .rent-card h3 {
        font-size: 16px;
        margin: 8px 0 4px;
    }

    .rent-price {
        font-size: 13px;
    }
}

/* Small scrollbar styles for horizontal scrollers used above */
.carousel::-webkit-scrollbar,
.rent-carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-thumb,
.rent-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 3px;
}
