/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE (MOBILE FIRST) */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: #000;
    color: #fff;
    text-align: center;
}

/* NAVBAR (HIDDEN ON MOBILE) */
.navbar {
    display: none;
    background: #000;
    border-bottom: 1px solid #111;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 15px;
}

.nav-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

/* HEADER */
.header {
    padding: 40px 20px;
}

.logo {
    width: 260px;
    max-width: 90%;
}

.tagline {
    margin-top: 12px;
    font-size: 16px;
    color: #D4AF37;
}

/* HERO */
.hero {
    padding: 50px 20px;
}

.hero h1 {
    font-size: 30px;
    color: #D4AF37;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 50px;
    text-decoration: none;
}

/* FEATURES */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.features div {
    background: #111;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 14px;
    color: #D4AF37;
}

/* FOOTER */
.footer {
    margin-top: 70px;
    padding: 20px;
    background: #111;
    font-size: 14px;
    color: #aaa;
}

/* ============================== */
/* TABLET & DESKTOP VIEW */
/* ============================== */
@media (min-width: 769px) {

    .navbar {
        display: block;
    }

    .header {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .whatsapp-btn {
        font-size: 20px;
        padding: 18px 40px;
    }
    /* ============================== */
/* WHY CHOOSE US */
/* ============================== */
.why-us {
    padding: 50px 20px;
}

.why-us h2 {
    color: #D4AF37;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.why-box {
    background: #111;
    padding: 20px;
    border-radius: 14px;
}

.why-box h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #ccc;
}

/* ============================== */
/* HOW IT WORKS */
/* ============================== */
.how-it-works {
    padding: 50px 20px;
    background: #050505;
}

.how-it-works h2 {
    color: #D4AF37;
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.step {
    background: #111;
    padding: 20px;
    border-radius: 14px;
}

.step span {
    display: inline-block;
    background: #25D366;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
}

/* ============================== */
/* CTA REPEAT */
/* ============================== */
.cta-repeat {
    padding: 50px 20px;
}

.cta-repeat h2 {
    margin-bottom: 20px;
    color: #D4AF37;
}

/* ============================== */
/* DISCLAIMER */
/* ============================== */
.disclaimer-section {
    background: #111;
    padding: 20px;
    font-size: 12px;
    color: #aaa;
}
/* ============================== */
/* STICKY WHATSAPP CTA */
/* ============================== */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}
/* ============================== */
/* SCROLL ANIMATIONS */
/* ============================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


}
.why-us {
    padding: 50px 20px;
}

.why-us h2 {
    color: #D4AF37;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.why-box {
    background: #111;
    padding: 20px;
    border-radius: 14px;
}

.why-box h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #ccc;
}

/* ============================== */
/* HOW IT WORKS */
/* ============================== */
.how-it-works {
    padding: 50px 20px;
    background: #050505;
}

.how-it-works h2 {
    color: #D4AF37;
    margin-bottom: 30px;
}.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}
/* ============================== */
/* NAVBAR */
/* ============================== */
.navbar {
    display: flex;
    justify-content:space-between ;
    align-items: center;
    /* padding: 14px 20px; */
    padding-right: 20px;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 999;
    margin: auto;
}
.nav-links li a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #fff;
    
}
.nav-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;}
.logo {
    font-size: 110px;
    font-weight: bold;
    color: #D4AF37;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #f3f7c4;
    font-size: 20px;
}

/* ============================== */
/* HAMBURGER */
/* ============================== */
.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ============================== */
/* MOBILE MENU */
/* ============================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: #000;
    padding: 65px;
    z-index: 998;
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    text-decoration:sienna;
    color: #fff;
    border-bottom: 1px solid #222;
    font-size: 16px;
}

/* ============================== */
/* RESPONSIVE */
/* ============================== */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
    .nav-right{
        font-weight: bold;
    }
}
/* ============================== */
/* VISIBILITY FIX */
/* ============================== */

/* Hide desktop-only items on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}
/* ============================== */
/* PHOTO GALLERY SECTION */
/* ============================== */
.photo-gallery {
    padding: 50px 20px;
    background: #050505;
    text-align: center;
}

.photo-gallery h2 {
    color: #D4AF37;
    margin-bottom: 30px;
    font-size: 26px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    background: #111;
}

/* ============================== */
/* TABLET */
/* ============================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
        height: 270px;
    }
}

/* ============================== */
/* MOBILE */
/* ============================== */
@media (max-width: 768px) {
    .photo-gallery {
        padding: 40px 16px;
    }

    .photo-gallery h2 {
        font-size: 22px;
    }

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

    .gallery-grid img {
        height: 360px;
    }
}
/* ============================== */
/* HOW TO GET STARTED */
/* ============================== */
.get-started {
    padding: 60px 20px;
    background: #050505;
    max-width: 1200px;
    margin: 0 auto;
}

.get-started h2 {
    text-align: center;
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 40px;
}

/* GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.step-card {
    background: #111;
    padding: 24px 20px;
    border-radius: 16px;
    position: relative;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number {
    display: inline-block;
    background: #25D366;
    color: #fff;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    margin-bottom: 14px;
}

.step-card h3 {
    color: #D4AF37;
    font-size: 17px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* INFO + CTA */
.get-started-info {
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.get-started-info p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================== */
/* TABLET */
/* ============================== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================== */
/* MOBILE */
/* ============================== */
@media (max-width: 768px) {
    .get-started {
        padding: 45px 16px;
    }

    .get-started h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

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

    .step-card {
        padding: 20px 18px;
         /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    }

    .step-card h3 {
        font-size: 16px;
    }

    .step-card p {
        font-size: 13px;
    }

    .get-started-info p {
        font-size: 13px;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 320px;
        font-size: 17px;
    }
}
/* ============================== */
/* CARD HOVER ANIMATIONS */
/* ============================== */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
    }

    .step-card:hover .step-number {
        transform: scale(1.1);
        background: #1ebe5d;
    }
}

/* Step number animation */
.step-number {
    transition: transform 0.3s ease, background 0.3s ease;
}
@media (hover: hover) {
    .step-card:hover {
        border: 1px solid rgba(212, 175, 55, 0.4);
    }
}
/* ============================== */
/* CARD ANIMATIONS (DESKTOP + MOBILE) */
/* ============================== */
.step-card {
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border 0.25s ease;
}

/* Desktop Hover */
@media (hover: hover) {
    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
        border: 1px solid rgba(212, 175, 55, 0.4);
    }

    .step-card:hover .step-number {
        transform: scale(1.1);
        background: #1ebe5d;
    }
}

/* Mobile Tap */
.step-card:active,
.step-card:focus-visible {
    transform: scale(0.97);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Step number animation */
.step-number {
    transition: transform 0.25s ease, background 0.25s ease;
}

.step-card:active .step-number,
.step-card:focus-visible .step-number {
    transform: scale(1.1);
    background: #1ebe5d;
}
/* ============================== */
/* UNIVERSAL CARD ANIMATIONS */
/* Desktop Hover + Mobile Tap */
/* ============================== */

.animate-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border 0.3s ease,
        background 0.3s ease;
    will-change: transform;
}

/* Desktop hover */
@media (hover: hover) {
    .animate-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
        border: 1px solid rgba(212, 175, 55, 0.4);
        background: rgba(255, 255, 255, 0.02);
    }
}

/* Mobile tap */
.animate-card:active,
.animate-card:focus-visible {
    transform: scale(0.97);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Headings subtle animation */
.animate-card h3 {
    transition: color 0.3s ease;
}

@media (hover: hover) {
    .animate-card:hover h3 {
        color: #d4af37;
    }
}

/* Mobile tap heading */
.animate-card:active h3,
.animate-card:focus-visible h3 {
    color: #d4af37;
}
/* ============================== */
/* PAYMENT SECTION - MATCHED UI */
/* ============================== */

.payment-section {
    padding: 70px 20px;
    background: #0b0b0b;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 12px;
    color: #D4AF37;
}

.section-subtitle {
    text-align: center;
    color: #bfbfbf;
    max-width: 720px;
    margin: 0 auto 48px;
}

/* Grid layout */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* Cards */
.payment-card {
    background: #121212;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Card glow effect */
.payment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top left,
        rgba(212, 175, 55, 0.12),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover + Tap Animations */
.animate-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border 0.35s ease;
}

/* Desktop hover */
@media (hover: hover) {
    .animate-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
        border: 1px solid rgba(212, 175, 55, 0.45);
    }

    .animate-card:hover::before {
        opacity: 1;
    }

    .animate-card:hover h3 {
        color: #d4af37;
    }
}

/* Mobile tap */
.animate-card:active,
.animate-card:focus-visible {
    transform: scale(0.96);
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.28);
    border: 1px solid rgba(212, 175, 55, 0.45);
}

.animate-card:active::before,
.animate-card:focus-visible::before {
    opacity: 1;
}

.animate-card:active h3,
.animate-card:focus-visible h3 {
    color: #d4af37;
}

/* Text */
.payment-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.payment-card p,
.payment-card li {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.6;
}

.payment-card ul {
    padding-left: 18px;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .section-title {
        font-size: 26px;
    }

    .payment-card {
        padding: 22px;
    }
}
/* Remove unwanted underline & purple link color */
a {
    text-decoration: none;
    color: inherit;
}
/* ============================== */
/* WITHDRAW SECTION */
/* ============================== */

.withdraw-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

.withdraw-info {
    max-width: 800px;
    margin: 50px auto 0;
}

.withdraw-info p {
    color: #bfbfbf;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* WhatsApp button already exists – reused */
/* ============================== */
/* LEGAL SECTION */
/* ============================== */

.legal-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}
/* ============================== */
/* FAQ SECTION */
/* ============================== */

.faq-section {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}




