/* Page listing villas */
.booking-header-page {
    background: linear-gradient(135deg, #025920, #1CA658);
    text-align: center;
    padding: 100px 0 50px;
    color: white;
    margin-top: 85px;
}

.booking-header-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-section {
    padding: 3rem 0;
}

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

.booking-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.booking-img {
    position: relative;
    height: 240px;
}

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

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F1A921;
    color: #025920;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: bold;
}

.booking-info {
    padding: 1.5rem;
}

.booking-info h3 {
    color: #025920;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.location {
    color: #666;
    margin-bottom: 1rem;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.amenities span {
    background: #eef5f0;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.booking-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #025920;
}

.btn-book {
    background: #025920;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: #F1A921;
    color: #025920;
}
.top-bar {
    padding: 20px;
}

.btn-back {
    background: #F1A921;
    color: #025920;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-back:hover {
    background: #025920;
    color: white;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.modal-content input,
.modal-content textarea {
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
}
.btn-submit {
    background: linear-gradient(135deg, #025920, #1CA658);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(2, 89, 32, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    background: #F1A921;
    color: #025920;
    box-shadow: 0 10px 25px rgba(241, 169, 33, 0.3);
}

.btn-submit:active {
    transform: scale(0.98);
}

.form-message {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

#villaName {
    color: #F1A921;
    font-weight: bold;
    margin-bottom: 10px;
}