/* ==============================================
   1. الإعدادات الأساسية (RTL Master)
   ============================================== */
.premium-contact-page {
    background-color: #fbfbfb;
    padding: 90px 0;
    direction: rtl;
    text-align: right;
    overflow: hidden;
}

.premium-contact-page .fas, .premium-contact-page .fa, .page-header .fas {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}


/* تنسيق مسار الصفحة (Breadcrumb) المطور */
.thm-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; padding: 0; position: relative; z-index: 3; }
.thm-breadcrumb li { color: #ffffff; font-weight: 600; font-size: 18px; }
.thm-breadcrumb li a { color: #ffffff; transition: 0.3s; text-decoration: none; }
.thm-breadcrumb li a:hover { color: var(--primary-color); }
.thm-breadcrumb li:last-child { color: var(--primary-color) !important; font-weight: 900; font-size: 20px; }
.thm-breadcrumb li .fa-headset { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin: 0 8px; }

/* ==============================================
   🌟 3. البادج والتايتل في جسم الصفحة (أنيميشن) 🌟
   ============================================== */
.premium-sec-top { margin-bottom: 50px; position: relative; z-index: 2; text-align: center; }
.premium-badge { display: inline-flex; align-items: center; background: rgba(var(--primary-rgb), 0.1); color: var(--primary-color); padding: 8px 25px; border-radius: 30px; font-weight: 800; font-size: 14px; margin-bottom: 15px; border: 1px solid rgba(var(--primary-rgb), 0.2); }
.body-title-animated { color: var(--primary-color) !important; font-size: 32px; font-weight: 900; margin: 0 auto; display: block; position: relative; animation: softPulse 3s infinite 1.5s; }
@keyframes softPulse { 0% { text-shadow: 0 0 0px rgba(var(--primary-rgb), 0); } 50% { text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4); } 100% { text-shadow: 0 0 0px rgba(var(--primary-rgb), 0); } }

/* ==============================================
   🌟 4. كروت التواصل الذكية (Smart Accordion) 🌟
   ============================================== */
.contact-card-v3 {
    background: #fff; border-radius: 20px; padding: 35px 25px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; border: 1px solid rgba(0,0,0,0.02); margin-bottom: 30px; overflow: hidden;
}
.contact-card-v3:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.15); border-color: var(--primary-color); }

.card-icon-circle {
    width: 75px; height: 75px; background: rgba(var(--primary-rgb), 0.1); color: var(--primary-color);
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    font-size: 30px; margin-bottom: 20px; transition: 0.5s;
}
.contact-card-v3:hover .card-icon-circle { background: var(--primary-color); color: #fff; transform: rotateY(360deg); }

.contact-card-v3 h4 { font-size: 20px; font-weight: 800; color: #1a1a1a; margin-bottom: 15px; }

.expandable-info { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s ease; }
.contact-card-v3.active .expandable-info { max-height: 200px; opacity: 1; margin-top: 20px; }
.info-text { font-size: 17px; font-weight: 700; color: #555; word-break: break-word; }

.toggle-info-btn {
    background: #f8f9fa; border: none; width: 40px; height: 40px; border-radius: 50%;
    color: var(--primary-color); cursor: pointer; transition: 0.3s;
    display: inline-flex; align-items: center; justify-content: center;
}
.contact-card-v3.active .toggle-info-btn { background: var(--primary-color); color: #fff; transform: rotate(45deg); }

/* ==============================================
   🌟 5. البلوكات وزر الإرسال (إصلاح الهوفر) 🌟
   ============================================== */
.premium-form-box { background: #fff; border-radius: 25px; padding: 45px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.01); }
.form-control-v3 { width: 100%; background: #f9f9f9; border: 1px solid #eee; border-radius: 12px; padding: 15px 20px; margin-bottom: 20px; transition: 0.3s; font-size: 15px; }
.form-control-v3:focus { border-color: var(--primary-color); background: #fff; outline: none; }

.premium-submit-btn {
    background: var(--primary-color); color: #ffffff !important; border: none; padding: 18px 45px;
    border-radius: 12px; font-weight: 800; display: inline-flex; align-items: center; gap: 15px;
    cursor: pointer; transition: all 0.4s ease;
}
/* 🌟 إصلاح اختفاء الكلام في الهوفر 🌟 */
.premium-submit-btn:hover {
    background: var(--secondary-color);
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.premium-submit-btn i { transition: 0.4s; }
.premium-submit-btn:hover i { transform: translateX(-8px) scale(1.2); }

.map-container-v3 { border-radius: 25px; overflow: hidden; height: 100%; min-height: 550px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #eee; }