/* ==========================================================
   MYMOBI SALES PAGE — MASTER STYLESHEET
   Organized to follow index.php structure
   ========================================================== */


/* ==========================================================
   1. RESET / BASE
   ========================================================== */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ccc;
    background-image: url("/images/bg-image.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}


/* ==========================================================
   2. TYPOGRAPHY
   ========================================================== */

h1 {
    font-size: 30px;
    text-align: center;
    color: #fff;
}

h3 {
    font-size: 25px;
    text-align: center;
    color: #FE9800;
}

h4,
h5 {
    font-size: 20px;
    font-weight: normal;
    color: #A4C449;
}

h7 {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

h15 {
    color: #A4C449;
}

p {
    margin: 10px 0;
}


/* ==========================================================
   3. GLOBAL UTILITIES
   ========================================================== */

.circle {
    border-radius: 50%;
    object-fit: cover;
    max-width: 80px;
    height: auto;
}

.responsive {
    max-width: 100%;
    height: auto;
}


/* ==========================================================
   4. MAIN PAGE CONTAINERS
   ========================================================== */

.divbox,
.divboxleft,
.divbox1 {
    max-width: 850px;
    margin: auto;
    font-size: 16px;
}

.divbox {
    text-align: center;
}

.divboxleft {
    text-align: left;
}

.divbox1 {
    background: #F8B836;
    color: red;
    text-align: center;
}


/* ==========================================================
   5. FLEX COLUMN LAYOUTS
   Used across many sections in index.php
   ========================================================== */

.col-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
}

.col {
    text-align: center;
}


/* ==========================================================
   6. BULLET LISTS / ICON LISTS
   ========================================================== */

ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

li {
    padding: 7px 0 10px 40px;
    margin: 0;
    color: white;
}

.col ul,
.divboxleft ul {
    text-align: left;
}

/* icon bullets */

.white li,
li.white {
    background: url('//mymobi.cards/images/32x32-white.png') no-repeat left top;
}

.orange {
    background: url('//mymobi.cards/images/32x32-orange.png') no-repeat left top;
}

.rightmark {
    background: url('//mymobi.cards/images/32x32-rightmark.png') no-repeat left top;
}

.one,
.two,
.three {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 48px 48px;
    padding-left: 70px;
}

.one { background-image: url('//mymobi.cards/images/one.png'); }
.two { background-image: url('//mymobi.cards/images/two.png'); }
.three { background-image: url('//mymobi.cards/images/three.png'); }


/* ==========================================================
   7. FEATURE / BENEFIT CARDS
   (Marketplace section)
   ========================================================== */

.features ul,
.benefits ul {
    margin-top: 10px;
}

.features li,
.benefits li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.features li::before,
.benefits li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: #A4C449;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================
   8. NAV BOOKMARK BUTTONS
   ========================================================== */

.bookmark {
    display: inline-block;
}

.btn-green  { background: #B1CD63; }
.btn-red    { background: #D95D55; }
.btn-blue   { background: #51677F; }
.btn-orange { background: #E88139; }
.btn-yellow { background: #F0C114; }

.btn-green,
.btn-red,
.btn-blue,
.btn-orange,
.btn-yellow {

    color: white;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 6px;
    border-bottom: 3px solid #808080;
    display: inline-block;
    font-size: 12px;
    margin: 5px;
    text-decoration: none;
}

.btn-green:hover,
.btn-red:hover,
.btn-blue:hover,
.btn-orange:hover,
.btn-yellow:hover {
    opacity: 0.7;
}


/* ==========================================================
   9. CTA BUTTON
   ========================================================== */

.button-style-4 {
    background: url("//mymobi.cards/images/button-orange.png") no-repeat center center;
    background-size: 100% 100%;
    width: 355px;
    display: inline-block;
    border: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button-style-4:hover {
    opacity: 0.85;
}

.button-style-4 .cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    max-width: 90%;
    pointer-events: none;
}


/* ==========================================================
   10. COLORED SECTION BARS
   ========================================================== */

.greenbar {
    background: #A4C449;
    color: white;
    text-align: center;
    font-size: 30px;
    padding: 15px;
}

.yellowbar {
    background: #F0C114;
    color: white;
    text-align: center;
    font-size: 30px;
    padding: 10px;
}


/* ==========================================================
   11. IPHONE DEMO SECTION
   ========================================================== */

.iphone-container {
    position: relative;
    width: 350px;
    margin: auto;
}

.iphone-frame {
    width: 300px;
    height: 550px;
}

.gif-overlay {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 250px;
    height: 480px;
    object-fit: cover;
    border-radius: 5px;
}


/* ==========================================================
   12. COUNTRY SELECT
   ========================================================== */

.descript {
    color: white;
    font-size: 16px;
    margin-top: 5px;
    text-align: center;
}

.coming-soon {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
}

.inactive-country {
    opacity: 0.45;
}

.inactive-country img {
    filter: grayscale(100%);
    cursor: not-allowed;
}


/* ==========================================================
   13. ICON STATISTICS
   ========================================================== */

.icon-label-container {
    display: inline-block;
    text-align: center;
    margin: 0 5px;
}

.upload-label {
    display: block;
    margin: 5px 0 20px;
    font-size: 24px;
}

.fas,
.fab {
    font-size: 40px;
    padding: 0 20px;
}


/* ==========================================================
   14. QR SECTION
   ========================================================== */

.qr-section img {
    max-width: 50%;
    height: auto;
}


/* ==========================================================
   15. TABLES
   ========================================================== */

#customers {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: black;
}

#customers th {
    background: red;
    color: white;
    padding: 5px;
}

#customers td {
    border: 1px solid #ddd;
    padding: 4px;
}

#customers tr:nth-child(even) {
    background-color: #4CAF50;
}

#customers tr:hover {
    background-color: #FF6347;
}


/* ==========================================================
   16. FOOTER
   ========================================================== */

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background: #f1f1f1;
    color: #000;
    text-align: center;
    padding: 12px 10px;
    z-index: 999;
}


/* ==========================================================
   17. ALERT / STATUS
   ========================================================== */

.blink {
    color: red;
    text-align: center;
    font-size: 24px;
    animation: blink 1s steps(5, start) infinite;
}

@keyframes blink {
    50% { visibility: hidden; }
}


/* ==========================================================
   18. RESPONSIVE
   ========================================================== */

@media (max-width: 767px) {

    h1 { font-size: 18px; }
    h3 { font-size: 20px; }
    h4,
    h5 { font-size: 16px; }

    .col-container {
        flex-direction: column;
        align-items: center;
    }

    .col {
        min-width: 100%;
    }

    .greenbar,
    .yellowbar {
        font-size: 20px;
    }

    .qr-section img {
        max-width: 80%;
    }
}

/* ==========================================================
   19. CLICKS MAGAZINE IMAGES
========================================================== */

.divbox1 .col-container {
    flex-wrap: wrap;
}

.magazine {
    width: 100%;
    max-width: 260px;
    height: auto;
}

/* ==========================================================
   20. PARAGRAPH TEXT
========================================================== */

p {
    margin: 10px 0;
    font-size: 18px;      /* slightly bigger */
    font-weight: 500;     /* slightly bold */
    line-height: 1.5;
}