/* (كل الأكواد القديمة زي ما هي) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #1B263B;
    color: white;
    position: relative; 
    z-index: 10;
}
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}
.search-wrapper {
    position: relative;
    flex-grow: 1;
    margin: 0 20px;
}
.search-bar {
    display: flex;
    width: 100%;
}
.search-bar input[type="text"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}
.search-button {
    background-color: #E0A800;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    color: #111;
}
.search-button:hover { background-color: #C79500; }
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
}
.cart-icon { font-size: 20px; }
.header-bottom {
    background-color: #1B263B;
    padding: 0 10px;
    display: flex;
    gap: 2px;
    overflow-x: auto;
    border-top: 1px solid #3a4a5c;
}
.header-bottom a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    padding: 10px 15px;
    border: 2px solid transparent;
    transition: border 0.2s ease-in-out;
}
.header-bottom a:hover {
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
}
.hero {
    position: relative;
    overflow: hidden;
    height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/AV\ hub\ Logo\ Package-02.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.05); 
}
.hero-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    border-radius: 8px;
}
.hero-content h1 { font-size: 42px; margin-bottom: 10px; }
.hero-content p { font-size: 20px; margin-bottom: 25px; }
.hero-btn {
    background-color: #E0A800;
    color: #111;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
}
.hero-btn:hover { background-color: #C79500; }
main { padding: 20px; }
h2 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}
.product-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.product-card h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 10px;
}
.product-card .price {
    font-size: 17px;
    color: #1B263B;
    font-weight: bold;
    margin-bottom: 15px;
}
.product-card .add-to-cart-btn {
    display: inline-block;
    background-color: #E0A800;
    border: 1px solid #C79500;
    color: #111;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 20px;
}
.product-card .add-to-cart-btn:hover { background-color: #C79500; }
footer {
    background-color: #1B263B;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
.lang-switch {
    background-color: #E0A800;
    color: #111;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}
.lang-switch:hover {
    background-color: #C79500;
    color: #111;
    text-decoration: none;
}
.product-page-main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.breadcrumbs a { text-decoration: none; color: #007bff; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: #555; }
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    gap: 30px;
}
.product-image-gallery {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.product-image-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.product-info-details {
    flex: 1;
    min-width: 300px;
}
.product-info-details h1 {
    font-size: 32px;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}
.product-brief-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-price-box {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 24px;
}
.price-label {
    font-weight: normal;
    color: #666;
    font-size: 18px;
}
.price-value {
    font-weight: bold;
    color: #1B263B;
    margin-right: 10px;
}
.request-quote-btn {
    display: block;
    background-color: #E0A800;
    color: #111;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #C79500;
    transition: background-color 0.3s;
    margin-bottom: 25px;
}
.request-quote-btn:hover { background-color: #C79500; }
.quick-specs {
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.quick-specs h3 { font-size: 18px; margin-bottom: 10px; }
.quick-specs ul { list-style: none; padding: 0; margin: 0; }
.quick-specs li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}
.spec-label {
    font-weight: bold;
    min-width: 80px;
    display: inline-block;
}
.product-full-details {
    border-top: 1px solid #eee;
    padding: 30px 0;
}
.product-full-details h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}
.product-full-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
}
.specs-table th, .specs-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: right;
}
.specs-table th {
    background-color: #f7f7f7;
    width: 30%;
}
.specs-table tr:nth-child(even) { background-color: #fcfcfc; }
.related-products {
    background-color: #f9f9f9;
    padding-bottom: 30px;
    border-top: 2px solid #eee;
    margin-top: 30px; 
}
.related-products h2 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    padding-top: 20px;
}
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.carousel-container {
    width: 100%;
    overflow: hidden;
}
.carousel-container .product-grid {
    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0); 
    transition: transform 0.5s ease-in-out; 
    grid-template-columns: none; 
}
.carousel-container .product-card {
    flex: 0 0 25%;
    max-width: 25%;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.3s;
}
.carousel-btn:hover { background-color: white; }
.carousel-btn.prev {
    right: -15px; 
    left: auto;
}
.carousel-btn.next {
    left: -15px; 
    right: auto;
}
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.search-wrapper {
    position: relative;
    flex-grow: 1;
    margin: 0 20px;
}
.search-results-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 100;
    max-height: 450px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background-color: #f8f8f8; }
.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
}
.search-result-item .result-info {
    display: flex;
    flex-direction: column;
}
.search-result-item .result-info span {
    font-size: 16px;
    font-weight: bold;
}
.search-result-item .result-info small {
    font-size: 13px;
    color: #555;
}
.search-no-results {
    padding: 15px;
    text-align: center;
    color: #777;
}
[dir="rtl"] .search-result-item { text-align: right; }
[dir="rtl"] .search-result-item img {
    margin-left: 10px;
    margin-right: 0;
}
.static-page-main {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.static-page-main h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}
.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.contact-form {
    flex: 2;
    min-width: 300px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
.form-group textarea { resize: vertical; }
.submit-btn {
    display: inline-block;
    background-color: #E0A800;
    color: #111;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #C79500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn:hover { background-color: #C79500; }
.contact-info {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.contact-info h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #E0A800;
    padding-bottom: 10px;
}
.contact-info h4 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
.contact-info p strong { color: #111; }
.contact-info a {
    color: #007bff;
    text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }
[dir="ltr"] .form-group label { text-align: left; }
[dir="ltr"] .contact-info { text-align: left; }
[dir="ltr"] .contact-info h3 { text-align: left; }
.about-content .content-block {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.about-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1B263B;
    border-bottom: none;
    border-right: 4px solid #E0A800;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}
[dir="ltr"] .about-content h3 {
    border-right: none;
    border-left: 4px solid #E0A800;
    padding-right: 0;
    padding-left: 15px;
}
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}
.about-content ul {
    list-style-type: none; 
    padding-right: 0; 
}
[dir="ltr"] .about-content ul {
    list-style-type: none;
    padding-left: 0;
}
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.feature-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.07);
}
.feature-card .icon {
    font-size: 40px;
    color: #E0A800;
    margin-bottom: 15px;
}
.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1B263B;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.partners-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
}
.partners-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
    gap: 25px;
    align-items: center;
}
.partner-logo {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.partner-logo:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.partner-logo img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
  === 13. (جديد) تنسيق قائمة الموبايل ===
  ==========================================
*/

