body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #333 url("../images/background.jpg") no-repeat center center
        fixed;
    background-size: cover;
    color: white;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.coming-soon-content {
    width: 100%;
    max-width: 1200px;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #00ff99;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h1,
.lead {
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.8);
}

.lead {
    max-width: 750px;
    margin: auto;
}

.fade-delay-1 {
    animation-delay: 0.5s;
}

.fade-delay-2 {
    animation-delay: 1s;
}

.fade-delay-3 {
    animation-delay: 1.5s;
}

/* =========================
Package Cards
========================= */

.package-card {
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

.package-card h5 {
    font-weight: 700;
    color: #00aa66;
    margin-bottom: 15px;
}

.package-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================
Gallery
========================= */

.gallery-section {
    margin-top: 70px;
    margin-bottom: 70px;
}

.gallery-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.15)
    );
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

.gallery-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* =========================
Contact Form
========================= */

.contact-form {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 22px;
    padding: 35px;
    margin-top: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #222;
}

.contact-form label {
    color: #222;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ccc;
}

.contact-form .form-control:focus {
    border-color: #00cc88;
    box-shadow: 0 0 0 0.2rem rgba(0, 204, 136, 0.2);
}

.btn-success {
    border-radius: 14px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #00cc88, #009966);
    border: none;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* =========================
WhatsApp Button
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    color: white;
    font-size: 34px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

.grecaptcha-badge {
    visibility: hidden;
}

/* =========================
Responsive
========================= */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form {
        padding: 20px;
    }

    .gallery-title {
        font-size: 1.7rem;
    }
}
