/* ========================================
   Contact Us Section
   ======================================== */

.contact-us-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 40px;
}

.contact-intro {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5b9bd5;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e9ecef;
    border-radius: 3px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.contact-form select.form-control {
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #0066cc, #00d9ff);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: #5b9bd5;
    border-radius: 4px;
    padding: 40px;
    color: #ffffff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Subtle overlay */
.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 1;
}

.info-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Contact Info List */
.contact-info-list {
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Social Links */
.contact-social {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-us-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

