/* ===== المتغيرات الأساسية ===== */
body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
}

/* ===== ألوان company ===== */
.bg-dar-blue { background-color: #0C4A4D; }
.text-dar-blue { color: #0C4A4D; }
.bg-dar-gold { background-color: #c5a059; }
.text-dar-gold { color: #c5a059; }
.border-dar-gold { border-color: #c5a059; }

/* ===== بانر الصفحات الداخلية ===== */
.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 74, 77, 0.95) 0%, rgba(12, 74, 77, 0.7) 100%);
}
.page-banner .content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}
.page-banner .content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
.page-banner .breadcrumb a {
    color: #c5a059;
    text-decoration: none;
    transition: color 0.3s;
}
.page-banner .breadcrumb a:hover {
    color: white;
}

/* ===== section padding ===== */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ===== البطاقات ===== */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5rem;
    overflow: hidden;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}
.card-hover img {
    transition: transform 0.6s ease;
}
.card-hover:hover img {
    transform: scale(1.08);
}

/* ===== الأزرار ===== */
.btn-gold {
    background-color: #c5a059;
    color: #0C4A4D;
    padding: 0.875rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-gold:hover {
    background-color: #b8933e;
    transform: scale(1.05);
}
.btn-outline {
    border: 2px solid #c5a059;
    color: #0C4A4D;
    padding: 0.875rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    background: transparent;
}
.btn-outline:hover {
    background-color: #c5a059;
    color: #0C4A4D;
}

/* ===== حركات الظهور ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== خلفية القائمة ===== */
.navbar-bg {
    background-color: rgba(12, 74, 77, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

/* ===== تأثيرات القائمة ===== */
.nav-link {
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: #c5a059;
    transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== تاغ الفئة ===== */
.category-tag {
    display: inline-block;
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== الفلاتر ===== */
.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background: #c5a059;
    color: #0C4A4D;
    border-color: #c5a059;
}

/* ===== stat card ===== */
.stat-card {
    transition: all 0.3s ease;
    border-radius: 20px;
}
.stat-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
