/* assets/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent; /* Mobile click highlight remove */
}

body {
    background: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #00C853; /* Green Theme */
}

.logo img { height: 30px; margin-right: 8px; }

.btn {
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline { border: 2px solid #00C853; color: #00C853; margin-right: 5px; }
.btn-primary { background: #00C853; color: #fff; border: 2px solid #00C853; }
.btn-large { display: inline-block; padding: 12px 30px; font-size: 16px; margin-top: 15px; box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3); }
.btn-full { display: block; text-align: center; }

/* Hero Section */
.hero {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, #e8f5e9 0%, #ffffff 100%);
}

.hero h1 { font-size: 28px; line-height: 1.2; margin-bottom: 10px; }
.highlight { color: #00C853; }
.hero p { color: #666; font-size: 14px; margin-bottom: 20px; }
.hero-img img { max-width: 80%; margin-top: 20px; }

/* Slot Box */
.slots-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 10px 0;
    display: inline-block;
    width: 100%;
    max-width: 350px;
}
.progress-bg { background: #eee; height: 10px; border-radius: 5px; margin: 5px 0; overflow: hidden; }
.progress-fill { background: #ff3d00; height: 100%; border-radius: 5px; transition: width 0.5s; } /* Red for urgency */

/* Plans */
.plans { padding: 20px; }
.section-title { text-align: center; margin-bottom: 20px; font-size: 22px; }

.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.card-header h3 { font-size: 16px; color: #666; }
.card-header h1 { font-size: 32px; color: #333; margin: 5px 0 15px 0; }
.premium-card { border: 2px solid #ffd700; background: #fffff0; }
.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
}

.features { list-style: none; margin-bottom: 20px; }
.features li { display: flex; align-items: center; margin-bottom: 10px; font-size: 14px; color: #555; }
.features li img { width: 18px; margin-right: 10px; }
.btn-card { display: block; text-align: center; background: #eee; color: #333; padding: 10px; border-radius: 20px; }

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}
.socials img { width: 35px; margin: 0 10px; }
.payments img { height: 30px; margin: 10px 5px; }
footer p { font-size: 12px; color: #999; margin-top: 10px; }