
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)),
    url('../E5.webp') center/40% no-repeat;
    display: flex;
    background-attachment: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    box-sizing: initial;
    
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--accent-color);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--text-color);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow-color);
}

.features {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
}

.features h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 0 10px var(--accent-color);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233, 214, 2, 0.92);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) {
    header { padding: 1rem 2rem; }
    .logo { font-size: 1.5rem; }
    .nav-links { display: flex; gap: 1.5rem; }
    
    .hero { padding: 2rem; }
    .hero h1 { font-size: 4rem; }
    .hero p { font-size: 1.5rem; }
    .hero-buttons {
        flex-direction: row;
        max-width: none;
    }
    .primary-btn, .secondary-btn {
        width: auto;
        padding: 1rem 2.5rem;
    }
    
    .features { padding: 6rem 2rem; }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fivem-btn {
    background: linear-gradient(135deg, #FF7300 0%, #FF3C00 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 12px rgba(255, 60, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.fivem-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.fivem-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 60, 0, 0.4);
    gap: 25px;
}

.fivem-btn:hover .fivem-icon {
    transform: rotate(15deg);
}

.fivem-btn:active {
    transform: scale(0.95);
}
