/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    background-image: url('../../img/1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.05;
    z-index: 0;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-right: 30px;
}

.contact-label {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-title .text-primary {
    color: #333 !important;
}

.contact-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.unit-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: white;
    font-size: 18px;
}

.contact-details h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.form-title .text-primary {
    color: #333 !important;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    height: auto;
}

.contact-form .form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    background-color: white;
}

.contact-form .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon i {
        font-size: 16px;
    }
}