/* === form-price.css — форма отримання прайсу / вступу до клубу === */

.get-price-section {
    background-color: #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.get-price-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.get-price-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.get-price-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 0;
    width: 100%;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.form-row.center {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.get-price-form .form-row.center button.btn-primary {
    width: 300px;
    display: inline-block;
    margin: 0 auto;
}

/* --- Поля в один рядок для ПК --- */
.get-price-form .form-row.triple {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.get-price-form .form-row.triple input {
    flex: 1;
    max-width: none;
    min-width: 0;
}

/* --- Інші варіанти рядків --- */
.form-row.double {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    width: 100%;
}

.form-row.double input {
    max-width: 320px;
    width: 100%;
}

.form-row.triple input {
    max-width: 300px;
    width: 100%;
}

/* --- Стилі полів --- */
.get-price-form input[type="email"],
.get-price-form input[type="tel"],
.get-price-form input[type="text"],
.get-price-form textarea {
    padding: 16px 20px;
    font-size: 16px;
    border: 1px solid #aaa;
    border-radius: 6px;
    width: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    box-sizing: border-box;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.get-price-form input[type="email"]:focus,
.get-price-form input[type="tel"]:focus,
.get-price-form input[type="text"]:focus,
.get-price-form textarea:focus {
    outline: none;
    border-color: #f26522;
    box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.2);
    transform: translateY(-1px);
}

.get-price-form input::placeholder,
.get-price-form textarea::placeholder {
    color: #666;
    opacity: 0.8;
}

.get-price-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .get-price-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .get-price-section h2 {
        font-size: 24px;
    }
    
    .get-price-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .form-row {
        max-width: 100%;
    }
    
    .get-price-form .form-row.triple {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .form-row.double {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .get-price-form .form-row.center button.btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .get-price-form input[type="email"],
    .get-price-form input[type="tel"],
    .get-price-form input[type="text"],
    .get-price-form textarea {
        padding: 14px 16px;
    }
}