/* Põhikonteiner */
.waq-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    font-family: "Darker Grotesque", sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Küsimused */
.waq-question h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Valikute konteiner */
.waq-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Valikute nupud */
.waq-option {
    width: 100%;
    padding: 1.25rem;
    background: #E76F51;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    color: white;
    line-height: 1.4;
    text-transform: none;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    text-transform: none !important;
    font-family: "Darker Grotesque", sans-serif;
}

.waq-option button {
    text-transform: none !important;
}

.waq-option:hover {
    background: white;
    color: black;
    border: 1px solid black;
    transform: translateY(-2px);
}

.waq-option:active {
    transform: translateY(0);
}

.waq-option.selected {
    background: #D04F31;
    color: white;
    border: none;
}

/* E-maili vorm */
.waq-email-form {
    margin-top: 2rem;
}

.waq-email-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
}

#waq-email,
.waq-textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: border-color 0.2s ease;
}

#waq-email:focus,
.waq-textarea:focus {
    outline: none;
    border-color: #E76F51;
}

.waq-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Alusta nupp */
#waq-submit {
    width: 100%;
    padding: 1rem;
    background: #E76F51;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: none;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#waq-submit:hover {
    background: #E05F41;
}

#waq-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Tulemuste ala */
.waq-results {
    text-align: center;
    padding: 2rem;
}

.waq-results h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.waq-results p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Broneerimise nupp */
.waq-book-call {
    width: 100%;
    padding: 1rem 2rem;
    background: #058A6A;
    color: white !important;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    text-transform: none !important;
    margin-top: 2rem;
    transition: background 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waq-book-call:hover {
    background: #047859;
    color: white !important;
    text-decoration: none;
}

/* Veateated */
.waq-error {
    color: #E76F51;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Animatsioonid */
.waq-question {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobiilivaade */
@media (max-width: 768px) {
    .waq-container {
        margin: 10px;
        padding: 10px;
    }
    
    .waq-question h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* Ülekirjutamine suurtähtede jaoks */
.waq-option,
.waq-option *,
.waq-book-call,
.waq-book-call *,
#waq-submit,
#waq-submit * {
    text-transform: none !important;
}
/* Veebilehe aadressi sisestuskast */
.waq-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: border-color 0.2s ease;
}

.waq-input:focus {
    outline: none;
    border-color: #E76F51;
}