/* assets/css/style.css - Modern Indian Marketplace Styles (Mobile First) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(0px);
}

.sticky-nav {
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b00, #ff9040);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}
.logo-badge {
    font-size: 0.7rem;
    background: #ff6b0011;
    color: #ff6b00;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 6px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: 0.2s;
}
.nav-links a:hover { color: #ff6b00; }
.nav-join-btn {
    background: #ff6b00;
    color: white !important;
    padding: 8px 20px;
    border-radius: 40px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 60px 0 70px;
    background: white;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-badge {
    background: #ff6b0010;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 40px;
    color: #ff6b00;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.orange-gradient {
    background: linear-gradient(120deg, #ff6b00, #ff914d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.btn-primary {
    background: #ff6b00;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 20px rgba(255,107,0,0.2);
}
.btn-primary:hover { background: #e05f00; transform: scale(0.98);}
.btn-outline {
    background: transparent;
    border: 2px solid #ff6b00;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: #ff6b00;
    text-decoration: none;
    transition: 0.2s;
}
.btn-outline:hover { background: #ff6b0010; }
.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.9rem;
}

/* Floating Cards */
.floating-cards-carousel {
    background: #f9f9fc;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 360px;
}
.card-stack {
    animation: verticalScroll 18s linear infinite;
}
.floating-card {
    background: white;
    border-radius: 60px;
    padding: 16px 20px;
    margin: 14px 0;
    box-shadow: 0 6px 14px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.05);
    font-weight: 500;
    border-left: 5px solid #ff6b00;
    font-size: 1rem;
}
@keyframes verticalScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Category ticker */
.category-strip {
    background: #f7f7f7;
    padding: 20px 0;
    overflow: hidden;
}
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}
.ticker-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scrollTicker 30s linear infinite;
}
.ticker-track span {
    background: white;
    margin: 0 10px;
    padding: 10px 26px;
    border-radius: 100px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    font-size: 0.95rem;
}
@keyframes scrollTicker {
    0% { transform: translateX(0);}
    100% { transform: translateX(-50%);}
}

/* Why us */
.why-us, .how-it-works {
    padding: 70px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-tag {
    background: #ffefe3;
    color: #ff6b00;
    padding: 5px 15px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 600;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.feature-card {
    background: white;
    border-radius: 32px;
    padding: 32px 24px;
    transition: 0.2s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.05);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);}
.feature-icon i {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 20px;
}

/* How it works steps */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}
.step-card {
    background: white;
    border-radius: 40px;
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
}
.step-number {
    background: #ff6b00;
    width: 48px;
    height: 48px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}
.step-icon i { font-size: 2.2rem; color: #ff6b00; margin-bottom: 15px;}

/* Waitlist premium card */
.waitlist {
    background: #f7f7f7;
    padding: 70px 0;
}
.waitlist-card {
    background: white;
    border-radius: 56px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2);
}
.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 60px;
    padding: 4px 20px;
    gap: 12px;
}
.input-group i {
    color: #ff6b00;
}
.input-group input, .input-group select {
    border: none;
    background: transparent;
    padding: 16px 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
}
.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #111;
    color: #ddd;
    padding: 50px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px,1fr));
    gap: 40px;
}
.footer-col a { display: block; color: #aaa; text-decoration: none; margin: 10px 0; transition: 0.2s;}
.footer-col a:hover { color: #ff6b00; }
.social-icons a { font-size: 1.5rem; margin-right: 15px; display: inline-block; color: white;}
.footer-bottom { text-align: center; margin-top: 40px; border-top: 1px solid #333; padding-top: 20px;}

/* Sticky bottom CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: white;
    padding: 14px 20px;
    display: none;
    z-index: 1100;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.sticky-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-btn {
    background: #ff6b00;
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1050;
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.3rem; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .sticky-bottom-cta { display: block; }
    .form-row { flex-direction: column; }
    .waitlist-card { padding: 30px 20px; }
    .step-card { min-width: 100%; }
}