
/* ==========================================
   CONTACT FORM STYLES
   ========================================== */

.contact-section {
    background: transparent;
}

/* Custom Select Styling */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.25rem;
}

/* Glass Card Shadowing */
.glass-card-large {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.02);
}

/* Input Focus Glow */
.form-group input:focus, 
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Submit Loading State */
#submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

#submit-btn.loading span {
    opacity: 0;
}

#submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message States */
#success-message.visible {
    opacity: 1;
    visibility: visible;
}

/* Floating Label Animation Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .glass-card-large {
        border-radius: 2rem;
    }
}
