/* ===== BOOKING PAGE SPECIFIC STYLES ===== */
/* Minimal, professional, no glass – solid backgrounds, subtle shadows */

.booking-hero {
    height: 40vh;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px; /* navbar offset */
}

.booking-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.booking-hero .hero-content {
    position: relative;
    z-index: 2;
}

.booking-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.booking-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.booking-main {
    padding: 4rem 0;
    background: #f9f9f9;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #0A1AFF;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Left Column – OpnForm Embed */
.booking-form-embed {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.embed-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    min-height: 600px;
}

.embed-container iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

/* Right Column – WhatsApp Panel */
.booking-whatsapp {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.whatsapp-panel {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #0A1AFF;
    box-shadow: 0 0 0 3px rgba(10,26,255,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-display {
    background: #f0f4ff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid #0A1AFF;
}

.price-label {
    font-weight: 600;
    color: #333;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0A1AFF;
}

.message-preview {
    margin: 1.5rem 0;
}

.message-preview label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.message-preview textarea {
    background: #f9f9f9;
    border: 1px solid #eee;
    resize: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-whatsapp img {
    width: 24px;
    height: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .booking-form-embed, .booking-whatsapp {
        padding: 1.5rem;
    }
}