/* Jobs & Contact Pages Styles */

.job-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.job-salary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #43e97b;
}

.btn-apply {
    padding: 12px 30px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

/* ==============================
   CONTACT PAGE STYLES
   ============================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.info-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all .3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

html[dir="rtl"] .info-card:hover {
    transform: translateX(-10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.info-card p {
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all .3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #d77b2c;
    box-shadow: 0 0 0 3px rgba(215, 123, 44, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* ==============================
   EMPTY STATE
   ============================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #666;
}

.empty-state p {
    font-size: 1.1rem;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .about-stats,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .articles-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
    }

    .job-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-apply {
        width: 100%;
        justify-content: center;
    }
}

