* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f3efe4;
}

/* ================= HEADER ================= */

.header {
    background: linear-gradient(90deg, #8b0000, #c40000);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    display: block;
    font-size: 13px;
    font-weight: normal;
    opacity: 0.8;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    position: relative;
}

.nav a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: gold;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* ================= HERO ================= */

.hero img {
    width: 100%;
    display: block;
}

/* ================= LANGUAGE ================= */

.language-bar {
    text-align: center;
    margin: 30px 0;
}

.language-bar button {
    border: 2px solid #2e8b57;
    background: white;
    color: #2e8b57;
    padding: 10px 22px;
    margin: 8px;
    border-radius: 8px;
    font-weight: bold;
}

/* ================= MAIN ================= */

.container {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.title {
    font-size: 36px;
    margin: 30px 0;
}

.live {
    background: red;
    color: white;
    padding: 18px 80px;
    border-radius: 60px;
    display: inline-block;
    font-size: 28px;
    margin: 25px 0;
}

.congrats {
    color: #a30000;
    font-size: 32px;
    margin-bottom: 30px;
}

.result-section {
    width: 380px;
    margin: 0 auto 60px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    padding-bottom: 20px;

}

.result-header {
    background: linear-gradient(90deg, #c40000, #ff0000);
    color: white;
    padding: 18px;
    font-size: 18px;
    text-align: center;
    font-weight: bold;

}

.result-section input {
    width: 85%;
    padding: 14px;
    margin: 20px auto 15px;
    display: block;
    border: 2px solid #c40000;
    border-radius: 8px;
    font-size: 16px;

}

.check-btn {
    width: 85%;
    margin: 10px auto 25px;
    display: block;
    padding: 14px;
    background: linear-gradient(90deg,#ff0000,#c40000);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.check-btn:hover {
    transform: scale(1.05);

}

/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(90deg, #8b0000, #c40000);
    color: white;
    padding-top: 60px;
}

.footer-top {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-box {
    width: 30%;
}

.footer-box h3 {
    margin-bottom: 15px;
    border-bottom: 2px solid gold;
    padding-bottom: 8px;
}

.footer-box a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-box a:hover {
    color: gold;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #700000;
}

/* ================= FLOAT ================= */

.float-call,
.float-whatsapp {
    position: fixed;
    right: 20px;
    color: white;
    padding: 15px;
    border-radius: 50%;
}

.float-call {
    bottom: 120px;
    background: #007bff;
}

.float-whatsapp {
    bottom: 50px;
    background: #25D366;
}

/* ================= MOBILE ================= */

@media(max-width: 768px) {

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #b30000;
        width: 200px;
        display: none;
        flex-direction: column;
        padding: 15px;
    }

    .nav a {
        margin: 10px 0;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .result-section {
        width: 90%;
    }

}
/* ================= MEGA OFFER SECTION ================= */

.offer-section {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.offer-section h2 {
    color: #c40000;
    margin-bottom: 25px;
    font-size: 26px;
}

.offer-box {
    max-width: 650px;
    margin: auto;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.offer-box strong {
    color: #c40000;
}

.offer-box hr {
    margin: 20px 0;
}

.highlight-offer {
    margin-top: 20px;
    background: #c40000;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
}

/* ================= COMPACT RESULT BOX ================= */

.result-section {
    width: 320px;           /* smaller */
    margin: 30px auto 60px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding-bottom: 20px;
}

.result-header {
    background: linear-gradient(90deg,#c40000,#ff0000);
    color: white;
    padding: 14px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.result-section input {
    width: 80%;
    padding: 12px;
    margin: 20px auto 12px;
    display: block;
    border: 2px solid #c40000;
    border-radius: 6px;
    font-size: 14px;
}

.check-btn {
    width: 80%;
    margin: 10px auto 20px;
    display: block;
    padding: 12px;
    background: linear-gradient(90deg,#ff0000,#c40000);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.check-btn:hover {
    transform: scale(1.05);

}
/* ================= FINAL CENTERED PREMIUM BUTTONS ================= */

.home-action-buttons {
    width: 100%;
    text-align: center;
    margin: 30px 0 60px;
}

.home-action-buttons a {
    display: inline-block;
    min-width: 180px;
    margin: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    color: #fff !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* RED CALL */
.home-call-btn {
    background: linear-gradient(90deg,#8b0000,#ff0000) !important;
}

.home-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255,0,0,0.4);
}

/* GREEN WHATSAPP */
.home-whatsapp-btn {
    background: linear-gradient(90deg,#1ebe5d,#25D366) !important;
}

.home-whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}