/* (1) الزرار (☰) اللي في الهيدر */
.mobile-menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: white;
    font-size: 24px; /* (صغرناها سيكا) */
    cursor: pointer;
    margin-left: 15px;
    padding: 0; /* (جديد) */
}

/* (2) القائمة الجانبية نفسها (الكونتينر) */
.mobile-nav-container {
    position: fixed;
    top: 0;
    right: -300px; /* (ابدأ بره الشاشة يمين) */
    width: 280px;
    height: 100vh;
    background-color: #1B263B; /* (نفس لون الهيدر) */
    z-index: 1001;
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

/* (لصفحات الإنجليزي LTR) */
[dir="ltr"] .mobile-nav-container {
    right: auto;
    left: -300px; /* (ابدأ بره الشاشة شمال) */
    transition: left 0.4s ease-in-out;
}

/* (الحالة لما القائمة تفتح) */
.mobile-nav-container.open {
    right: 0;
}
[dir="ltr"] .mobile-nav-container.open {
    left: 0;
}

/* (3) هيدر القائمة الجانبية (اللوجو وزرار الإغلاق) */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #3a4a5c;
}
.mobile-logo {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}
.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 26px; /* (صغرناها سيكا) */
    cursor: pointer;
    padding: 0 5px; /* (جديد) */
}

/* (4) محتوى القائمة (البحث واللينكات) */
.mobile-nav-content {
    overflow-y: auto;
    padding: 15px;
}
.search-wrapper-mobile {
    position: relative;
    margin-bottom: 15px;
}
/* (استخدام نفس تنسيقات البحث العادية) */
.search-wrapper-mobile .search-bar {
    width: 100%;
}
.search-wrapper-mobile .search-results-box {
    /* (بنعدل مكان الظهور عشان يبقى جوه القائمة) */
    position: static;
    max-height: 250px;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid #ddd;
}

/* (5) لينكات الموبايل (مرصوصة تحت بعض) */
.mobile-links {
    display: flex;
    flex-direction: column;
}
.mobile-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #3a4a5c;
}
.mobile-links a:last-child {
    border-bottom: none;
}
.mobile-links .lang-switch {
    margin-top: 10px;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}
.mobile-links hr {
    border: none;
    border-top: 1px solid #3a4a5c;
    margin: 10px 0;
}

/* (6) غطاء الخلفية (الأوفرلاي) */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.overlay.open {
    display: block;
}


