/* Desktop contact form styles */
@media (min-width: 769px) {
    .contact-form {
        padding: 3rem;
        border-radius: 10px;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: var(--secondary-color);
        font-size: 1rem;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 4px;
        color: var(--text-light);
        font-size: 1rem;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        resize: vertical;
        min-height: 150px;
    }
    
    .btn-primary {
        background-color: var(--secondary-color);
        color: var(--bg-dark);
        border: none;
        padding: 1rem 2.5rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
        text-align: center;
    }
    
    .btn-primary:hover {
        background-color: #e6c555;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Focus styles */
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--secondary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    }
}
