.page-header {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banquet-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-bg);
    margin-top: 80px;
}

.header-content h1 {
    font-size: 3rem;
    color: var(--light-bg);
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Venues Section */
.venues-section {
    padding: 5rem 0;
}

.venues-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.venue-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.venue-card:last-child {
    margin-bottom: 0;
}

.venue-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.venue-image img:hover {
    transform: scale(1.02);
}

.venue-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.venue-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.venue-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.venue-details i {
    color: var(--primary-color);
}

.venue-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: #f9f9f9;
    padding: 5rem 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Inquiry Form */
.inquiry-section {
    padding: 5rem 0;
}

.inquiry-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.inquiry-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.inquiry-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .venue-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-image img {
        height: 300px;
    }

    .venue-card:nth-child(even) .venue-image {
        order: -1;
    }

    .inquiry-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .venue-details {
        gap: 1rem;
    }

    .venue-details span {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation Styles */
.error {
    border-color: #ff4444 !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}