/* صفحة طلب عرض السعر */
.quote-request-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.quote-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    border: 1px solid #f0f0f0;
}

.section-title {
    font-size: 32px;
    color: #205781;
    margin-bottom: 16px;
    font-weight: 800;
    text-align: center;
}

.section-description {
    color: #6c757d;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.form-section-title {
    font-size: 20px;
    color: #205781;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title::before {
    content: "";
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #205781 0%, #25d366 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all .3s ease;
    cursor: pointer;
}

.service-checkbox:hover {
    border-color: #205781;
    background: #f8f9fa;
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #205781;
}

.service-checkbox label {
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    margin: 0;
}

/* الشريط الجانبي */
.sidebar {
    position: sticky;
    top: 20px;
}

.contact-info-card,
.benefits-card,
.products-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
}

.card-title {
    font-size: 18px;
    color: #205781;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-title::before {
    content: "";
    width: 3px;
    height: 18px;
    background: #205781;
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all .3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(-5px);
}

.contact-item em {
    font-size: 20px;
    color: #205781;
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #205781;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.4;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all .3s ease;
}

.benefits-list li:hover {
    background: #e9ecef;
    transform: translateX(-3px);
}

.benefits-list em {
    color: #28a745;
    font-size: 16px;
}

.benefits-list span {
    color: #495057;
    font-weight: 500;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    transition: all .3s ease;
    border: 1px solid transparent;
}

.product-link:hover {
    background: #e9ecef;
    color: #205781;
    border-color: #205781;
    transform: translateX(-5px);
}

.product-link em {
    font-size: 18px;
    color: #205781;
}

.product-link span {
    font-weight: 500;
}

/* تحسينات للنموذج */
.form-control:focus {
    border-color: #205781;
    box-shadow: 0 0 0 4px rgba(32,87,129,.1);
}

.form-select:focus {
    border-color: #205781;
    box-shadow: 0 0 0 4px rgba(32,87,129,.1);
}

/* تحسينات للأزرار */
.btn-primary {
    background: linear-gradient(135deg, #205781 0%, #25d366 100%);
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #25d366 0%, #205781 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(32,87,129,.4);
}

/* تحسينات للتنبيهات */
.alert {
    border-radius: 12px;
    border: 2px solid transparent;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #28a745;
}

/* تحسينات للبانر */
.page-banner {
    background: linear-gradient(135deg, #205781 0%, #25d366 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}

.banner-description {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.feature em {
    font-size: 20px;
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .quote-request-section {
        padding: 40px 0;
    }
    
    .quote-form-container {
        padding: 25px;
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .form-section-title {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .banner-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .contact-info-card,
    .benefits-card,
    .products-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quote-form-container {
        padding: 20px;
        margin: 0 5px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 14px;
    }
}
