/* Contact Form Specific Styles */

.input-wrapper select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(249, 250, 251, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    color: #374151;
}

.input-wrapper select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrapper select option {
    background: white;
    color: #374151;
    padding: 0.5rem;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper i {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #9ca3af;
    font-size: 1rem;
    z-index: 1;
}

.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(249, 250, 251, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.5;
}

.input-wrapper textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrapper textarea::placeholder {
    color: #9ca3af;
    line-height: 1.5;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #166534;
    font-size: 0.9rem;
}

.success-message i {
    font-size: 1.1rem;
    color: #16a34a;
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .input-wrapper textarea {
        min-height: 100px;
    }
    
    .textarea-wrapper i {
        top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    }
    
    .textarea-wrapper i {
        left: 0.75rem;
        top: 0.75rem;
    }
}