/* ===== HERO SECTION (Luxury Resort Theme) ===== */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            to bottom,
            rgba(15, 118, 110, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url('../images/hero.jpg') center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;
    position: relative;
}

/* Content wrapper */
.hero-content {
    max-width: 900px;
    padding: 2rem;
}

/* Heading */
.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Subtitle */
.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: #f8fafc;
}

/* Button rows */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* Primary button */
.btn-enquiry {
    background: #1abc9c;
    color: #ffffff;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-enquiry:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

/* Contact (Glass button) */
.btn-contact {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ================= POPUP FORM ================= */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 2rem;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box h3 {
    text-align: center;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
}

.popup-submit {
    width: 100%;
    padding: 0.9rem;
    background: #0f766e;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.popup-submit:hover {
    background: #0b5f59;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.6rem;
    border: none;
    background: none;
    cursor: pointer;
}
