
.ct-banner-wrap.banner-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ct-banner-bg.banner-container {
    background-image: url('/static/images/banner-6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 500px);
    min-height: 260px;
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ct-banner-bg.banner-container::after {
    display: none;
}


.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-container ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-container ul li {
    list-style: none;
    position: relative;
    padding-right: 15px;
}

.breadcrumb-container ul li::after{
    content: '/';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-container ul li:last-child::after{
    display: none;
}

.breadcrumb-container ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-container ul li a:hover{
    color: var(--primary-color);
}


.ct-banner-bg .banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 800px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(2px);
    padding: 28px 30px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    height: auto;
}

.ct-banner-bg .banner-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
}

.ct-banner-bg .breadcrumb-container ul {
    justify-content: flex-start;
}

.ct-banner-bg .banner-content p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 14px 0 0;
    line-height: 1.55;
    text-align: left;
}

.ct-page .company-section.ct-contact-block {
    padding: 40px 0;
}

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

.ct-map-heading {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8eef4;
}

.ct-map-heading .ct-map-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    margin: 8px 0 10px;
}

.ct-map-heading p {
    color: #495a6d;
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.ct-map-frame-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2ebf3;
    box-shadow: 0 2px 10px rgba(16, 44, 73, 0.08);
    background: #eef4f9;
}

.ct-map-frame-wrap iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
    vertical-align: top;
}

.ct-map-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ct-map-note {
    font-size: 13px;
    color: #5f7389;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .ct-banner-wrap.banner-section {
        padding-top: 0px;
        padding-bottom: 10px;
    }

    .ct-banner-bg.banner-container {
        height: 75vh;
        min-height: 320px;
        border-radius: 0;
    }

    .ct-banner-bg .banner-content {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: calc(100% - 28px);
        max-width: 36rem;
        padding: 20px 18px;
        box-sizing: border-box;
    }

    .ct-banner-bg .banner-content h2 {
        font-size: clamp(26px, 5vw, 34px);
    }

    .ct-banner-bg .banner-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-top: 10px;
    }

    .ct-banner-bg .breadcrumb-container ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 4px;
    }

    .ct-page .company-section.ct-contact-block {
        padding: 20px 0;
    }

    .ct-map-section {
        padding: 20px 0 40px;
    }
}

@media (max-width: 767px) {
    .ct-banner-bg.banner-container {
        height: min(62vh, 380px);
        min-height: 240px;
        max-height: 420px;
    }

    .ct-map-heading .ct-map-title {
        font-size: clamp(22px, 5vw, 26px);
    }

    .ct-map-heading p {
        font-size: 14px;
    }

    .ct-map-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ct-map-actions .company-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .ct-banner-bg.banner-container {
        height: auto;
        min-height: 200px;
        max-height: none;
    }

    .ct-banner-bg .banner-content {
        position: relative;
        left: 0;
        top: auto;
        transform: none;
        margin: 18px;
        max-width: none;
        width: auto;
    }

    .ct-banner-bg .banner-content h2 {
        font-size: 26px;
    }

    .ct-map-frame-wrap iframe {
        height: 280px;
    }

    .ct-map-heading .ct-map-title {
        font-size: 22px;
    }
}
