/* Enhanced CSS for Lamsa Website */

/* Reset and Base Styles */
* {
    font-family: 'Cairo', sans-serif;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b69 50%, #1a1a3a 75%, #0f0f23 100%);
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}



.card-modern {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.2), transparent);
    transition: left 0.5s;
}

.card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.card-modern:hover::before {
    left: 100%;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.text-dark {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.text-gray-600 {
    color: #b8c5d6 !important;
}

.bg-light {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%) !important;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.1);
}

.form-input::placeholder {
    color: #a0aec0;
}

.form-input:focus {
    outline: none;
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    position: relative;
    border: 1px solid rgba(255, 105, 180, 0.2);
    will-change: transform; /* تحسين الأداء */
    backface-visibility: hidden; /* منع مشاكل العرض */
    -webkit-transform: translateZ(0); /* تسريع GPU */
    transform: translateZ(0); /* تسريع GPU - خاصية قياسية */
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.8), rgba(138, 43, 226, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::before {
    opacity: 0; /* إزالة تغيير اللون عند hover */
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02); /* حركة فقط بدون تغيير لون */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* ظل محايد */
}



.mobile-menu {
    background: rgba(30, 30, 58, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF69B4, #D4AF37);
    transition: width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #FF69B4 !important;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.service-features {
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 105, 180, 0.1);
}

.service-features ul li {
    color: #b8c5d6 !important;
}

.service-features strong {
    color: #FF69B4 !important;
    text-shadow: 0 0 5px rgba(255, 105, 180, 0.3);
}

