.contact-toggle-wrapper {
    margin: 60px auto 40px;
    max-width: 500px;
}

.toggle-question {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.toggle-label {
    font-size: 24px;
    font-weight: 600;
    color: #f5f5f7;
    min-width: 60px;
    transition: all 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 40px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    left: 3px;
    bottom: 3px;
    background: linear-gradient(135deg, #666, #888);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #28a745, #34d058);
    border-color: #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

input:checked + .toggle-slider:before {
    transform: translateX(40px);
    background: linear-gradient(135deg, #fff, #f0f0f0);
}

.toggle-switch:hover .toggle-slider {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.contact-form-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 0;
}

.contact-form-wrapper.active {
    max-height: 1500px;
    opacity: 1;
    margin-top: 60px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #f5f5f7;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f5f5f7;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 18px;
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-form .cta-button:hover::before {
    left: 100%;
}

.contact-form .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .toggle-question {
        font-size: 24px;
    }
}