/* ==========================================================
   MYMOBI SALES PAGE — CLEAN MASTER CSS
   ========================================================== */

/* ---------- RESET ---------- */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

/* ---------- BODY ---------- */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ccc url("//mymobi.cards/images/bg-image.jpg") no-repeat center top;
    background-size: cover;
    color: white;
}

/* ---------- 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;
    text-align: left;
}

.circle {
    border-radius: 50%;
    object-fit: cover;
    max-width: 80px;
    height: auto;
}

/* ---------- CONTAINERS ---------- */
.divbox,
.divboxleft,
.divbox1 {
    max-width: 850px;
    margin: auto;
    font-size: 16px;
}

.divbox {
    text-align: center;
}

.divboxleft {
    text-align: left;
}

.divbox1 {
    background-color: #F8B836;
    color: red;
    text-align: center;
}


/* ---------- COUNTRY FLAGS LAYOUT ---------- */
.col-container {
    display: flex;
    flex-wrap: nowrap;          /* one line on desktop */
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

/* Each country */
.col {
    text-align: center;
}

/* Mobile: stack flags */
@media (max-width: 767px) {
    .col-container {
        flex-direction: column; /* stack */
        align-items: center;
    }
}

/* ---------- LISTS ---------- */
ul {
    padding-left: 0;
    margin: 0;
}

.col ul,
.divboxleft ul {
    text-align: left;
}

li {
    list-style: none;
    padding: 7px 0 10px 40px;
    color: white;
    margin: 0;
}

.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 {
    background: url('//mymobi.cards/images/one.png') no-repeat left top;
    background-size: 48px 48px;   /* 👈 control icon size */
    padding-left: 70px;           /* match spacing */
}

.two {
    background: url('//mymobi.cards/images/two.png') no-repeat left top;
    background-size: 48px 48px;   /* 👈 control icon size */
    padding-left: 70px;           /* match spacing */
}

.three {
    background: url('//mymobi.cards/images/three.png') no-repeat left top;
    background-size: 48px 48px;   /* 👈 control icon size */
    padding-left: 70px;           /* match spacing */
}

/* ==========================================================
   FEATURES & BENEFITS LIST STYLING
   ========================================================== */

.features ul,
.benefits ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    text-align: left;
}

.features li,
.benefits li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: white;
}

/* Star-in-circle icon */
.features li::before,
.benefits li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: #A4C449; /* MyMobi green */
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- 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;
}

/* ---------- CTA IMAGE BUTTON (OVERLAY VERSION) ---------- */
.button-style-4 {
    background: url("//mymobi.cards/images/button-orange.png") no-repeat center center;
    background-size: 100% 100%;
    width: 355px;
    position: relative;
    display: inline-block;
    border: 0;
    cursor: pointer;
    overflow: hidden;
}

/* Text image OVERLAY */
.button-style-4 .cta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%); /* 👈 MOVE UP */
    max-width: 90%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* Hover polish */
.button-style-4:hover {
    opacity: 0.85;
}

/* ---------- 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;
}

/* ---------- ICON COUNTERS ---------- */
.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;
}

/* ---------- IPHONE DEMO ---------- */
.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;
}

/* ---------- 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;
}

/* ---------- QR ---------- */
.qr-section img {
    max-width: 50%;
    height: auto;
}

/* ---------- TABLE ---------- */
#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;
}

/* ---------- FOOTER ---------- */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    background-color: #f1f1f1;
    color: #000;
    text-align: center;
    padding: 12px 10px;
    z-index: 999;
}

/* ---------- ALERT ---------- */
.blink {
    color: red;
    text-align: center;
    font-size: 24px;
    animation: blink 1s steps(5, start) infinite;
}

@keyframes blink {
    50% { visibility: hidden; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767px) {

    h1 { font-size: 18px; }
    h3 { font-size: 20px; }
    h4, h5 { font-size: 16px; }

    .col {
        min-width: 100%;
    }

    .greenbar,
    .yellowbar {
        font-size: 20px;
    }

    .qr-section img {
        max-width: 80%;
    }
}
