/*
Theme Name: BlinkPrint Future V5
Theme URI: https://blinkprint.in
Author: Gemini
Description: The definitive futuristic theme.
Version: 5.0
*/

/* --- 1. NUCLEAR RESET (Fixes the Text Blob Issue) --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; display: inline-block; } /* Fixes inline text links */
img { max-width: 100%; height: auto; display: block; }
body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background-color: #F8FAFC; 
    color: #1e293b; 
    line-height: 1.5;
    padding-bottom: 80px; /* Mobile Nav Space */
}

/* --- 2. HEADER & LOGO --- */
.bp-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); /* Futuristic Glass Effect */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
}

.bp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-logo { height: 45px; width: auto; } /* Mobile Size */

/* --- 3. HERO SECTION --- */
.bp-hero-wrapper {
    background: white;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.bp-hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #5D2E8E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.bp-hero-sub { font-size: 1rem; color: #64748B; margin-bottom: 30px; }

/* Modern Button */
.bp-btn-main {
    background: linear-gradient(135deg, #2EC4B6, #20a094);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(46, 196, 182, 0.3);
    transition: transform 0.2s;
    width: 100%;
    max-width: 320px;
    text-align: center;
}
.bp-btn-main:active { transform: scale(0.98); }

/* --- 4. SERVICES CARDS (The Fix) --- */
.bp-section-label {
    text-align: center;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin: 40px 0 20px 0;
}

/* Using Flexbox instead of Grid to prevent text blobs */
.bp-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
    justify-content: center;
}

.bp-card {
    background: white;
    flex: 1 1 45%; /* Mobile: 2 cards per row */
    min-width: 140px;
    max-width: 300px;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    display: flex; /* CRITICAL: Forces vertical stacking */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bp-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.bp-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 5px 0; color: #334155; }
.bp-card p { font-size: 0.75rem; color: #94a3b8; margin: 0; }

/* --- 5. MOBILE NAV --- */
.bp-mobile-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: white; border-top: 1px solid #eee;
    display: flex; justify-content: space-around; padding: 10px 0;
    z-index: 9999;
}
.bp-nav-link { text-align: center; font-size: 0.7rem; color: #94a3b8; flex: 1; }
.bp-nav-link span { display: block; font-size: 20px; margin-bottom: 4px; }
.bp-center-btn {
    width: 50px; height: 50px; background: #5D2E8E; color: white !important;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-top: -25px; border: 4px solid white;
    box-shadow: 0 8px 15px rgba(93, 46, 142, 0.4);
}

/* =========================================
   6. DESKTOP STYLES (Futuristic Overrides)
   ========================================= */
@media (min-width: 1024px) {
    /* Hide Mobile Stuff */
    .mobile-only { display: none !important; }
    .bp-mobile-nav { display: none !important; }
    body { padding-bottom: 0; }

    /* Header */
    .bp-header { padding: 20px 0; }
    .bp-logo { height: 55px; } 

    /* Desktop Menu */
    .desktop-menu { 
        display: flex !important; gap: 30px; 
        font-weight: 600; color: #475569;
    }
    .desktop-menu a:hover { color: #5D2E8E; transform: translateY(-2px); }

    /* Hero */
    .bp-hero-wrapper {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1100px;
        margin: 0 auto;
        padding: 80px 20px;
        background: transparent;
        border: none;
    }
    .bp-hero-text-side { max-width: 500px; }
    .bp-hero-title { font-size: 3.5rem; margin-bottom: 25px; }
    .bp-hero-sub { font-size: 1.2rem; margin-bottom: 40px; }
    .bp-btn-main { width: auto; padding: 16px 45px; font-size: 1.1rem; }

    /* Visual 3D Element */
    .bp-hero-visual {
        display: block !important;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(93, 46, 142, 0.1) 0%, rgba(255,255,255,0) 70%);
        border-radius: 50%;
        position: relative;
    }
    .bp-hero-visual img { width: 80%; margin: 10% auto; animation: float 6s ease-in-out infinite; }

    /* Services Cards (4 Cols) */
    .bp-card-container { max-width: 1100px; margin: 0 auto; gap: 30px; }
    .bp-card { 
        flex: 1 1 20%; 
        padding: 40px 20px; 
        transition: all 0.3s ease;
        border: 1px solid white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .bp-card:hover { 
        transform: translateY(-10px); 
        box-shadow: 0 20px 40px rgba(93, 46, 142, 0.15);
        border-bottom: 4px solid #2EC4B6;
    }
    .bp-icon { font-size: 40px; margin-bottom: 15px; color: #5D2E8E; }
    .bp-card h3 { font-size: 1.1rem; }
}

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }