/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* BODY */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: white;
}

section {
    padding: 70px 20px;
}

/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: red;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1554284126-aa88f22d8b74') no-repeat center/cover;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    opacity: 0.9;
    max-width: 750px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTON */
.btn {
    background-color: red;
    padding: 14px 28px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.25s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #e60000;
    transform: translateY(-2px);
}

/* INDEX HEADING & BODY STYLES */
section h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

/* CONTENT */
.content {
    text-align: center;
}

.content p {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICES */
.services {
    padding: 60px 20px;
    text-align: center;
    background-color: #181818;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-box {
    background-color: #222;
    padding: 30px;
    width: 250px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-box:hover {
    transform: scale(1.08);
}

.service-box h3 {
    margin-bottom: 15px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 20px;
    background-color: #0d0d0d;
    text-align: center;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.testimonial-box {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    text-align: left;
}

.testimonial-box::before {
    content: "“";
    font-size: 80px;
    color: red;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-box p {
    font-size: 20px;
    line-height: 1.8;
    color: #f2f2f2;
    padding-left: 40px;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-box h4 {
    font-size: 16px;
    color: #ff4d4d;
    padding-left: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SERVICES PAGE */
.services-page {
    min-height: 60vh;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #000);
}

.services-page h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-page > p {
    font-size: 20px;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.package-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.package-box {
    position: relative;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px;
    width: 320px;
    border-radius: 20px;
    transition: 0.3s;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.package-box:hover {
    transform: translateY(-8px);
    border-color: red;
}

.package-box.popular {
    border-color: red;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.18);
}

.package-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.package-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.35);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.package-price {
    font-size: 30px;
    font-weight: 700;
    color: red;
    margin-bottom: 25px;
}

.package-box h4 {
    font-size: 16px;
    margin: 20px 0 12px;
    text-align: left;
    color: white;
}

.package-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 10px;
}

.package-list li {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.package-list.included li::before {
    content: "✓";
    color: #4dff88;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-list.not-included {
    margin-bottom: auto;
}

.package-list.not-included li::before {
    content: "✕";
    color: #ff4d4d;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.package-box .btn {
    margin-top: 25px;
}

.commitment-note {
    font-size: 13px;
    color: #aaa;
    margin: 15px 0 10px;
    font-style: italic;
}

.package-price {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.package-price span {
    font-size: 16px;
    color: #aaa;
    font-weight: 400;
}

.price-note {
    font-size: 13px;
    color: #ff4d4d;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CONTACT PAGE */
.contact-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #111, #000);
}

.contact-page h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-page p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #ddd;
}

.contact-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    background-color: red;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

/* MARKETPLACE PAGE */
.marketplace-page {
    min-height: 100vh;
    padding: 70px 20px 100px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #000);
}

.marketplace-page h1 {
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.marketplace-page > p {
    font-size: 20px;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-box {
    position: relative;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px;
    width: 300px;
    border-radius: 20px;
    transition: 0.3s;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-box:hover {
    transform: translateY(-8px);
    border-color: red;
}

.product-box.popular {
    border-color: red;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.18);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: red;
    color: white;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.product-box p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #ccc;
}

.product-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.35);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    margin-bottom: auto;
}

.product-features li {
    font-size: 15px;
    color: #ddd;
    margin-bottom: 10px;
    position: relative;
    padding-left: 22px;
}

.product-features li::before {
    content: "✓";
    color: red;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.app-access {
    font-size: 14px;
    color: #4dff88;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: red;
    margin-bottom: 20px;
    text-align: center;
}

.product-box .btn {
    margin-top: 10px;
}

/* FULL WIDTH CTA */
.marketplace-cta-full {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #000, #111);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marketplace-cta-full h2 {
    font-size: 34px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.marketplace-cta-full p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* SUCCESS PAGE */
.success-page {
    min-height: 100vh;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #000);
}

.success-icon {
    font-size: 70px;
    color: #4dff88;
    margin-bottom: 25px;
}

.success-page h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-page > p {
    font-size: 20px;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.success-steps {
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 35px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    text-align: left;
}

.success-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.success-steps ul {
    list-style: none;
    padding: 0;
}

.success-steps li {
    color: #ddd;
    margin-bottom: 14px;
    padding-left: 26px;
    position: relative;
    line-height: 1.5;
}

.success-steps li::before {
    content: "✓";
    color: #4dff88;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* SUCCESS PAGE NESTED LIST */
.success-steps ul ul {
    margin-top: 12px;
    margin-left: 20px;
}

.success-steps ul ul li {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 8px;
    padding-left: 18px;
}

.success-steps ul ul li::before {
    content: "•";
    color: #4dff88;
    left: 0;
    position: absolute;
}

/* FOOTER */
footer {
    background-color: #000;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-contact a,
.footer-contact a:visited {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: red;
}

/* FOOTER POLICY LINKS */
.footer-policies {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a,
.footer-policies a:visited {
    color: #888;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-policies a:hover {
    color: white;
}

/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.whatsapp i {
    font-size: 24px;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FIX ANCHOR POSITION WITH STICKY NAV */
#about,
#services {
    scroll-margin-top: 130px;
}

/* POLICY PAGES */
.policy-page {
    min-height: 80vh;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #111, #000);
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: 46px;
    margin-bottom: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-page h2 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: white;
    text-align: left;
}

.policy-page p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 18px;
}

.policy-page ul {
    margin: 15px 0 25px 20px;
    color: #ddd;
}

.policy-page li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FOOTER POLICY LINKS */
.footer-policies {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a,
.footer-policies a:visited {
    color: #888;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-policies a:hover {
    color: white;
}

/* POLICY MOBILE */
@media (max-width: 768px) {
    .policy-page {
        padding: 50px 18px;
    }

    .policy-page h1 {
        font-size: 30px;
        line-height: 1.2;
    }

    .policy-page h2 {
        font-size: 20px;
    }

    .policy-page p,
    .policy-page li {
        font-size: 14px;
    }

    .footer-policies {
        gap: 10px;
    }

    .footer-policies a {
        font-size: 11px;
    }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

    body {
        padding-bottom: 80px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .logo {
        height: 45px;
        margin-bottom: 10px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }

    nav ul li {
        margin: 5px 10px;
    }

    nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }

    .testimonials {
        padding: 70px 15px 90px;
    }

    .testimonials h2 {
        font-size: 26px;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }

    .testimonial-box {
        padding: 15px;
    }

    .testimonial-box::before {
        font-size: 30px;
        top: 5px;
        left: 15px;
    }

    .testimonial-box p {
        font-size: 12px;
        line-height: 1.4;
        padding-left: 15px;
    }

    .testimonial-box h4 {
        font-size: 12px;
        padding-left: 15px;
    }

    /* SERVICES PAGE MOBILE */
    .services-page {
        padding: 20px 15px 60px;
    }

    .services-page h1 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .services-page > p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .package-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .package-box {
        width: 90%;
        padding: 28px;
    }

    .package-box h3 {
        font-size: 22px;
    }

    .package-price {
        font-size: 26px;
    }

    .package-list li {
        font-size: 14px;
    }

    .package-box .btn {
        padding: 13px 24px;
        font-size: 14px;
    }

    /* MARKETPLACE MOBILE */
    .marketplace-page {
        padding: 35px 15px 70px;
    }

    .marketplace-page h1 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .marketplace-page > p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 10px;
    }

    .product-box {
        width: 90%;
        padding: 28px;
    }

    .marketplace-cta-full {
        padding: 60px 15px;
    }

    .marketplace-cta-full h2 {
        font-size: 24px;
    }

    .marketplace-cta-full p {
        font-size: 15px;
    }

    /* SUCCESS PAGE MOBILE */
    .success-page {
        padding: 60px 15px;
    }

    .success-icon {
        font-size: 55px;
    }

    .success-page h1 {
        font-size: 32px;
    }

    .success-page > p {
        font-size: 16px;
    }

    .success-steps {
        padding: 25px;
    }

    .success-steps h3 {
        font-size: 20px;
    }

    .success-steps li {
        font-size: 14px;
    }

    /* MOBILE WHATSAPP */
    .whatsapp {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp i {
        font-size: 28px;
    }

    #about,
    #services {
        scroll-margin-top: 120px;
    }

    /* FOOTER MOBILE */
    footer {
        display: block;
        visibility: visible;
        opacity: 1;
        padding: 30px 15px 130px;
        background-color: #000;
        clear: both;
    }

    footer p {
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-tagline {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-contact {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-contact a,
    .footer-contact a:visited {
        display: inline-block;
        color: white;
        font-size: 13px;
        text-decoration: none;
    }
}
