/* 404 Page Styles */
.error-404-main {
    direction: rtl;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
    background-color: #f8fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404-container {
    border-radius: 20px;
    border-top: 5px solid var(--primary-teal);
}

.error-404-icon {
    font-size: 80px;
    color: var(--accent-gold);
}

.error-404-heading {
    color: var(--primary-teal);
    font-size: 100px;
    line-height: 1;
}

.error-404-subheading {
    color: var(--primary-teal-dark);
}

.error-404-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.error-404-search-form {
    max-width: 500px;
}

.error-404-input-group {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(6, 97, 101, 0.1);
}

.error-404-input {
    box-shadow: none;
    font-size: 16px;
    height: auto;
}

.error-404-btn {
    background-color: var(--accent-gold);
    color: white;
    border-radius: 0;
}

.error-404-home-btn {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: white;
    border-radius: 30px;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.error-404-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}
