/* ✅ Full updated CSS for Joshua's Tech Transformations Digital site */

/* Flex layout to keep footer at bottom */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body > main { flex: 1; }
main { flex: 1; }

/* Root colors */
:root {
    --primary-green: #00a651;
    --lime-green: #a6ce39;
    --nice-lime-green: #7c9d15;
    --black: #000000;
    --grey: #666666;
    --muted: #f3f4f6;
}

* { box-sizing: border-box; }
body {
    font-family: Inter, Arial, Helvetica, sans-serif;
    margin: 0;
    background: var(--muted);
    color: var(--black);
    line-height: 1.5;
}
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }

/* Hide scrollbar but allow scrolling */
html {
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    width: 0px; /* Chrome, Safari, Edge */
    background: transparent; /* Optional: make scrollbar track transparent */
}

/* ✅ Boxes / cards */
.intro, .paymeth-card, .feature-card, .cta-box {
    background-color: #121212;
    border: 1px solid var(--primary-green);
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    color: #e0e0e0;
    max-width: 1000px;
}
.features { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; margin-top: 20px; }
.feature-card h3 { color: var(--primary-green); }
.paymeth-card h4 { color: var(--primary-green); }
.video-placeholder { height: 260px; border-radius: 10px; background: linear-gradient(180deg,#1116,#0000); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0.9; }
.testimonials { margin: 32px 0; }
.testimonials blockquote { background: #fff; padding: 16px; border-left: 4px solid var(--primary-green); border-radius: 6px; }
.service-list .service-item {padding: 18px; margin-bottom: 12px; border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.cta-box { background: linear-gradient(90deg,var(--nice-lime-green),var(--primary-green)); padding: 18px; border-radius: 8px; color: #000; margin: 18px 0; }
.contact-page .contact-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.iframe-placeholder { background: #fff; border: 2px dashed rgba(0,0,0,0.08); border-radius: 8px; padding: 24px; text-align: center; color: var(--grey); }

/* ✅ Footer */
.site-footer {
    background: var(--black);
    color: #cccccc;
    padding: 8px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    font-size: 0.85rem;
    text-align: right;
}