* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #fff;
    min-height: 100vh;
}

.navbar {
    background: rgba(255,255,255,0.95);
    padding: 15px 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-container i {
    font-size: 2.2rem;
    color: #2e7d32;
}

.site-name {
    font-size: 2rem;
    color: #1b5e20;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2e7d32;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2e7d32;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    background: #2e7d32;
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46,125,50,0.3);
}

.register-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.main-content {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    backdrop-filter: blur(3px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* رأس الصفحة */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2e7d32, transparent);
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* محتوى الاتصال */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* معلومات الاتصال */
.contact-info {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-header {
    margin-bottom: 30px;
}

.info-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.info-header p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(46,125,50,0.2);
    transform: translateX(-10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(46,125,50,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: #2e7d32;
}

.info-details h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-details p {
    color: rgba(255,255,255,0.7);
}

.info-details a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.info-details a:hover {
    color: #2e7d32;
}

/* وسائل التواصل الاجتماعي */
.social-section {
    margin-top: 30px;
}

.social-section h3 {
    color: white;
    margin-bottom: 15px;
}

.social-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-item {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.3rem;
}

.social-item:hover {
    background: #2e7d32;
    transform: translateY(-5px);
}

/* نموذج الاتصال */
.contact-form {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: rgba(255,255,255,0.8);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    color: white;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: rgba(255,255,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.form-group select option {
    background: #333;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46,125,50,0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

.form-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-alert--success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}

.form-alert--error {
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ffcdd2;
}

.form-alert--error ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.field-error {
    display: block;
    color: #c62828;
    font-size: 0.85rem;
    margin-top: 6px;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
    border-color: #e53935 !important;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.15);
}

/* الخريطة */
.map-section {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 60px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-header p {
    color: rgba(255,255,255,0.8);
}

.map-container {
    height: 400px;
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.map-placeholder i {
    font-size: 5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: white;
    font-size: 1.2rem;
}

/* الأسئلة الشائعة */
.faq-section {
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-header p {
    color: rgba(255,255,255,0.8);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(46,125,50,0.2);
    transform: translateY(-5px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: #2e7d32;
    font-size: 1.3rem;
}

.faq-question h3 {
    color: white;
    font-size: 1.2rem;
}

.faq-answer {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    padding-right: 40px;
}

/* قسم الدعم الفوري */
.support-section {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.support-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.support-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.support-btn.chat {
    background: white;
    color: #2e7d32;
}

.support-btn.chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.support-btn.call {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.support-btn.call:hover {
    background: white;
    color: #2e7d32;
    transform: translateY(-3px);
}

/* التذييل */
.footer {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 60px 30px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2e7d32;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #2e7d32;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-section {
        padding: 40px 20px;
    }
    
    .support-section h2 {
        font-size: 2rem;
    }
}