.eah-hero-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.eah-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 17, 33, 0.85); /* Deep luxury midnight blue overlay */
    z-index: 1;
}

.eah-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eah-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
}

.eah-heading {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 40px 0;
}

.eah-heading em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
}

.eah-divider {
    width: 80px;
    border-top: 1px solid #cca366;
    margin-bottom: 40px;
}

.eah-description {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    max-width: 780px;
    margin: 0;
    font-weight: 300;
}

/* Floating WhatsApp Button Style */
.eah-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eah-whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.eah-whatsapp-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.eah-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .eah-heading {
        font-size: 32px;
    }
    .eah-description {
        font-size: 16px;
    }
    .eah-hero-container {
        min-height: 60vh;
        padding: 60px 15px;
    }
}
