/* Form Stilleri */
.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating label {
    background: transparent !important;
    color: #9e9e9e;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-floating .form-control {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    padding: 1.5rem 1rem 0.5rem;
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(227, 28, 37, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(227, 28, 37, 0.15);
}

.form-floating textarea.form-control {
    min-height: 120px;
    padding-top: 2rem;
}

.form-floating select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239e9e9e' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.form-floating select.form-control option {
    background-color: #1a1a1a;
    color: #fff;
}

/* Placeholder stilleri */
.form-control::placeholder {
    color: transparent;
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Acil proje talebi alanları */
.urgent-fields {
    display: none;
    transition: all 0.3s ease;
}

/* Gönder butonu */
.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E31C25;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(227, 28, 37, 0.2);
    cursor: pointer;
}

.btn-send:hover {
    background: #c41920;
    box-shadow: 0 6px 20px rgba(227, 28, 37, 0.3);
    transform: translateY(-2px);
}

.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(227, 28, 37, 0.2);
}

.btn-send:disabled {
    background: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Animasyonlar */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 28, 37, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(227, 28, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 28, 37, 0);
    }
} 