@import url('components.css');

:root {
    --light: #ffffff;
    --light-gray: #f8f9fa;
    --primary: #1b61e4;
    --primary-dark: #1557b0;
    --text: #202124;
    --text-light: #5f6368;
    --card-bg: #ffffff;
    --border: #dadce0;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



.header-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0) 70%);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

h1 {
    font-family: var(--basic_font_2);
    margin-bottom: 1.5rem;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.fdwwhkiu31 {
    padding-top: 30px;
}


.subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-sections {
    font-family: var(--basic_font_2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .contact-sections {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    font-family: var(--basic_font_2);
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.4rem;
    margin-top: 0px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--main_color);
    border-radius: 3px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--main_color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 17px;
    margin-bottom: -10px;
    font-weight: 700;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: -10px;
    font-weight: 800;
    margin-left: 20px;
}


.vbfdh {
    line-height: 1.2;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--main_color);
}

.working-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.hours-day {
    font-size: 16px;
    color: var(--text);
}

.hours-time {
    color: var(--main_color);
    font-weight: 500;
}

/* Форма обратной связи */
.contact-form {
    font-family: var(--basic_font_2);
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2.4rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

#label_feedback {
    display: block;
    color: var(--text);
}

#nname,
#eemail,
#pphone {
    font-size: 16px;
    width: 100%;
    border: 1px solid var(--border);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    color: var(--text);

    /* font-size: 18px; */
    transition: var(--transition);
}

textarea {
    width: 100%;

    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--main_color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: var(--main_color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background-color: var(--hover_main_color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Стили для карты местоположения */
.map-container {
    height: 400px;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--text-light);
    z-index: 1;
}

.map-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--main_color);
}

.ERIP {
    width: 50px;
    height: 20px;
}

.stock_img {
    float: left;
    width: 50%;
}

.wegrw2rh {
    line-height: 1.2;
    color: black;
    font-size: 1.2rem;

    margin-left: 20px;

}

.gfj43dfhj {
    font-size: 1rem;
    color: black;
    margin-top: 0px;
    margin-bottom: 20px;
    
}

.ggmbksn {
    font-size: 1rem;
    font-family: var(--basic_font_2);
    margin-top: -15px;
}



.certificate {
    width: auto;
}

@media (max-width: 830px) {
    .certificate {
        width: 100%;
    }
}



.faq-container {
    width: 100%;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    font-size: 2.2rem;
    color: var(--main_color);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: white;
    color: var(--main_color);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: rgb(240, 240, 240);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    font-size: 17px;
    display: none;
    padding: 0 25px;
    background-color: white;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin-bottom: 15px;
    font-size: 16px;
}

.faq-answer ul {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}













@media (max-width: 560px) {
    .stock_img {
        width: 100%;
        float:inherit;
    }
    .contact-item {
        display: block;
        align-items:flex-start;
    }
    .contact-info {
        border-radius: 8px;
        padding: 1rem;
}
}