/**
 * Tech Repair Quick Order Page Styles
 */

/* u041eu0441u043du043eu0432u043du044bu0435 u0441u0442u0438u043bu0438 u0441u0442u0440u0430u043du0438u0446u044b */
.tech-repair-quick-order-page {
    padding: 50px 0;
}

.tech-repair-quick-order-page .page-header {
    margin-bottom: 30px;
    text-align: center;
}

.tech-repair-quick-order-page .entry-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.tech-repair-quick-order-section {
    margin: 40px 0;
}

/* u0412u0432u043eu0434u043du044bu0439 u0442u0435u043au0441u0442 */
.tech-repair-quick-order-intro {
    text-align: center;
    margin-bottom: 30px;
}

.tech-repair-quick-order-intro h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2271b1;
}

.tech-repair-quick-order-intro p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* u041au043du043eu043fu043au0430 u0437u0430u043au0430u0437u0430 */
.tech-repair-quick-order-button-container {
    text-align: center;
    margin: 30px 0 50px;
}

.tech-repair-quick-order-button-container .tech-repair-form-button.primary-button {
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #2271b1;
    box-shadow: 0 4px 10px rgba(34, 113, 177, 0.2);
    transition: all 0.3s ease;
}

.tech-repair-quick-order-button-container .tech-repair-form-button.primary-button:hover {
    background-color: #135e96;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(34, 113, 177, 0.3);
}

/* u041fu0440u0435u0438u043cu0443u0449u0435u0441u0442u0432u0430 */
.tech-repair-quick-order-benefits {
    margin: 50px 0;
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.tech-repair-quick-order-benefits h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.tech-repair-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.tech-repair-benefit-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-repair-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-repair-benefit-icon {
    margin-bottom: 15px;
}

.tech-repair-benefit-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #2271b1;
}

.tech-repair-benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.tech-repair-benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* u041fu0440u043eu0446u0435u0441u0441 u0440u0430u0431u043eu0442u044b */
.tech-repair-quick-order-process {
    margin: 50px 0;
}

.tech-repair-quick-order-process h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.tech-repair-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.tech-repair-process-step {
    position: relative;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.tech-repair-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-repair-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2271b1;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.tech-repair-process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.tech-repair-process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* u0410u0434u0430u043fu0442u0438u0432u043du044bu0435 u0441u0442u0438u043bu0438 */
@media screen and (max-width: 768px) {
    .tech-repair-benefits-grid,
    .tech-repair-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-repair-quick-order-page .entry-title {
        font-size: 28px;
    }
    
    .tech-repair-quick-order-intro h2 {
        font-size: 24px;
    }
    
    .tech-repair-quick-order-intro p {
        font-size: 16px;
    }
}
