/* ============================================
   عطاءات المنطقة الجنوبية - HebronGiving
   الأنماط الرئيسية
   ============================================ */

/* ============================================
   Google Fonts - خط عربي
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   المتغيرات
   ============================================ */
:root {
    --primary-green: #d4a017;
    --primary-green-dark: #b8860b;
    --primary-green-light: #fef9e7;
    --gold: #b8860b;
    --gold-light: #f5e6c8;
    --gold-dark: #8b6508;
    --gold-gradient: linear-gradient(135deg, #d4a017, #b8860b, #8b6508);
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-dark: #4a4a4a;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --gray-border: #e0e0e0;
    --white: #ffffff;
    --danger: #d9534f;
    --warning: #f0ad4e;
    --info: #5bc0de;
    --success: #5cb85c;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 5px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ============================================
   الأساسيات
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   شريط التنقل العلوي
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-info a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-info a:hover {
    color: var(--gold);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ============================================
   الهيدر الرئيسي
   ============================================ */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.3;
}

.logo-text span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

/* القائمة */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Hide mobile-only elements on desktop */
.mobile-menu-header,
.mobile-menu-cta,
.mobile-menu-contact,
.mobile-menu-social,
.mobile-menu-footer {
    display: none;
}

.mobile-menu-links {
    display: flex;
    gap: 5px;
    align-items: center;
}

.mobile-menu-links a i {
    display: none;
}

.nav-menu a,
.mobile-menu-links a {
    padding: 10px 18px;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.mobile-menu-links a:hover,
.nav-menu a.active,
.mobile-menu-links a.active {
    color: var(--primary-green);
    background: var(--primary-green-light);
}

.mobile-menu-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark)) !important;
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4) !important;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green)) !important;
}

/* زر القائمة للجوال */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-green);
    cursor: pointer;
    padding: 5px;
}

/* ============================================
   Hero Section - القسم الرئيسي
   ============================================ */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(212, 160, 23, 0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.hero-content h2 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================
   الأزرار
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e0b020, #d4a017);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

.btn-outline-green {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline-green:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ============================================
   عناوين الأقسام
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), #d4a017, var(--gold));
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 17px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   قسم من نحن (مختصر) - الصفحة الرئيسية
   ============================================ */
.about-preview {
    padding: 80px 0;
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.about-preview-text h3 {
    font-size: 30px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-preview-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.9;
    font-size: 16px;
}

.about-preview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
}

.about-feature-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.about-feature-item span {
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   قسم الخدمات
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(184,134,11,0.15);
    border-color: rgba(184,134,11,0.25);
}

.service-card .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), rgba(184,134,11,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .icon {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(184,134,11,0.3);
}

.service-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ============================================
   قسم خطوات التقديم
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    right: 16%;
    width: 68%;
    height: 3px;
    background: linear-gradient(90deg, #d4a017, var(--primary-green), #d4a017);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(212, 160, 23, 0.3);
    transition: var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.4);
}

.step-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    font-size: 15px;
}

/* ============================================
   قسم الإحصائيات
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark), var(--primary-green-dark));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-card .icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-card .number {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #d4a017, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .label {
    font-size: 16px;
    opacity: 0.85;
    font-weight: 600;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), #8b6508);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 15px 50px;
    font-size: 18px;
    background: var(--white);
    color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-section .btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   الفوتر
   ============================================ */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul li a::before {
    content: '◂';
    font-size: 10px;
    color: var(--gold);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 5px;
}

.footer-contact-item span {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: var(--gold);
}

/* ============================================
   صفحة من نحن
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--dark), var(--primary-green-dark));
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L48,170.7C96,181,192,203,288,186.7C384,171,480,117,576,117.3C672,117,768,171,864,186.7C960,203,1056,181,1152,154.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-banner h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb a {
    color: var(--gold);
}

.about-full {
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 26px;
    color: var(--primary-green);
    margin: 30px 0 15px;
    font-weight: 700;
}

.about-content p {
    color: var(--gray);
    line-height: 2;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.value-card {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: rgba(184,134,11,0.25);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(184,134,11,0.12);
}

.value-card i {
    font-size: 40px;
    background: linear-gradient(135deg, #d4a017, #b8860b, #8b6508);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(184,134,11,0.2));
}

.value-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ============================================
   صفحة تقديم طلب
   ============================================ */
.apply-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    border: 1px solid var(--gray-border);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.form-header h3 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 800;
}

