/* ================= HERO ================= */
.booking-hero {
    background: linear-gradient(rgba(10,25,47,0.85), rgba(10,25,47,0.85)),
                url('images/booking.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 90px 5%;
}

.booking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.booking-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}


/* ================= FILTERS ================= */
.booking-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.booking-filters a {
    padding: 8px 16px;
    background: #f1f1f1;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.booking-filters a:hover {
    background: #FF7900;
    color: #fff;
}


/* ================= GRID SECTION ================= */
.booking-grid-section {
    padding: 50px 5%;
    background: #f8f9fa;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}


/* ================= CARD ================= */
.booking-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.booking-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}


/* ================= CARD CONTENT ================= */
.booking-body {
    padding: 15px;
}

.booking-body h3 {
    font-size: 1.1rem;
    margin: 5px 0;
    color: #0a192f;
}

.booking-body p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}


/* ================= TAG ================= */
.tag {
    display: inline-block;
    background: #FF7900;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}


/* ================= PRICE ================= */
.price {
    color: #0056b3;
    font-weight: bold;
    margin-top: 5px;
}


/* ================= MAP LINK ================= */
.booking-body a {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #0056b3;
    text-decoration: none;
}

.booking-body a:hover {
    text-decoration: underline;
}


/* ================= BUTTON ================= */
.cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #FF7900;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e66e00;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    padding: 60px 5%;
    background: #ffffff;
    text-align: center;
}

.testimonial-subtitle {
    color: #666;
    margin-bottom: 30px;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* CARD */
.testimonial-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* TEXT */
.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #0a192f;
}

.testimonial-user span {
    font-size: 0.8rem;
    color: #777;
}