/* Simple and Fast CSS for LAB Site */
:root {
    --primary: #1e293b;
    --secondary: #64748b;
    --accent: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #0f172a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #10b981 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--primary);
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Banner */
.hero-banner {
    width: 100vw;
    height: 60vh;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 60px 20px;
    text-align: center;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    color: white;
    max-width: 800px;
    width: 100%;
    z-index: 3;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* White Bubble for Content */
.white-bubble {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

/* Force all text in white bubble to be dark */
.white-bubble * {
    color: #1e293b !important;
}

.white-bubble h2 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.white-bubble h3 {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.white-bubble p {
    color: #1e293b !important;
    font-weight: 500 !important;
}

.white-bubble li {
    color: #1e293b !important;
    font-weight: 500 !important;
}

.white-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 100%);
    z-index: -1;
}

.hero-banner h1 {
    font-size: 2.8em;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    background: linear-gradient(135deg, rgba(59,130,246,0.9) 0%, rgba(37,99,235,0.9) 50%, rgba(29,78,216,0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 25px 35px;
    border: 2px solid rgba(255,255,255,0.15);
    margin: 0 auto 30px auto;
    max-width: 90%;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(59,130,246,0.4), 0 8px 20px rgba(37,99,235,0.3);
    text-align: center;
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}

.hero-banner h1:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.5), 0 10px 25px rgba(37,99,235,0.4);
}

.hero-banner p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: white;
    background: linear-gradient(135deg, rgba(16,185,129,0.9) 0%, rgba(5,150,105,0.9) 50%, rgba(4,120,87,0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 30px;
    border: 2px solid rgba(255,255,255,0.15);
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: inline-block;
    box-shadow: 0 12px 30px rgba(16,185,129,0.4), 0 6px 15px rgba(5,150,105,0.3);
    text-align: center;
    z-index: 3;
    position: relative;
    transition: all 0.3s ease;
}

.hero-banner p:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16,185,129,0.5), 0 8px 20px rgba(5,150,105,0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 5px;
    color: white;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* Header */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.header h2 {
    font-size: 2.5em;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.2em;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav-item {
    background: rgba(255,255,255,0.9);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-item:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,165,233,0.4);
}

/* Content Sections */
.content-section {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 2em;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.content-section p {
    font-size: 1.1em;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(15,23,42,0.98) 0%, rgba(30,41,59,0.98) 50%, rgba(51,65,85,0.98) 100%);
    backdrop-filter: blur(25px);
    color: white;
    text-align: center;
    padding: 35px;
    border-radius: 25px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 8px 25px rgba(0,0,0,0.3);
}

.footer p {
    color: white;
    margin: 0;
    font-weight: 600;
    font-size: 1.1em;
}

.footer a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 700;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Android Ads Page Specific Styles */
.warning-box {
    background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(220,38,38,0.1) 100%);
    border: 2px solid rgba(239,68,68,0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    backdrop-filter: blur(10px);
}

.warning-box h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.warning-box ul {
    list-style: none;
    padding: 0;
}

.warning-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(239,68,68,0.1);
    color: #1e293b;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(37,99,235,0.1) 100%);
    border: 2px solid rgba(59,130,246,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}

.info-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.info-card p {
    color: #1e293b;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(5,150,105,0.1) 100%);
    border: 2px solid rgba(16,185,129,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.2);
}

.step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    margin-left: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    color: #059669;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.step-content p {
    color: #1e293b;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(168,85,247,0.1) 0%, rgba(147,51,234,0.1) 100%);
    border: 2px solid rgba(168,85,247,0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    backdrop-filter: blur(15px);
}

.professional-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.advanced-features {
    list-style: none;
    padding: 0;
}

.advanced-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(168,85,247,0.2);
    font-size: 1.1em;
    color: #1e293b;
}

.solution-highlight {
    background: linear-gradient(135deg, rgba(168,85,247,0.2) 0%, rgba(147,51,234,0.2) 100%);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(168,85,247,0.4);
}

.solution-highlight h3 {
    color: #7c3aed;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.solution-highlight p {
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9em;
    border: 1px solid rgba(168,85,247,0.3);
    color: #1e293b;
}

.cta-section {
    background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(37,99,235,0.1) 100%);
    border: 2px solid rgba(59,130,246,0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(5,150,105,0.1) 100%);
    border: 2px solid rgba(16,185,129,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.2);
}

.contact-icon {
    font-size: 3em;
    margin-left: 20px;
}

.contact-info h4 {
    color: #059669;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.contact-info p {
    color: #1e293b;
}

.why-private {
    background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(217,119,6,0.1) 100%);
    border: 2px solid rgba(245,158,11,0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.why-private h4 {
    color: #d97706;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.why-private ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.why-private li {
    padding: 5px 0;
    color: #1e293b;
}

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.prevention-tip {
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(5,150,105,0.1) 100%);
    border: 2px solid rgba(16,185,129,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.prevention-tip:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16,185,129,0.2);
}

.prevention-tip h3 {
    color: #059669;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.prevention-tip p {
    color: #1e293b;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(220,38,38,0.1) 100%);
    border: 2px solid rgba(239,68,68,0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.contact-cta p {
    color: #1e293b;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16,185,129,0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(59,130,246,0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59,130,246,0.4);
}

.contact-note {
    font-size: 1.1em;
    color: #dc2626;
    font-weight: 600;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 50vh;
        padding: 40px 15px;
    }
    
    .hero-banner h1 {
        font-size: 2.2em;
        padding: 20px 25px;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .hero-banner p {
        font-size: 1.1em;
        padding: 15px 25px;
        margin-bottom: 30px;
        border-radius: 15px;
        max-width: 95%;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat {
        padding: 15px;
        min-width: 100px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .header h2 {
        font-size: 1.6em;
    }
    
    .content-section {
        padding: 25px 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .professional-solution {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 0 15px 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 90%;
        max-width: 300px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 15px 0;
    }
    
    .prevention-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-section,
    .cta-section,
    .contact-cta {
        padding: 25px 15px;
    }
}