/* coming-soon.css - الأنماط الخاصة بصفحة Coming Soon */

/* --- Coming Soon Hero --- */
.coming-soon-hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('piic/bg-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
}

.coming-soon-icon {
    font-size: 80px;
    margin-bottom: 30px;
    color: var(--green);
}

.coming-soon-hero h2 {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 20px;
    font-weight: 800;
}

.coming-soon-hero p {
    font-size: 20px;
    color: rgba(35, 51, 51, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Countdown Timer --- */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 100px;
    text-align: center;
}

.countdown-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 14px;
    color: var(--orange);
    margin-top: 8px;
    font-weight: 600;
}

/* --- Progress Bar --- */
.progress-section {
    max-width: 600px;
    margin: 40px auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-label {
    font-weight: 600;
    color: var(--green);
}

.progress-percentage {
    color: var(--orange);
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--orange));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* --- Notify Form --- */
.notify-section {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 40px auto;
}

.notify-section h3 {
    color: var(--green);
    margin-bottom: 20px;
    text-align: center;
}

.notify-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.notify-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.notify-input:focus {
    outline: none;
    border-color: var(--green);
}

.notify-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* --- Features Grid --- */
.features-section {
    padding: 60px 0;
}

.features-section h3 {
    text-align: center;
    color: var(--green);
    margin-bottom: 40px;
    font-size: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.feature-card h4 {
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: rgba(35, 51, 51, 0.85);
    line-height: 1.6;
}

/* --- Social Links --- */
.social-section {
    text-align: center;
    padding: 40px 0;
}

.social-section h4 {
    color: var(--green);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .coming-soon-hero {
        padding: 60px 20px;
        margin: 30px 0;
    }
    
    .coming-soon-hero h2 {
        font-size: 36px;
    }
    
    .coming-soon-hero p {
        font-size: 18px;
    }
    
    .coming-soon-icon {
        font-size: 60px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-input {
        min-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .coming-soon-hero h2 {
        font-size: 28px;
    }
    
    .coming-soon-hero p {
        font-size: 16px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-number {
        font-size: 24px;
    }
    
    .countdown-label {
        font-size: 12px;
    }
    
    .notify-section {
        padding: 30px 20px;
        margin: 20px;
    }
}