/* ==================== INDEX PAGE ONLY STYLES ==================== */

/* Hero Section - FIXED CIRCLES */
.hero-section {
    background: linear-gradient(135deg, #293151 0%, #1f253d 50%, #2a3555 100%);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Fixed Background Shapes - No Animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    width: 600px;
    height: 600px;
    background: #ff7722;
    opacity: 0.15;
    border-radius: 50%;
}

[dir="ltr"] .hero-section::before {
    right: -10%;
}

[dir="rtl"] .hero-section::before {
    left: -10%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    width: 450px;
    height: 450px;
    background: #ff7722;
    opacity: 0.1;
    border-radius: 50%;
}

[dir="ltr"] .hero-section::after {
    left: -15%;
}

[dir="rtl"] .hero-section::after {
    right: -15%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 119, 34, 0.2);
    border: 2px solid #ff7722;
    color: #ff7722;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #d6d6d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: #d6d6d6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #ff7722 !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.3);
}

.btn-hero-primary:hover {
    background: #e66610 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 119, 34, 0.4);
    color: #fff !important;
}

.btn-hero-secondary {
    background: transparent !important;
    color: #fff !important;
    padding: 15px 30px !important;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ff7722 !important;
    color: #ff7722 !important;
    transform: translateY(-3px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.feature-card {
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    border-color: #ff7722;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 119, 34, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7722 0%, #ff8844 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(255, 119, 34, 0.2);
}

.feature-title {
    color: #293151;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #293151 0%, #1f253d 100%);
    color: #fff;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff7722;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #d6d6d6;
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.post-card {
    transition: all 0.3s;
    height: 100%;
    border: 2px solid #e0e0e0;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 119, 34, 0.15);
    border-color: #ff7722;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff7722 0%, #ff8844 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
}

/* Install Button */
#installBtn {
    background: #ff7722 !important;
    color: #fff !important;
}

#installBtn:hover {
    background: #e66610 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Mobile Hero Section */
    .hero-section {
        padding: 80px 0 60px;
    }

    /* Circle 1 - Top (Mobile) */
    .hero-section::before {
        width: 200px !important;
        height: 200px !important;
        top: 70px;
    }

    [dir="ltr"] .hero-section::before {
        right: -5px;
    }

    [dir="rtl"] .hero-section::before {
        left: -5px;
    }

    /* Circle 2 - Bottom (Mobile) */
    .hero-section::after {
        width: 150px !important;
        height: 150px !important;
        top: auto;
        bottom: 45px;
    }

    [dir="ltr"] .hero-section::after {
        right: 20px;
    }

    [dir="rtl"] .hero-section::after {
        left: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 40px !important;
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}