
.hero-section {
    position: relative;
    height: 100vh;
    background: url('/images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.villa-card img {
    height: 260px;
    object-fit: cover;
    transition: transform .4s ease;
}

.villa-card:hover img

section.container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.villa-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.villa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.price-preview {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #f8f8f8;
    border: 1px solid #e3e3e3;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-preview strong {
    color: #333;
    font-weight: 600;
}

#calculated-price {
    font-weight: 700;
    color: #0a7c5b; /* vert premium */
    font-size: 1.25rem;
}

.price-note {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
}

.price-note {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
}

.booking-summary {
    margin-top: 25px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.booking-summary h4 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 1rem;
}

.summary-total {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0a7c5b;
}