/* ===== Meeting Hero (matches portfolio hero) ===== */
.meeting-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 180px 20px 200px;
    background-color: #032550;
    background-image: linear-gradient(180deg, rgba(3,37,80,0.8) 0%, rgba(3,37,80,0.85) 100%),
                      url('../assets/images/Meeting-Hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}
.meeting-hero .container {
    position: relative;
    z-index: 1;
}
.meeting-hero-content {
    max-width: 750px;
    margin: 0 auto;
}
.meeting-hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 16px;
}
.meeting-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.meeting-hero-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.meeting-hero-wave-bottom svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ===== Booking Embed ===== */
.meeting-booking {
    padding: 60px 0 80px;
    background: var(--color-white);
}

.booking-embed-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.booking-embed-wrapper iframe {
    width: 100%;
    min-height: 700px;
    border: none;
}

@media (max-width: 768px) {
    .meeting-hero {
        padding: 140px 20px 160px;
    }

    .meeting-booking {
        padding: 40px 0 60px;
    }

    .booking-embed-wrapper iframe {
        min-height: 600px;
    }
}
