/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f6f8;
}

/* Mobile App Container */
.app-container {
    max-width: 420px;
    margin: auto;
    min-height: 100vh;
    background: #ffffff;
    padding: 20px;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    color: #1f4bd8;
}

.help-btn {
    border: 1px solid #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero img {
    width: 200px;
}

/* Login Section */
.login-section h2 {
    margin-bottom: 5px;
}

.login-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.checkbox input {
    margin-right: 10px;
}

/* Button */
.btn {
    width: 100%;
    padding: 14px;
    background: #1f4bd8;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover {
    background: #163bb3;
}

/* VERIFY PAGE */

.verify-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
}

.verify-subtext {
    color: #555;
    margin-top: 5px;
    font-size: 14px;
}

.edit-icon {
    font-size: 14px;
    color: #1f4bd8;
    margin-left: 6px;
    cursor: pointer;
}

.otp-label {
    margin-top: 20px;
    font-weight: 600;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.otp-input {
    width: 48px;
    height: 55px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    background: #f8f8f8;
}

.otp-input:focus {
    border: 2px solid #1f4bd8;
    background: #ffffff;
    outline: none;
}

.timer {
    text-align: center;
    margin-top: 18px;
    color: #444;
    font-size: 16px;
}

.verify-btn {
    margin-top: 25px;
    width: 100%;
    padding: 16px;
    background: #1f63b6;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}

.verify-btn:active {
    transform: scale(0.98);
}

/* Demo OTP Box (Development Only) */
.demo-otp-box {
    margin-top: 15px;
    padding: 10px;
    background: #f1f5ff;
    border: 1px dashed #1f63b6;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #1f63b6;
}

/* DASHBOARD HEADER */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.dashboard-logo {
    font-weight: 700;
    font-size: 20px;
}

.dashboard-sub {
    font-size: 14px;
    color: #1f63b6;
}

/* HERO BANNER */
.hero-banner {
    background: #1f63b6;
    color: #fff;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.hero-banner h3 {
    margin: 0;
    font-size: 18px;
}

/* CARD */
.card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-sub {
    font-size: 14px;
    color: #666;
}

/* OFFER CARD */
.offer-card {
    background: #eef3ff;
}

/* BLUE BUTTON */
.primary-btn {
    background: #1f63b6;
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* REPORT CARD */
.report-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.report-row div {
    font-size: 14px;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-nav a {
    text-decoration: none;
    font-size: 12px;
    color: #777;
    text-align: center;
}

.bottom-nav a.active {
    color: #1f63b6;
    font-weight: 600;
}

/* Add bottom spacing so content doesn't hide */
.dashboard-content {
    padding-bottom: 80px;
}

.hero-bannerd {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Background Image */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* Overlay for text alignment */
.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Push text to right */
    padding: 20px;
}

/* Text */
.hero-text {
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-top: 50px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 11px;
    color: #777;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.nav-item.active {
    color: #1f63b6;
}

.nav-item.active i {
    color: #1f63b6;
}

/* ================= GROW PAGE ================= */

.grow-page {
    padding-bottom: 90px;
}

/* Recommended Card */

.recommended-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.recommended-card {
    position: relative;
    border-radius: 22px;
    transition: 0.3s ease;
    cursor: pointer;
}

.recommended-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e7f2e7;
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.grow-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.grow-stats span {
    font-size: 11px;
    color: #888;
    letter-spacing: 1px;
}

.grow-stats strong {
    display: block;
    margin-top: 4px;
    font-size: 16px;
}

.platform-icons i {
    font-size: 20px;
    margin-right: 6px;
}

.price-link {
    margin-top: 18px;
    color: #1f63b6;
    font-weight: 600;
}

/* Customize Section */
.customize-section {
    margin: 30px 0;
}

.customize-section h2 {
    font-size: 22px;
}

.customize-section p {
    font-size: 14px;
    color: #777;
    margin-top: 6px;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.custom-grid div {
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* List Cards */
.grow-list-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.grow-icon {
    background: #eef3ff;
    padding: 14px;
    border-radius: 50%;
    font-size: 22px;
}

.grow-info {
    flex: 1;
    margin-left: 15px;
}

.grow-info h4 {
    margin: 0;
    font-size: 16px;
}

.grow-info p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #777;
}

.grow-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.grow-right i {
    font-size: 18px;
}

/* CTA Section */
.cta-container {
    background: #eef3ff;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    overflow: hidden;
    height: 200px;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    margin: 18px;
    font-size: 18px;
}

.cta-text p {
    margin: 6px 18px 14px;
    font-size: 14px;
    color: #555;
}

.cta-girl {
    width: 130px;
    object-fit: contain;
}

/* BLUE BUTTON */
.ctaprimary-btn {
    background: #1f63b6;
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    border: none;
    margin-left: 18px;
    width: 65%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.bxl-whatsapp { color: #000000; }
.bxl-facebook-square { color: #1877f2; }
.bxl-instagram { color: #e1306c; }
.bxl-google { color: #db4437; }

/* WHY DIGITAL ADS CARD */
.why-ads-card {
    background: linear-gradient(135deg, #61acff, #d7e8ff);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.why-ads-text h3 {
    font-size: 20px;
    color: #1f63b6;
    margin-bottom: 8px;
}

.why-ads-text p {
    font-size: 15px;
    color: #333;
    max-width: 180px;
}

.why-ads-image img {
    width: 110px;
}

/* CHOOSE PACKAGE SECTION */
.choose-package-section {
    margin-bottom: 30px;
}

.choose-package-section h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.choose-package-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.choose-grid div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.choose-grid i {
    font-size: 18px;
    padding: 8px;
    background: #f1f5fb;
    border-radius: 10px;
    color: #1f63b6;
}

/* HEADER */
.grow-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px;
}

.back-btn{
    font-size:22px;
    color:#000;
}

.grow-title{
    font-weight:600;
    font-size: 20px;
    margin-bottom: 5px;
}

/* INFO CARD */
.faster-info-card{
    background:#eef3f8;
    padding:20px;
    border-radius:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.faster-info-card img{
    width:80px;
}

/* PLAN BOX */
.plan-container{
    display:flex;
    gap:10px;
    margin:15px 0;
}

.plan-box{
    flex:1;
    background:#f5f5f5;
    padding:20px;
    border-radius:18px;
    text-align:center;
    position:relative;
    cursor:pointer;
    border:2px solid transparent;
}

.plan-box.active{
    border:2px solid #1f63b6;
    background:#fff;
}

.plan-box strong{
    font-size:18px;
}

.recommended-badge-small{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);
    background:#1f63b6;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}

/* PLATFORM */
.platform-row{
    display:flex;
    gap:15px;
    align-items:center;
    margin-bottom:15px;
}

.platform-row i{
    font-size:20px;
}

/* ESTIMATED */
.estimated-card{
    background:#f5f5f5;
    padding:20px;
    border-radius:18px;
    margin-bottom:20px;
}

.result-stats{
    display:flex;
    justify-content:space-between;
    margin:15px 0;
}

.result-stats i{
    font-size:20px;
}

/* INCLUDE CAROUSEL CONTAINER */
.include-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 25px;
    padding-top: 15px;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar (clean look) */
.include-carousel::-webkit-scrollbar {
    display: none;
}

.include-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* CARD STYLE */
.include-card {
    width: 215px;
    height: 120px;
    flex: 0 0 auto;
    background: #d0fbff;
    padding: 20px;
    border-radius: 18px;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.include-card h4 {
    margin-bottom: 8px;
}

.include-card p {
    font-size: 14px;
    color: #666;
}

/* FAQ */
.faq-item{
    padding:15px 0;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
}

/* STICKY BUTTON */
.sticky-next{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#ffffff;
    padding:15px;
}

.sticky-next button{
    width:100%;
    background:#1f63b6;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:12px;
    font-size:16px;
}

.inner-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
}

.back-btn{
    font-size:22px;
    color:#111;
}

.info-card{
    background:#f8e4ec;
    padding:18px;
    border-radius:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.info-card img{
    width:90px;
}

.gender-group{
    display:flex;
    gap:25px;
    margin-bottom:20px;
    margin-top: 10px;
}

.gender-group label{
    display:flex;
    align-items:center;
    gap:8px;
}

.selected-locations{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:15px;
}

.location-chip{
    padding:8px 12px;
    border:1px solid #111;
    border-radius:25px;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
}

.location-chip i{
    cursor:pointer;
}

.input-row{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.input-row input{
    flex:1;
    padding:12px;
    border-radius:12px;
    border:1px solid #ddd;
}

.input-row button{
    padding:12px 15px;
    border-radius:12px;
    background:#1f63b6;
    color:#fff;
    border:none;
}

.textarea{
    width:100%;
    height:120px;
    border-radius:15px;
    border:1px solid #ddd;
    padding:12px;
    margin-bottom:20px;
    margin-top: 12px;
}

.advanced-toggle{
    font-weight:600;
    margin:20px 0;
}

.advanced-box{
    margin-top:20px;
}

.range-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0 10px;
    font-weight:600;
}

.dual-range{
    position:relative;
    height:40px;
}

.dual-range input[type=range]{
    position:absolute;
    width:100%;
    pointer-events:none;
    -webkit-appearance:none;
    background:none;
}

.dual-range input[type=range]::-webkit-slider-thumb{
    pointer-events:auto;
    -webkit-appearance:none;
    height:18px;
    width:18px;
    border-radius:50%;
    background:#1f63b6;
    cursor:pointer;
}

.dual-range input[type=range]::-webkit-slider-runnable-track{
    height:4px;
    background:#ddd;
    border-radius:4px;
}

.checkbox{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    font-weight:500;
}

.sticky-btn{
    position:fixed;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:420px;
    border-radius:0;
}

.required{
    font-weight:400;
    color:#777;
    font-size:14px;
}

.target-desc{
    font-size:14px;
    color:#666;
    margin:6px 0 18px 0;
    line-height:1.5;
}

.target-image-box{
    width:100%;
    height:160px;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
}

.target-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}