:root {
    --primary-orange: #F9A954;
    --primary-green: #93B66F;
    --light-green: #CED88D;
    --primary-blue: #3B82F6;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e08e3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 169, 84, 0.3);
    color: white;
}

.btn-secondary-custom {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-secondary-custom:hover {
    background-color: #7da05f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 182, 111, 0.3);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fdfbf7 0%, #eef5e9 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Features */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(147, 182, 111, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: white;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* RTL Specifics */
.me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}
