body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0a0a0a;
    color: #f2f2f2;
}

/* HERO */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    color: #d4af37;
    font-size: 42px;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
}

/* BUTTON */
.cta {
    margin-top: 25px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 80px 20px;
}

.section.dark {
    background: #111;
}

.section h2 {
    color: #d4af37;
}

/* ABOUT */
.about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
}

/* VIP BOX */
.vip-box {
    max-width: 850px;
    margin: 100px auto;
    padding: 60px;
    background: linear-gradient(180deg, #111, #0b0b0b);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.vip-box h2 {
    color: #d4af37;
}

.vip-box p {
    font-size: 17px;
    line-height: 1.7;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    font-size: 13px;
    color: #888;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 28px;
}
/* CONTACT SECTION FIX */
.contact {
    background: #000;
    padding: 80px 20px;
}

.contact h2,
.contact p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: center;
}