.service-features .text-primary {
    color: #D4AF37 !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

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

@keyframes float-dark {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
    }
    50% { 
        transform: translateY(-20px) rotate(2deg); 
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF69B4, #8A2BE2) !important;
    box-shadow: 
        0 0 20px rgba(255, 105, 180, 0.3),
        0 0 40px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.service-icon:hover::before {
    left: 100%;
}

.service-icon:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF69B4) !important;
    box-shadow: 
        0 0 30px rgba(255, 105, 180, 0.5),
        0 0 60px rgba(255, 105, 180, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.btn-modern {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 15px rgba(255, 105, 180, 0.3),
        0 0 20px rgba(255, 105, 180, 0.1);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    box-shadow: 
        0 10px 25px rgba(255, 105, 180, 0.4),
        0 0 30px rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid rgba(255, 105, 180, 0.5);
    background: rgba(255, 105, 180, 0.1);
    color: #FF69B4;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    border-color: #FF69B4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
    color: white;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    color: #000000;
}

/* Particle Effects */
.particle {
    background: rgba(255, 105, 180, 0.4);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.progress-bar {
    background: linear-gradient(90deg, #FF69B4, #8A2BE2);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Enhanced Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 105, 180, 0.1);
}

/* Text Gradients */
h1, h2, h3 {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Hero Title Enhancement */
.hero-title {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    padding-bottom: 0.5rem;
    display: block;
    position: relative;
}

.hero-subtitle {
    color: #ffffff !important;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Contact Section Enhancement */
.contact-section {
    background: linear-gradient(145deg, rgba(30, 30, 58, 0.9), rgba(45, 27, 105, 0.9));
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.contact-section h2 {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-section p {
    color: #ffffff !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    color: #e8f4fd !important;
    text-shadow: 0 0 5px rgba(232, 244, 253, 0.2);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info strong {
    color: #FF69B4 !important;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
    font-weight: 600;
}

/* تحسين ألوان النموذج في قسم التواصل */
.contact-section .form-input {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
}

.contact-section .form-input:focus {
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
    color: #ffffff;
}

.contact-section .form-input::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.contact-section select {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
}

.contact-section select:focus {
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

.contact-section label {
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-section textarea {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    border: 2px solid rgba(255, 105, 180, 0.4);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.15);
    min-height: 120px;
    resize: vertical;
}

.contact-section textarea:focus {
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
    color: #ffffff;
}

.contact-section textarea::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

/* إصلاح مشكلة لون النص في حقول النموذج */
.contact-section .form-input,
.contact-section select,
.contact-section textarea {
    background: #000000 !important;
    border: 2px solid rgba(255, 105, 180, 0.4) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.15) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-image: none !important;
}

.contact-section .form-input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
    background: #000000 !important;
    border-color: #FF69B4 !important;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4) !important;
    color: #ffffff !important;
    outline: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-image: none !important;
}

.contact-section .form-input::placeholder,
.contact-section textarea::placeholder {
    color: #a0aec0 !important;
    opacity: 0.8 !important;
}

/* إصلاح مشكلة خيارات القائمة المنسدلة */
.contact-section select option {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 12px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
}

.contact-section select option:hover {
    background: #FF69B4 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
}

.contact-section select option:checked {
    background: #FF69B4 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
}

.contact-section select option[disabled] {
    color: #a0aec0 !important;
    font-style: italic !important;
    background: #000000 !important;
    -webkit-text-fill-color: #a0aec0 !important;
    -webkit-text-stroke: 0 !important;
}

/* تحسينات إضافية لضمان وضوح النص */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.1) !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2) !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
}

/* تحسين مظهر القائمة المنسدلة */
.contact-section select {
    cursor: pointer !important;
    position: relative !important;
}

.contact-section select:invalid {
    color: #a0aec0 !important;
}

.contact-section select:valid {
    color: #ffffff !important;
}

/* تحسين مظهر النص المدخل */
.contact-section .form-input:not(:placeholder-shown) {
    color: #ffffff !important;
    font-weight: 500 !important;
}

.contact-section textarea:not(:placeholder-shown) {
    color: #ffffff !important;
    font-weight: 500 !important;
}

/* قواعد إضافية لضمان وضوح النص في جميع المتصفحات */
.contact-section * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* إصلاح خاص لمشكلة النص في الحقول */
.contact-section .form-input,
.contact-section select,
.contact-section textarea {
    caret-color: #ffffff !important;
}

/* تنسيق النص المحدد */
.contact-section .form-input::selection,
.contact-section select::selection,
.contact-section textarea::selection {
    background-color: rgba(255, 105, 180, 0.3) !important;
    color: #ffffff !important;
}

.contact-section .form-input::-moz-selection,
.contact-section select::-moz-selection,
.contact-section textarea::-moz-selection {
    background-color: rgba(255, 105, 180, 0.3) !important;
    color: #ffffff !important;
}

/* إصلاح خاص للقائمة المنسدلة */
.contact-section select {
    text-indent: 0 !important;
    text-overflow: '' !important;
}

.contact-section select option {
    text-indent: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* إصلاح خاص للنص المدخل */
.contact-section input::value,
.contact-section textarea::value {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* قواعد قوية لضمان وضوح النص */
.contact-section input,
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-image: none !important;
    text-shadow: none !important;
}

/* إصلاح خاص للقائمة المنسدلة */
.contact-section select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background-image: none !important;
}

.contact-section select:not([size]) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* إصلاح خاص للنص المدخل في الحقول */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background-image: none !important;
}

/* إصلاح خاص للقيم المدخلة */
.contact-section input[value],
.contact-section textarea {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* حل جذري لمشكلة النص */
.contact-section .form-input,
.contact-section select,
.contact-section textarea {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-text-stroke: 0 !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    background-image: none !important;
    text-shadow: none !important;
    font-weight: 500 !important;
}

/* توحيد تنسيق خيارات القائمة المنسدلة */
.contact-section select option {
    color: #ffffff !important;
    background: #000000 !important;
    border: none !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-family: 'Cairo', sans-serif !important;
}

.contact-section select option:checked {
    color: #ffffff !important;
    background: #333333 !important;
    font-weight: 600 !important;
}

.contact-section select option:hover {
    color: #ffffff !important;
    background: #333333 !important;
}

.contact-section select option[disabled] {
    color: #a0aec0 !important;
    background: #000000 !important;
    font-style: italic !important;
    font-family: 'Cairo', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* إصلاح خاص للنص المدخل */
.contact-section input[type="text"]:not([readonly]),
.contact-section input[type="email"]:not([readonly]),
.contact-section textarea:not([readonly]) {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background-image: none !important;
}

/* إصلاح خاص للنص أثناء الكتابة */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    caret-color: #FF69B4 !important;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    caret-color: #FF69B4 !important;
}

/* توحيد تنسيق منطقة النص الطويل */
.contact-section textarea {
    min-height: 120px !important;
    resize: vertical !important;
    line-height: 1.6 !important;
    font-family: 'Cairo', sans-serif !important;
}

/* توحيد تنسيق جميع الحقول */
.contact-section .form-input,
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border: 2px solid rgba(255, 105, 180, 0.4) !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: 'Cairo', sans-serif !important;
}

.contact-section .form-input:focus,
.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus,
.contact-section select:focus {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* منع تغيير الخلفية عند التركيز */
.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus,
.contact-section select:focus {
    background-color: #000000 !important;
    background: #000000 !important;
}

/* منع تغيير اللون عند النقر */
.contact-section input[type="text"]:active,
.contact-section input[type="email"]:active,
.contact-section textarea:active,
.contact-section select:active {
    color: #ffffff !important;
    background: #000000 !important;
    background-color: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون عند التمرير */
.contact-section input[type="text"]:hover,
.contact-section input[type="email"]:hover,
.contact-section textarea:hover,
.contact-section select:hover {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون عند التحديد */
.contact-section input[type="text"]::selection,
.contact-section input[type="email"]::selection,
.contact-section textarea::selection {
    color: #ffffff !important;
    background: #333333 !important;
}

/* منع تغيير اللون عند النقر على أي عنصر */
.contact-section input[type="text"]:hover:active,
.contact-section input[type="email"]:hover:active,
.contact-section textarea:hover:active,
.contact-section select:hover:active {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون عند التركيز والنقر */
.contact-section input[type="text"]:focus:active,
.contact-section input[type="email"]:focus:active,
.contact-section textarea:focus:active,
.contact-section select:focus:active {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* إصلاح خاص للـ autofill */
.contact-section input:-webkit-autofill,
.contact-section input:-webkit-autofill:hover,
.contact-section input:-webkit-autofill:focus,
.contact-section input:-webkit-autofill:active {
    color: #ffffff !important;
    background: #000000 !important;
    -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
}

/* منع أي تغيير في اللون عند التفاعل */
.contact-section input[type="text"]:any-link,
.contact-section input[type="email"]:any-link,
.contact-section textarea:any-link,
.contact-section select:any-link {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون عند التحديد */
.contact-section input[type="text"]::selection,
.contact-section input[type="email"]::selection,
.contact-section textarea::selection,
.contact-section select::selection {
    color: #ffffff !important;
    background: #333333 !important;
}

/* إصلاح خاص للـ autocomplete */
.contact-section input:-webkit-autofill {
    color: #ffffff !important;
    background: #000000 !important;
    -webkit-box-shadow: 0 0 0 30px #000000 inset !important;
}

/* إصلاح خاص للـ datalist */
.contact-section datalist option {
    color: #ffffff !important;
    background: #000000 !important;
}

/* منع تغيير اللون عند النقر على الخيارات */
.contact-section select option:active,
.contact-section select option:focus {
    color: #ffffff !important;
    background: #333333 !important;
    background-color: #333333 !important;
}

/* منع تغيير اللون عند النقر على القائمة المنسدلة */
.contact-section select:active {
    color: #ffffff !important;
    background: #000000 !important;
    background-color: #000000 !important;
}

/* إصلاح خاص للـ input list */
.contact-section input[list] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* إصلاح خاص للـ search input */
.contact-section input[type="search"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* إصلاح خاص للـ tel input */
.contact-section input[type="tel"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* إصلاح خاص للـ url input */
.contact-section input[type="url"] {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* حل جذري لمشكلة النص في الحقول */
.contact-section * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* منع أي تغيير في اللون نهائياً */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون في جميع الحالات */
.contact-section input[type="text"]:hover,
.contact-section input[type="email"]:hover,
.contact-section textarea:hover,
.contact-section select:hover,
.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus,
.contact-section select:focus,
.contact-section input[type="text"]:active,
.contact-section input[type="email"]:active,
.contact-section textarea:active,
.contact-section select:active,
.contact-section input[type="text"]:visited,
.contact-section input[type="email"]:visited,
.contact-section textarea:visited,
.contact-section select:visited {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* إصلاح خاص للقائمة المنسدلة */
.contact-section select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.contact-section select:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border-color: #ffffff !important;
}

/* إصلاح خاص للنص المدخل في جميع الحقول */
.contact-section input,
.contact-section textarea {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.contact-section input:focus,
.contact-section textarea:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border-color: #FF69B4 !important;
}

/* توحيد تنسيق الـ placeholder لجميع الحقول */
.contact-section input::placeholder,
.contact-section textarea::placeholder,
.contact-section select::placeholder {
    color: #a0aec0 !important;
    -webkit-text-fill-color: #a0aec0 !important;
    opacity: 0.8 !important;
    font-family: 'Cairo', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* حل نهائي لمشكلة القائمة المنسدلة */
.contact-section select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF69B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
}

/* توحيد تنسيق جميع الحقول في النموذج */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: 'Cairo', sans-serif !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus,
.contact-section select:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: none !important;
    border-color: #FF69B4 !important;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* توحيد تنسيق القائمة المنسدلة مع باقي الحقول */
.contact-section select {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF69B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"), #000000 !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
    border: 2px solid rgba(255, 105, 180, 0.4) !important;
    border-radius: 15px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    font-family: 'Cairo', sans-serif !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.contact-section select:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: #000000 !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF69B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"), #000000 !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 16px !important;
    padding-right: 45px !important;
    border-color: #FF69B4 !important;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* إصلاح خاص للـ placeholder */
.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #a0aec0 !important;
    opacity: 0.8 !important;
    -webkit-text-fill-color: #a0aec0 !important;
}

/* تحسين أزرار قسم التواصل */
.contact-section .btn-modern {
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 5px 15px rgba(255, 105, 180, 0.3),
        0 0 20px rgba(255, 105, 180, 0.1);
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.contact-section .btn-modern:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    box-shadow: 
        0 10px 25px rgba(255, 105, 180, 0.4),
        0 0 30px rgba(255, 105, 180, 0.2);
    transform: translateY(-3px);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* تحسين معلومات التواصل */
.contact-section .contact-details {
    background: linear-gradient(145deg, rgba(30, 30, 58, 0.7), rgba(45, 27, 105, 0.7));
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 105, 180, 0.2);
    backdrop-filter: blur(5px);
}

.contact-section .contact-details h3 {
    color: #FF69B4 !important;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-section .contact-details p {
    color: #e8f4fd !important;
    text-shadow: 0 0 5px rgba(232, 244, 253, 0.2);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-section .contact-details strong {
    color: #FF69B4 !important;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
    font-weight: 600;
}

/* تحسين إضافي لضمان وضوح النصوص */
.contact-section * {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-osx-font-smoothing: grayscale;
}

.contact-section h1, 
.contact-section h2, 
.contact-section h3, 
.contact-section h4, 
.contact-section h5, 
.contact-section h6 {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.contact-section .text-muted {
    color: #b8c5d6 !important;
    text-shadow: 0 0 5px rgba(184, 197, 214, 0.2);
}

.contact-section .text-primary {
    color: #FF69B4 !important;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

/* تحسين التباين للقراءة */
.contact-section {
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

/* Testimonial Text Enhancement */
.testimonial-card {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    color: #ffffff;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.testimonial-card p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.testimonial-card h4 {
    color: #FF69B4 !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.testimonial-card small {
    color: #b8c5d6 !important;
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF69B4;
    font-family: serif;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Social Icons */
.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FF69B4, #8A2BE2) !important;
    box-shadow: 
        0 0 15px rgba(255, 105, 180, 0.3),
        0 0 30px rgba(255, 105, 180, 0.1);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF69B4) !important;
    box-shadow: 
        0 0 25px rgba(255, 105, 180, 0.5),
        0 0 50px rgba(255, 105, 180, 0.2);
    transform: scale(1.1) rotate(10deg);
}

/* Form Enhanced */
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

select {
    background: linear-gradient(145deg, #2d1b69 0%, #1e1e3a 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

select:focus {
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.3);
    outline: none;
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
}

select option {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    color: #ffffff;
    padding: 10px;
    border: none;
    font-size: 16px;
}

select option:hover {
    background: linear-gradient(145deg, #FF69B4 0%, #8A2BE2 100%);
    color: #ffffff;
    transform: scale(1.02);
}

select option:checked {
    background: linear-gradient(145deg, #FF69B4 0%, #8A2BE2 100%);
    color: #ffffff;
    font-weight: 600;
}

select option[disabled] {
    color: #a0aec0;
    font-style: italic;
}

/* تحسين مظهر القائمة المنسدلة */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF69B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Mobile Menu Enhanced */
#mobile-menu-btn {
    color: #FF69B4 !important;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #FF69B4;
    outline-offset: 2px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

/* Hero Section */
.hero-bg {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(138, 43, 226, 0.3));
}

/* Hero Container Enhancement */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

#home .container {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

#home .animate-fade-in {
    padding: 2rem 0;
}

.video-background {
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
}

/* Notification */
.notification {
    background: linear-gradient(145deg, #1e1e3a 0%, #2d1b69 100%);
    border: 1px solid rgba(255, 105, 180, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 105, 180, 0.2);
    color: #ffffff;
}

/* Loading Screen */
.loading-screen {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b69 50%, #1a1a3a 75%, #0f0f23 100%);
}

.loading-spinner {
    border-color: rgba(255, 105, 180, 0.3);
    border-top-color: #FF69B4;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    border-color: rgba(255, 255, 255, 0.3);
}

.scroll-indicator div {
    background: #FF69B4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease;
    z-index: -2;
}

/* Selection */
::selection {
    background: rgba(255, 105, 180, 0.3);
    color: #ffffff;
}

::-moz-selection {
    background: rgba(255, 105, 180, 0.3);
    color: #ffffff;
}

/* Modern Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-float { 
    animation: float 3s ease-in-out infinite; 
}

.animate-slide-in { 
    animation: slideInUp 0.8s ease-out; 
}

.animate-fade-in { 
    animation: fadeIn 1s ease-out; 
}

.animate-pulse { 
    animation: pulse 2s ease-in-out infinite; 
}

/* Modern Navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF69B4, #D4AF37);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #FF69B4 !important;
}





/* Ensure Font Awesome Icons are visible */
.fas, .fa, .fab {
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome', Arial, sans-serif !important;
    font-weight: 900 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF69B4, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    #home {
        padding: 1rem 0;
    }
    
    #home .container {
        padding: 1rem 0;
    }
    
    .card-modern {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-modern {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .portfolio-item {
        margin-bottom: 20px;
    }
    
    .portfolio-item:hover {
        transform: translateY(-5px) scale(1.01); /* حركة أقل للأجهزة المحمولة */
        will-change: transform; /* تحسين الأداء للهاتف */
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Mobile-specific button improvements */
    .service-toggle-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-height: 50px;
        touch-action: manipulation;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 45px;
        touch-action: manipulation;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}

/* Large Screen Optimizations */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .card-modern:hover {
        transform: translateY(-15px);
    }
    
    .portfolio-item:hover {
        transform: translateY(-10px) scale(1.02); /* حركة محسنة بدون تغيير لون */
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-float, .animate-pulse {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #FF69B4;
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #FF69B4;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Text Selection */
::selection {
    background: rgba(255, 105, 180, 0.3);
    color: #2C3E50;
}

::-moz-selection {
    background: rgba(255, 105, 180, 0.3);
    color: #2C3E50;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF69B4, #D4AF37);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Particle Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 105, 180, 0.8);
    border-radius: 50%;
    animation: float-particle 6s infinite linear;
    box-shadow: 0 0 10px rgba(255, 105, 180, 1);
    z-index: 6;
    filter: blur(0.5px);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Service Cards Enhanced */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-features {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 1rem;
}

.service-features.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-toggle-btn {
    position: relative;
    overflow: hidden;
    z-index: 10;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.service-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.service-toggle-btn:active {
    transform: translateY(0);
}

.service-toggle-btn:focus {
    outline: 2px solid #FF69B4;
    outline-offset: 2px;
}

.service-toggle-btn i {
    transition: transform 0.3s ease;
    pointer-events: none;
}

.service-toggle-btn.active i {
    transform: rotate(180deg);
}

/* Ensure service features are properly styled */
.service-features {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-features.show {
    display: block !important;
    opacity: 1;
}

/* Portfolio Filter */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #FF69B4;
    background: transparent;
    color: #FF69B4;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 10;
}

.filter-btn:hover {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.filter-btn.active {
    background: #FF69B4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.filter-btn:active {
    transform: translateY(0);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; /* إخفاء overlay بالكامل */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 0; /* عدم إظهار overlay عند hover */
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF69B4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
    background: #FF69B4;
    color: white;
}

/* Stats Section */
.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FF69B4, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* Enhanced Form */
.form-input:focus {
    outline: none;
    border-color: #FF69B4;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF69B4, #D4AF37);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .glass,
    .animate-float,
    .animate-pulse,
    .animate-slide-in,
    .animate-fade-in {
        animation: none !important;
        backdrop-filter: none !important;
    }
    
    .card-modern,
    .portfolio-item,
    .testimonial-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* حماية نهائية للحقول - منع أي تغيير في اللون */
.contact-section input,
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.contact-section input:focus,
.contact-section textarea:focus,
.contact-section select:focus {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

.contact-section input:active,
.contact-section textarea:active,
.contact-section select:active {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

.contact-section input:hover,
.contact-section textarea:hover,
.contact-section select:hover {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع أي تغيير في اللون نهائياً */
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section textarea,
.contact-section select {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
}

/* منع تغيير اللون في جميع الحالات */
.contact-section input[type="text"]:hover,
.contact-section input[type="email"]:hover,
.contact-section textarea:hover,
.contact-section select:hover,
.contact-section input[type="text"]:focus,
.contact-section input[type="email"]:focus,
.contact-section textarea:focus,
.contact-section select:focus,
.contact-section input[type="text"]:active,
.contact-section input[type="email"]:active,
.contact-section textarea:active,
.contact-section select:active,
.contact-section input[type="text"]:visited,
.contact-section input[type="email"]:visited,
.contact-section textarea:visited,
.contact-section select:visited {
    color: #ffffff !important;
    background: #000000 !important;
    border-color: #ffffff !important;
} 

/* ===== قسم التواصل الجديد ===== */

/* حاوية النموذج */
.contact-form-container {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(45, 27, 105, 0.8));
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

/* مجموعات الحقول */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

/* حقول الإدخال */
.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: #FF69B4;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
    transform: translateY(-2px);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* القائمة المنسدلة */
.contact-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF69B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1.5rem center;
    background-size: 16px;
    padding-left: 3rem;
}

.contact-select option {
    background: #000000;
    color: #ffffff;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.contact-select option:checked {
    background: #333333;
    color: #ffffff;
}

/* زر الإرسال */
.contact-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #8A2BE2, #FF69B4);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

/* حاوية معلومات التواصل */
.contact-info-container {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(45, 27, 105, 0.8));
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

/* بطاقات التواصل */
.contact-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
}

/* أيقونات التواصل */
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF69B4, #8A2BE2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.5);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* تفاصيل التواصل */
.contact-details {
    flex: 1;
}

.contact-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* قسم وسائل التواصل الاجتماعي */
.social-media-section {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.instagram {
    background: #000000;
    border: 2px solid #E4405F;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-link.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
    color: #ffffff;
}

/* تحسينات للأجهزة المحمولة */
@media (max-width: 768px) {
    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-left: 1rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}