.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px 60px;
}


@media (min-width: 768px) {
    .container {

        padding: 20px 40px;
    }
}

.breadcrumbs {
    font-size: 13px;
    padding: 90px 20px 20px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: black;
}

.breadcrumbs span {
    color: #999;
}

.breadcrumbs-razdelitel {
    margin: 0 5px;
}

@media (min-width: 768px) {
    .breadcrumbs {
        font-size: 15px;
        max-width: 1480px;
        margin: auto;
        padding: 120px 40px 0 40px;
    }
}

/* --- CONTACT & MAP SECTION --- */
.contact-map-section {
    padding: 40px 0 0;
    background: #fff;
}

.contact-map-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.contact-icon-box svg {
    width: 35px;
    height: 35px;
}


.contact-text span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    margin: 0;
}

.map-container {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 992px) {
    .contact-map-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .contact-map-section {
        padding: 80px 0 80px;
    }

    .contact-info-block {
        width: 55%;
    }

    .map-container {
        width: 45%;
        height: 500px;
    }
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--dark);
    margin-bottom: 15px;
}

.service-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 10px;
    color: #404040;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #404040;
    background: transparent;
    font-size: 16px;
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;

    transition:
            transform 420ms cubic-bezier(.2,.8,.2,1),
            box-shadow 420ms cubic-bezier(.2,.8,.2,1),
            border-color 420ms cubic-bezier(.2,.8,.2,1);
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: 60px 20px;
    background: var(--light);
}

.cta-wrapper {
    max-width: 1480px;
    margin: 0 auto;
}

.cta-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-text{
    display:flex;
    flex-direction:column;
    text-align:left;
}

.cta-contact {
    margin-top: auto;
    padding-top: 40px;
}

.cta-text h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 15px;
    color: var(--dark);
}

.cta-text p {
    line-height: 1.6;
    color: var(--text);
    max-width: 520px;
}

.cta-container {
    background: #E5E5E5;
    border-radius: 10px;
    padding: 40px 20px;
    color: #404040;
    overflow: hidden;
}

.cta-form { width: 100%; }

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.field label {
    font-weight: 700;
    font-size: 14px;
    opacity: 0.95;
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #404040;
    background: var(--light);
    color: #404040;
    outline: none;
    transition: all .3s;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #404040;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--light);
    background: rgba(255, 255, 255, 0.16);
}

.cta-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: left;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}

.btn:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .cta-banner { padding: 80px 0; }

    .cta-wrapper {
        padding: 0 40px;
    }

    .cta-text{
        min-height:100%;
    }

    .cta-split {
        flex-direction: row;
        align-items: stretch;
        gap: 40px;
    }

    .cta-text,
    .cta-container {
        width: 50%;
    }

    .cta-container {
        padding: 60px 40px;
    }

    .cta-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .cta-btns {
        justify-content: flex-start;
    }
}

.cta-features {
    margin-top: 25px;
    display: grid;
    gap: 20px;
}

.cta-feature {
    display: flex;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.cta-feature span {
    color: #404040;
}

.cta-trust {
    margin-top: 40px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.field input,
.field textarea,
.field input:focus,
.field textarea:focus,
.field input:-webkit-autofill,
.field textarea:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field textarea:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill:focus,
.field input:autofill,
.field textarea:autofill {
    background: var(--light);
    color: var(--dark);
    -webkit-text-fill-color: var(--dark);
    border: 1px solid #404040;
    box-shadow: 0 0 0 1000px var(--light) inset;
    outline: none;
}

.service-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e31e24;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 520ms cubic-bezier(.2,.8,.2,1);

    z-index: -1;
}

.service-link:hover::before {
    transform: scaleX(1);
}

.service-link:hover {
    border-color: #e31e24;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    transform: translateY(-1px);
    color: #fff;
}

.service-link:focus-visible {
    outline: none;
    box-shadow:
            0 0 0 3px rgba(227,30,36,.35),
            0 12px 30px rgba(0,0,0,.35);
}