/* ==========================================
  === 14. (جديد) كود الميديا (Responsive) ===
  ==========================================
*/
@media (max-width: 900px) { /* (رقم 900 ده ممكن نغيره) */

    /* (1) اخفي اللينكات العادية والبحث من الهيدر */
    .header-top .nav-links,
    .header-top .search-wrapper,
    .header-bottom {
        display: none;
    }

    /* (2) اظهر زرار الموبايل (☰) */
    .mobile-menu-toggle {
        display: block;
    }

    /* (3) خلي اللوجو ياخد المساحة الباقية */
    .header-top {
        justify-content: space-between;
    }
    
    /* (تعديل السلايدر في الموبايل) */
    .carousel-container .product-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .carousel-btn.prev { right: 5px; }
    .carousel-btn.next { left: 5px; }
    
    /* (تعديل صفحة اتصل بنا في الموبايل) */
    .contact-container {
        flex-direction: column;
    }
}

/* (تعديلات بسيطة للموبايلات الصغيرة أوي) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .product-grid {
        /* (خلي المنتجات كارت واحد في الشاشة) */
        grid-template-columns: 1fr;
    }
}
/* ==========================================
  === 15. (جديد) تنسيق اللينك النشط ===
  ==========================================
*/
.header-bottom a.active-link,
.mobile-links a.active-link {
    color: #E0A800; /* (اللون الذهبي) */
    
    /* (لمسة احترافية: نخليه ينور أكتر) */
    text-shadow: 0 0 5px rgba(224, 168, 0, 0.5);
    
    /* (عشان يغلب أي ستايل تاني) */
    border-color: #E0A800 !important; 
}

/* (تعديل بسيط للـ hover عشان ميبقاش أبيض) */
.header-bottom a.active-link:hover {
    border-color: #C79500 !important;
}
/* ==========================================
  === 16. (جديد) تنسيق صفحة "اطلب سعر" ===
  ==========================================
*/

.product-quote-info {
    /* (ده الكلاس اللي ضفناه في الـ HTML) */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 30px; /* (هيدي مساحة تحتيه) */
    flex: 1; /* (عشان ياخد نفس حجم الفورم) */
    min-width: 280px;
    text-align: center; /* (عشان نوسطن المحتوى) */
}
.product-quote-info h3 {
    margin-top: 0;
    font-size: 22px;
}

/* === 💡 (ده الكود اللي اتنقل من تحت لفوق) 💡 === */
.product-quote-info img {
    width: 100%;
    max-width: 250px; /* (عشان متكونش ضخمة) */
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: block; /* (عشان تظهر) */
    margin-left: auto;
    margin-right: auto;
}

/* (هناخد نفس كود الموبايل بتاع صفحة "اتصل بنا") */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    /* (خلاص مبقاش فيه حاجة هنا غير الكود ده) */
}
/* ==========================================
  === 17. (جديد) تنسيق صفحة "شكراً لك" ===
  ==========================================
*/
.thank-you-box {
    text-align: center;
    padding: 40px;
    margin-top: 20px;
}
.thank-you-box .icon-success {
    font-size: 80px;
    color: #28a745; /* (لون أخضر للنجاح) */
    margin-bottom: 20px;
}
.thank-you-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
}
.thank-you-box .page-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}
.thank-you-box .hero-btn {
    /* (إعادة استخدام نفس زرار الهيرو) */
    font-size: 16px;
    padding: 12px 25px;
}
/* ==========================================
  === 18. (جديد) تنسيق صفحة الدعم الفني ===
  ==========================================
*/

/* (1) الكونتينر الرئيسي (زي بتاع "اتصل بنا") */
.support-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* (2) عمود المعلومات (الأسئلة والضمان) */
.support-info {
    flex: 2; /* (هنخليه أعرض شوية) */
    min-width: 300px;
}

/* (3) عمود الفورم (هيستخدم "contact-form" القديم) */
.support-container .contact-form {
    flex: 1; /* (هنخليه أرفع شوية) */
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.support-container .contact-form h3 {
    margin-top: 0;
    text-align: center;
    border-bottom: 2px solid #E0A800;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.form-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

/* (4) تنسيق الأسئلة الشائعة (FAQ) */
.support-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1B263B;
    border-bottom: none;
    border-right: 4px solid #E0A800;
    padding-right: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}
[dir="ltr"] .support-info h3 {
    border-right: none;
    border-left: 4px solid #E0A800;
    padding-right: 0;
    padding-left: 15px;
}
.faq-list {
    margin-bottom: 30px;
}
.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}
.faq-item summary {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 12px 5px;
    position: relative; /* (عشان السهم) */
}
/* (سهم صغير جنب السؤال) */
.faq-item summary::before {
    content: '\f078'; /* (أيقونة السهم لتحت من Font Awesome) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 12px;
    transition: transform 0.2s;
}
[dir="rtl"] .faq-item summary::before {
    left: auto;
    right: 10px;
}
.faq-item[open] summary::before {
    transform: rotate(-180deg); /* (لف السهم لفوق) */
}
.faq-item div {
    padding: 15px;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}
