/* Productivity Page Specific Styles */

/* Productivity Hero Section */
.productivity-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.productivity-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.productivity-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.productivity-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.productivity-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.productivity-hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.floating-timer,
.floating-tasks,
.floating-chart,
.floating-calendar {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-timer {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-tasks {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-chart {
    width: 70px;
    height: 70px;
    bottom: 30%;
    left: 10%;
    animation-delay: 3s;
}

.floating-calendar {
    width: 65px;
    height: 65px;
    bottom: 10%;
    right: 25%;
    animation-delay: 4.5s;
}

.floating-timer i {
    font-size: 1.8rem;
    color: #28a745;
}

.floating-tasks i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.floating-chart i,
.floating-calendar i {
    font-size: 1.7rem;
    color: var(--secondary-color);
}

/* Productivity Tools Section */
.productivity-tools {
    padding: 80px 0;
    background: var(--white);
}

/* Coming Soon Card Styles */
.coming-soon-card {
    opacity: 0.8;
    position: relative;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(248, 249, 250, 0.9));
    border-radius: var(--border-radius-lg);
    z-index: 1;
    pointer-events: none;
}

.coming-soon-icon {
    background: linear-gradient(135deg, #6c757d, #adb5bd) !important;
}

.coming-soon-badge {
    background: #6c757d !important;
}

/* Productivity Features Section */
.productivity-features {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.productivity-features h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Productivity CTA Section */
.productivity-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.productivity-cta .cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.productivity-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.productivity-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.productivity-cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.productivity-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.productivity-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Special styles for disabled buttons */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-secondary:disabled {
    background: #6c757d;
    border-color: #6c757d;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .productivity-hero-visual {
        display: none;
    }
    
    .productivity-stats {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .productivity-features {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .productivity-hero {
        padding: 100px 0 60px;
    }
    
    .productivity-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
}