body {
    font-family: 'Inter', sans-serif;
}
.sws-contact-form {
    width: 100%;
}

.sws-contact-form p {
    margin: 0;
}

.sws-form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .sws-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sws-form-field {
    display: block;
    margin-bottom: 1.25rem;
}

.sws-form-field span {
    display: block;
    margin-bottom: 0.5rem;
    color: #e5e5e5;
    font-size: 0.875rem;
    font-weight: 500;
}

.sws-input,
.sws-textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.sws-input::placeholder,
.sws-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.sws-input:focus,
.sws-textarea:focus {
    border-color: #d5b15b;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(213, 177, 91, 0.15);
}

.sws-textarea {
    min-height: 140px;
    resize: vertical;
}

.sws-contact-form select.sws-input {
    appearance: none;
    cursor: pointer;
}

.sws-privacy {
    margin-bottom: 1.5rem;
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.6;
}

.sws-privacy .wpcf7-list-item {
    margin: 0;
}

.sws-privacy input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #d5b15b;
}

.sws-submit-wrap {
    margin-top: 0.5rem;
}

.sws-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #d5b15b;
    color: #111111;
    padding: 1rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sws-submit:hover {
    background: #e6c675;
    transform: translateY(-1px);
}

.wpcf7-not-valid-tip {
    margin-top: 0.5rem;
    color: #fca5a5;
    font-size: 0.875rem;
}

.wpcf7-response-output {
    margin: 1.5rem 0 0;
    border-radius: 1rem;
    padding: 1rem;
    color: #ffffff;
}