/* Contact Section */
.contact-section {
    margin-top: 80px;
    padding: 80px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #1a2639;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa600);
    border-radius: 2px;
}

.contact-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    flex: 1.5;
    padding: 50px;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #1a2639, #2c3e50);
    color: white;
    padding: 50px;
    min-width: 280px;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* File Upload Area */
.file-upload-area {
    border: 3px dashed #cbd5e0;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.file-upload-area .upload-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.file-upload-area p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 10px;
}

.file-upload-area p span {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.file-types {
    font-size: 0.9rem !important;
    color: #718096 !important;
    margin-bottom: 20px !important;
}

.browse-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-btn:hover {
    background: #e85a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* File List */
.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
}

.file-item .file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-item .file-icon {
    font-size: 1.5rem;
}

.file-item .file-name {
    font-weight: 500;
    color: #2d3748;
}

.file-item .file-size {
    color: #718096;
    font-size: 0.85rem;
}

.file-item .remove-file {
    color: #e53e3e;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.file-item .remove-file:hover {
    background: #fff5f5;
}

.file-note {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 10px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Contact Info Styles */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ff6b35;
}

.info-item p {
    line-height: 1.6;
    color: #cbd5e0;
    font-size: 0.95rem;
}

.response-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #ff6b35;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.response-badge span {
    font-size: 2.5rem;
}

.response-badge strong {
    font-size: 1.2rem;
    color: #ff6b35;
    display: block;
    margin-bottom: 5px;
}

.response-badge p {
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-section {
        padding: 50px 5%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
}

.file-upload-area{
border:2px dashed #ff6b35;
padding:40px;
text-align:center;
border-radius:8px;
cursor:pointer;
transition:0.2s;
}

.file-upload-area.dragover{
background:#fff2eb;
}

.file-list{
margin-top:15px;
}

.file-item{
display:flex;
justify-content:space-between;
background:#f4f4f4;
padding:10px;
margin-top:8px;
border-radius:5px;
}

.remove-file{
cursor:pointer;
color:red;
font-weight:bold;
}

.success-box{
text-align:center;
padding:40px;
}

.success-box button{
margin-top:20px;
padding:10px 20px;
background:#ff6b35;
border:none;
color:white;
cursor:pointer;
border-radius:4px;
}