.form-header p {
    color: var(--gray);
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

.form-group label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    color: var(--gray-dark);
    transition: var(--transition);
    background: var(--white);
    direction: rtl;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(26, 122, 76, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    color: var(--danger);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-success {
    background: var(--primary-green-light);
    color: var(--primary-green);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    display: none;
}

.form-success.show {
    display: block;
}

/* ============================================
   صفحة اتصل بنا
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-green-light);
    box-shadow: var(--shadow-lg);
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: var(--primary-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-green);
}

.contact-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-card p {
    color: var(--gray);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
}

/* ============================================
   رسائل التنبيه
   ============================================ */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: var(--primary-green-light);
    color: var(--primary-green);
    border: 1px solid rgba(26, 122, 76, 0.2);
}

.alert-danger {
    background: #fce4e4;
    color: var(--danger);
    border: 1px solid rgba(217, 83, 79, 0.2);
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid rgba(240, 173, 78, 0.2);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   زر العودة للأعلى
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   التجاوب - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: var(--primary-green-light);
        font-size: 20px;
    }

    .mobile-toggle:hover {
        background: var(--primary-green);
        color: var(--white);
    }

    /* ============================
       Premium Mobile Menu
       ============================ */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -110%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0f2b1d 0%, #1a1a2e 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: -10px 0 50px rgba(0,0,0,0.5);
        transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.open {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 25px 22px 20px;
        background: linear-gradient(135deg, rgba(184,134,11,0.15), rgba(26,122,76,0.1));
        border-bottom: 1px solid rgba(255,255,255,0.08);
        position: relative;
    }

    .mobile-menu-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(184,134,11,0.4), transparent);
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-brand img {
        height: 48px;
        width: auto;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    }

    .mobile-menu-brand h3 {
        font-size: 14px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.4;
        margin: 0;
    }

    .mobile-menu-brand span {
        font-size: 10px;
        color: #b8860b;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        color: rgba(255,255,255,0.7);
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 18px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close:hover {
        background: rgba(217,83,79,0.2);
        color: #ff6b6b;
        border-color: rgba(217,83,79,0.3);
    }

    /* Mobile Menu Links */
    .mobile-menu-links {
        display: flex !important;
        flex-direction: column;
        padding: 15px 12px;
        gap: 4px;
    }

    .mobile-menu-links a {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 14px 18px !important;
        color: rgba(255,255,255,0.8) !important;
        font-weight: 600;
        font-size: 16px !important;
        border-radius: 12px !important;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        background: transparent !important;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-links a i {
        display: flex !important;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,0.06);
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: rgba(255,255,255,0.5);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-menu-links a:hover {
        background: rgba(255,255,255,0.06) !important;
        color: #ffffff !important;
        border-color: rgba(255,255,255,0.08);
    }

    .mobile-menu-links a:hover i {
        background: rgba(26,122,76,0.3);
        color: #5ddb9e;
    }

    .mobile-menu-links a.active {
        background: linear-gradient(135deg, rgba(26,122,76,0.2), rgba(26,122,76,0.08)) !important;
        color: #ffffff !important;
        border-color: rgba(26,122,76,0.25);
    }

    .mobile-menu-links a.active::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: linear-gradient(180deg, #b8860b, #d4a017);
        border-radius: 0 4px 4px 0;
    }

    .mobile-menu-links a.active::after {
        display: none;
    }

    .mobile-menu-links a.active i {
        background: linear-gradient(135deg, var(--primary-green), #145f3b);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(26,122,76,0.3);
    }

    /* Mobile Menu CTA */
    .mobile-menu-cta {
        display: block !important;
        padding: 8px 20px 15px;
    }

    .mobile-menu-cta .nav-cta {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 25px !important;
        background: linear-gradient(135deg, #d4a017, #b8860b) !important;
        color: #ffffff !important;
        border-radius: 14px !important;
        font-weight: 800;
        font-size: 17px;
        box-shadow: 0 6px 25px rgba(184,134,11,0.35);
        border: 1px solid rgba(212,160,23,0.3);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .mobile-menu-cta .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(184,134,11,0.5);
        background: linear-gradient(135deg, #e0b020, #d4a017) !important;
    }

    .mobile-menu-cta .nav-cta i {
        font-size: 18px;
    }

    /* Contact Info */
    .mobile-menu-contact {
        display: flex !important;
        flex-direction: column;
        gap: 2px;
        padding: 15px 20px;
        margin: 5px 12px 0;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu-contact::before {
        content: 'تواصل معنا';
        display: block;
        font-size: 11px;
        letter-spacing: 1.5px;
        color: rgba(255,255,255,0.25);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mobile-menu-contact a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        color: rgba(255,255,255,0.55);
        font-size: 13px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .mobile-menu-contact a:hover {
        color: rgba(255,255,255,0.9);
    }

    .mobile-menu-contact a i {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: rgba(255,255,255,0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: #b8860b;
    }

    /* Social Links */
    .mobile-menu-social {
        display: flex !important;
        justify-content: center;
        gap: 12px;
        padding: 20px;
        margin: 0 12px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-menu-social a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        color: rgba(255,255,255,0.5);
        transition: all 0.3s ease;
    }

    .mobile-menu-social a:hover {
        background: rgba(26,122,76,0.25);
        border-color: rgba(26,122,76,0.4);
        color: #5ddb9e;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(26,122,76,0.2);
    }

    /* Footer */
    .mobile-menu-footer {
        display: block !important;
        text-align: center;
        padding: 15px 20px 25px;
        margin-top: auto;
    }

    .mobile-menu-footer span {
        font-size: 11px;
        color: rgba(255,255,255,0.2);
        letter-spacing: 0.5px;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        z-index: 1000;
        display: none;
        transition: all 0.4s ease;
    }

    .nav-overlay.show {
        display: block;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .header-content {
        padding: 10px 0;
    }

    .logo img {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .hero-section {
        height: 450px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-preview-image {
        order: -1;
    }

    .about-preview-image::before {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-grid::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .page-banner {
        padding: 80px 0 40px;
    }

    .page-banner h2 {
        font-size: 30px;
    }

    .about-preview-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        height: 400px;
    }

    .hero-content h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 80%;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 15px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .about-preview {
        padding: 50px 0;
    }

    .about-preview-text h3 {
        font-size: 24px;
    }

    .about-preview-features {
        grid-template-columns: 1fr;
    }

    .services-section,
    .steps-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 25px 18px;
    }

    .service-card .icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .stat-card .number {
        font-size: 30px;
    }

    .stat-card .label {
        font-size: 13px;
    }

    .stats-grid {
        gap: 15px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .page-banner {
        padding: 70px 0 35px;
    }

    .page-banner h2 {
        font-size: 26px;
    }

    /* Form improvements for mobile */
    .form-container {
        padding: 25px 15px;
        margin: 0 5px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    /* Contact mobile */
    .contact-form {
        padding: 25px 18px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    /* Footer mobile */
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 15px 10px;
    }

    /* Values grid mobile */
    .value-card {
        padding: 20px;
    }

    .value-card i {
        font-size: 30px;
    }

    /* Alerts mobile */
    .alert {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 14px;
    }

    /* Scroll top button */
    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        left: 15px;
        font-size: 16px;
    }
}

/* ============================================
   Loading Spinner
   ============================================ */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s ease infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   Tooltip
   ============================================ */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    background: var(--dark);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

/* ============================================
   طباعة - Print Styles
   ============================================ */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    body {
        background: white !important;
        font-size: 12pt;
        color: #000 !important;
    }

    .top-bar,
    .main-header,
    .main-footer,
    .scroll-top,
    .hero-section,
    .cta-section,
    .nav-overlay,
    .hero-dots,
    .btn,
    .mobile-toggle {
        display: none !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }

    /* Page banner print */
    .page-banner {
        background: none !important;
        color: #000 !important;
        padding: 15px 0 !important;
        border-bottom: 3px double #333;
    }

    .page-banner h2 {
        color: #1a7a4c !important;
        font-size: 20pt;
    }

    .page-banner .breadcrumb {
        display: none !important;
    }

    /* Form print */
    .form-container {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        padding: 20px !important;
    }

    .form-control {
        border: 1px solid #aaa !important;
        box-shadow: none !important;
    }

    /* Grid layouts print */
    .about-preview-grid,
    .services-grid,
    .steps-grid,
    .values-grid,
    .contact-grid {
        display: block !important;
    }

    .service-card,
    .step-card,
    .value-card {
        display: inline-block;
        width: 30%;
        vertical-align: top;
        margin: 5px;
        box-shadow: none !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    /* Print header */
    body::before {
        content: 'عطاءات المنطقة الجنوبية - HebronGiving.com';
        display: block;
        text-align: center;
        font-size: 16pt;
        font-weight: bold;
        color: #1a7a4c;
        padding: 10px 0 15px;
        border-bottom: 2px solid #b8860b;
        margin-bottom: 10px;
    }

    /* Stats section print */
    .stats-section {
        background: none !important;
        color: #000 !important;
    }

    .stat-card .number {
        background: none !important;
        -webkit-text-fill-color: #b8860b !important;
        color: #b8860b !important;
    }

    .stat-card .icon {
        color: #1a7a4c !important;
    }

    .stat-card .label {
        color: #333 !important;
        opacity: 1 !important;
    }

    /* About preview image */
    .about-preview-image::before {
        display: none !important;
    }

    /* Alerts print */
    .alert {
        border: 1px solid currentColor !important;
    }

    /* Links */
    a {
        text-decoration: none !important;
        color: inherit !important;
    }

    @page {
        margin: 1.5cm;
        size: A4;
    }
}