/* ========================================
   BOOSTERWALA - Main Stylesheet
   (Header and footer styles are in component files)
======================================== */

/* CSS Variables - Vibrant Color Palette */
:root {
    --electric-blue: #0066ff;
    --vibrant-orange: #ff6b00;
    --neon-green: #00ff88;
    --royal-purple: #7c3aed;
    --hot-pink: #ff3366;
    
    --gradient-1: linear-gradient(135deg, #0066ff, #7c3aed);
    --gradient-2: linear-gradient(135deg, #ff6b00, #ff3366);
    --gradient-3: linear-gradient(135deg, #00ff88, #0066ff);
    --gradient-4: linear-gradient(135deg, #7c3aed, #ff3366);
    
    --white: #ffffff;
    --off-white: #f8faff;
    --light-bg: #f0f5ff;
    --dark-bg: #0a0f1e;
    --text-dark: #1a1f2e;
    --text-light: #6b7280;
    
    --shadow-sm: 0 4px 6px rgba(0,102,255,0.1);
    --shadow-md: 0 10px 25px rgba(124,58,237,0.15);
    --shadow-lg: 0 20px 40px rgba(255,107,0,0.2);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --container-width: 1280px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 20px rgba(0,102,255,0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124,58,237,0.4);
}

.cta-secondary {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 8px 20px rgba(255,107,0,0.3);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,51,102,0.4);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0f1e, #1a1f2e);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="1"/></svg>');
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 700px;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    background: var(--gradient-2);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    -webkit-text-fill-color: white;
}

.hero-title span {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* Trust Strip */
.trust-strip {
    background: white;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--light-bg);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.trust-item img {
    width: 30px;
    height: 30px;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text-dark);
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.product-image {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7ff, #e8ecff);
    padding: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--electric-blue);
    background: none;
    -webkit-text-fill-color: initial;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background: var(--light-bg);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--electric-blue);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-specs {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border-left: 4px solid var(--vibrant-orange);
}

.product-specs h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.product-specs ul {
    list-style: none;
}

.product-specs li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.product-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--light-bg);
    padding-top: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--vibrant-orange);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Networks Section */
.networks {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--off-white), white);
}

.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.network-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.network-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.network-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.network-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.network-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.network-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Section */
.about-teaser {
    padding: 5rem 0;
    background: white;
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.founder-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.founder-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.founder-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.founder-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-teaser-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-big {
    background: var(--gradient-1);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    color: white;
    transition: all 0.3s ease;
}

.stat-big:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-big .stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.stat-big span:last-child {
    color: white;
    font-size: 1rem;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: var(--gradient-4);
    color: white;
}

.why-us .section-title,
.why-us .section-subtitle {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.why-us-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.why-us-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.why-us-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.why-us-item h3 {
    color: white;
    -webkit-text-fill-color: white;
    margin-bottom: 1rem;
    background: none;
}

.why-us-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--off-white), white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-bg);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(0,102,255,0.1);
}

.form-response {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    display: none;
}

.form-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.submit-btn {
    width: 100%;
    padding: 1rem !important;
    position: relative;
}

.loading-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background: var(--gradient-1);
    color: white;
}

.info-item:hover img {
    filter: brightness(0) invert(1);
}

.info-item:hover a,
.info-item:hover h4,
.info-item:hover p {
    color: white;
}

.info-item img {
    width: 24px;
    height: 24px;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    background: none;
    -webkit-text-fill-color: var(--text-dark);
}

.info-item p,
.info-item a {
    color: var(--text-light);
    text-decoration: none;
}

.business-hours {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
    border-left: 4px solid var(--vibrant-orange);
}

.whatsapp-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn-large:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn-large img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.floating-whatsapp img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Page Banner */
.page-banner {
    background: var(--gradient-1);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    color: white;
    -webkit-text-fill-color: white;
    position: relative;
    z-index: 1;
    background: none;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Product Filters */
.product-filters {
    padding: 2rem 0;
    background: white;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Need Help Section */
.need-help {
    padding: 4rem 0;
    background: var(--gradient-2);
}

.help-box {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.help-box h2 {
    color: white;
    -webkit-text-fill-color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: none;
}

.help-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-teaser-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .founder-info {
        flex-direction: column;
    }
    
    .about-teaser-stats {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .help-ctas {
        flex-direction: column;
    }
    
    .help-ctas .cta-btn {
        width: 100%;
    }
}