/* CONTACT SECTION - OPTIMIZED */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.contact-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e2f;
    margin-bottom: 0.8rem;
}

.contact-header h2 span {
    color: #e67e22;
}

.contact-header p {
    font-size: 1rem;
    color: #7f8c6d;
    max-width: 550px;
    margin: 0 auto;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e6db;
}

/* Form Layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid #e8e0d5;
    border-radius: 16px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fefefe;
    color: #2c3e2f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: #7f8c6d;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #e67e22;
}

.form-checkbox a {
    color: #e67e22;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #e67e22;
    color: white;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    background: #cf711f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.25);
}

.btn-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    text-align: center;
    font-size: 0.7rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
}