/* SIMA Designs Custom Styles */

/* Adjust slider text positioning to show people's heads in background */
.slider .slider-info-text {
    margin-top: 100px;
}

/* Additional custom styles for SIMA branding */
.slider .info-inner h1 {
    color: #333;
    font-weight: bold;
}

.slider .info-inner span {
    color: #666;
    font-size: 16px;
}

/* Ensure proper spacing and layout */
.slider.ptb-200 {
    padding-top: 120px;
    padding-bottom: 180px;
}

/* Product View Page Styles */
.product-details {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-details li:last-child {
    border-bottom: none;
}

.product-details i {
    color: #007bff;
    margin-right: 10px;
    width: 20px;
}

.product-details span {
    font-weight: bold;
    margin-right: 10px;
}

.product-features h3 {
    margin-bottom: 30px;
    color: #333;
}

.feature-item {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #28a745;
}

.feature-item i {
    margin-right: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info h4 {
    color: #333;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 30px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 48px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* Quote Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #f8f9fa;
    color: #333;
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-header .btn-close {
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
}

.product-thumbnail {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.product-thumbnail img {
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-thumbnail h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-label i {
    color: #007bff;
    width: 16px;
    margin-right: 8px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

/* Country select dropdown specific styling */
#customerCountry {
    font-size: 14px;
}

#customerCountry option {
    font-size: 14px;
    padding: 8px;
}

/* Contact Page Styling */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.contact-title {
    color: #333;
    font-weight: 600;
    font-size: 28px;
}

.contact-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-wrapper {
    padding-left: 20px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.contact-info-title {
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-item i {
    margin-top: 2px;
    font-size: 16px;
}

.contact-info-item div {
    flex: 1;
}

.map-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-container {
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Service Page Styling */
.service-area.gray-bg {
    background-color: #fafafa !important;
}

.service-area .single-service {
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-area .single-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 15px 15px;
}

.modal-footer .btn {
    padding: 10px 25px;
    font-weight: 500;
}

.text-danger {
    color: #dc3545 !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .product-thumbnail {
        margin-bottom: 20px;
    }
}