.faq-item div p {
    margin: 0;
    line-height: 1.7;
}

/* (5) تنسيق لينكات التحميل */
.download-links {
    margin-bottom: 30px;
}
.download-btn {
    display: inline-block;
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    border: 1px solid #ddd;
    transition: background-color 0.2s;
}
.download-btn:hover {
    background-color: #e0e0e0;
}
.download-btn .fa-solid {
    margin-left: 8px;
}

/* (6) كود الموبايل (عشان يرصهم تحت بعض) */
@media (max-width: 900px) {
    .support-container {
        flex-direction: column-reverse; /* (عشان الفورم يبقى تحت) */
    }
}
/* ==========================================
  === (تصليح عاجل) لإصلاح الفورم ===
  ==========================================
*/

/* (1) الكونتينر الأساسي (بيحط الحاجتين جنب بعض) */
.contact-container {
    display: flex;
    flex-direction: row; /* (خليهم جنب بعض) */
    flex-wrap: wrap;
    gap: 40px;
}

/* (2) كارت المنتج (اللي على اليمين) */
.product-quote-info {
    flex: 1;
    min-width: 280px;
    /* (الكود القديم بتاعك شغال زي الفل) */
}

/* (3) الفورم نفسه (اللي على الشمال) */
.contact-form {
    flex: 2;
    min-width: 300px;
    display: block !important; /* (مهم: رجعه لوضعه الطبيعي) */
    background-color: transparent; /* (خليه شفاف زي ما كان) */
    padding: 0;
    border: none;
}

/* (4) كل حقل (لازم يبقوا تحت بعض) */
.form-group {
    margin-bottom: 20px;
    display: block; /* (خليه بلوك) */
    width: 100%; /* (خليه ياخد عرض الفورم كله) */
}

/* (5) الليبل (عنوان الحقل) */
.form-group label {
    display: block; /* (خليه فوق الإنبوت) */
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

/* (6) الحقول نفسها (الإنبوت) */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%; /* (ياخد 100% من عرض الفورم) */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* (مهم جداً) */
    background-color: white; /* (جديد: عشان نصلح الخلفية الشفافة) */
}

/* (7) زرار الإرسال */
.submit-btn {
    display: inline-block;
    background-color: #E0A800;
    color: #111;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #C79500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto !important; /* (مهم: عشان نصلح حجمه) */
    height: auto !important; /* (مهم: عشان نصلح حجمه) */
}
/* (سطر 1133) */ .submit-btn:hover { background-color: #C79500; }
/* (سطر 1134) */
/* ==========================================
  === 19. (جديد) تنسيق عداد الزيارات ===
  ==========================================
*/
.view-counter {
    background-color: #f0f8ff;
    color: #333;
    border: 1px solid #cce5ff;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.view-counter .fa-eye {
    margin-left: 8px;
    color: #007bff;
}
[dir="rtl"] .view-counter .fa-eye {
    margin-left: 0;
    margin-right: 8px;
}
/* ==========================================
   === style.css بعد تعديل السلايدر ===
   ========================================== */

/* (كل الأكواد القديمة زي ما هي) */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #1B263B;
    color: white;
    position: relative; 
    z-index: 10;
}

/* ... (كافة الأكواد القديمة كما هي بدون تغيير) ... */

/* ==========================================
   === Carousel tweaks ===
   ========================================== */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;  /* سكرول ناعم */
    scroll-behavior: smooth; /* حركة سلسة */
}

.carousel-container .product-grid {
    display: flex;
    flex-wrap: nowrap;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
    grid-template-columns: none;
}

.carousel-container .product-card {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 5px; /* مسافة بين البطاقات */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10; /* تأكد انه فوق */
    transition: background-color 0.3s;
}

.carousel-btn:hover { background-color: white; }
.carousel-btn.prev { right: -15px; left: auto; }
.carousel-btn.next { left: -15px; right: auto; }
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* إخفاء scrollbar */
.carousel-container::-webkit-scrollbar { display: none; }
.carousel-container { -ms-overflow-style: none; scrollbar-width: none; }

/* ==========================================
   === Responsive adjustments ===
   ========================================== */
@media (max-width: 900px) {
    .carousel-container .product-card {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .carousel-btn.prev { right: 10px; }
    .carousel-btn.next { left: 10px; }
    
    /* (بقية الميديا كود القديم) */
}

/* موبايل صغير */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
