/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.booking-hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(26, 42, 68, 0.8), rgba(26, 42, 68, 0.8)), url('../assets/images/pic15.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.booking-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.booking-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Booking Form Section */
.booking-form {
    padding: 80px 20px;
    background: #f8f9fa;
}

.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #1a2a44;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #444;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.btn.primary {
    background: #d4af37;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    background: #b8972e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn.primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Cost Summary */
.cost-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.cost-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #1a2a44;
    margin-bottom: 20px;
}

.cost-summary p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.cost-summary p strong {
    color: #1a2a44;
    font-weight: 600;
}

.cost-summary p:last-child {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
}

/* Success Message */
.booking-success {
    padding: 80px 20px;
    text-align: center;
    background: #f8f9fa;
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
    background: #d4edda;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.success-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #155724;
    margin-bottom: 20px;
}

.success-message p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #155724;
    margin-bottom: 30px;
}

/* Messages */
.error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

/* Animations */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-reveal[data-delay] {
    transition-delay: var(--delay);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .booking-hero h1 {
        font-size: 40px;
    }
    .booking-hero p {
        font-size: 16px;
    }
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cost-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-hero {
        padding: 60px 20px;
    }
    .booking-form {
        padding: 60px 20px;
    }
    .form-container,
    .success-message {
        padding: 20px;
    }
    .btn.primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    .cost-summary {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .booking-hero h1 {
        font-size: 32px;
    }
    .booking-hero p {
        font-size: 14px;
    }
    .form-group label {
        font-size: 14px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }
    .success-message h2 {
        font-size: 28px;
    }
    .success-message p {
        font-size: 16px;
    }
}