.bd-firms-page,
.bd-firms-page * {
    box-sizing: border-box;
}

.bd-firms-page {
    --bd-blue: #2594d1;
    --bd-blue-dark: #0b6fae;
    --bd-navy: #10283d;
    --bd-text: #263748;
    --bd-muted: #66798b;
    --bd-border: #d8e3ec;
    --bd-line: #e7eef4;
    --bd-soft: #f3f7fa;
    --bd-hover: #eef8fe;
    width: 100%;
    margin: 0;
    padding: 18px 0 28px;
    background: var(--bd-soft);
    color: var(--bd-text);
    font-family: inherit;
    overflow-x: hidden;
}

.bd-firms-page a {
    color: inherit;
    text-decoration: none;
}

.bd-firms-shell,
.bd-fm-map-area {
    width: min(1600px, calc(100vw - 32px));
    margin-left: auto;
    margin-right: auto;
}

.bd-fm-map-area {
    display: none;
    margin-bottom: 14px;
}

.bd-fm-map-panel,
.bd-filter-box,
.bd-list-toolbar,
.bd-firm-table-card {
    border: 1px solid var(--bd-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(20, 47, 68, 0.045);
}

.bd-fm-map-panel {
    overflow: hidden;
}

.bd-fm-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--bd-line);
    color: var(--bd-navy);
    font-size: 15px;
    font-weight: 800;
}

.bd-fm-map-tool {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #c7d6e3;
    border-radius: 6px;
    background: #ffffff;
    color: var(--bd-navy);
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.bd-fm-map-tool:hover {
    border-color: var(--bd-blue);
    color: var(--bd-blue-dark);
}

.bd-fm-map-wrap {
    position: relative;
}

.bd-fm-map-menu {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
}

.bd-fm-map-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 5px;
    background: var(--bd-navy);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

#bdFirmListMap {
    width: 100%;
    height: 430px;
    background: #eef4f8;
}

.bd-fm-map-empty {
    display: none;
    padding: 13px 16px;
    border-top: 1px solid var(--bd-line);
    background: #fff8df;
    color: #725300;
    font-size: 13px;
    font-weight: 700;
}

.bd-firms-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
}

.bd-firms-filter,
.bd-firms-list {
    min-width: 0;
}

.bd-filter-box {
    position: sticky;
    top: 16px;
    padding: 16px;
}

.bd-filter-box h1 {
    margin: 0 0 17px;
    color: var(--bd-navy);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.bd-field-label {
    display: block;
    margin: 12px 0 6px;
    color: #2d4254;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.bd-field {
    margin: 0;
}

.bd-field select,
.bd-table-search input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cddae5;
    border-radius: 6px;
    background: #ffffff;
    color: var(--bd-text);
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.bd-field select {
    padding: 0 35px 0 12px;
}

.bd-field select:disabled {
    background: #f4f7f9;
    color: #9aa8b4;
    cursor: not-allowed;
}

.bd-table-search input {
    padding: 0 14px;
}

.bd-field select:focus,
.bd-table-search input:focus {
    border-color: var(--bd-blue);
    box-shadow: 0 0 0 3px rgba(37, 148, 209, 0.11);
}

.bd-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 16px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, #31a4e2 0%, #258ece 100%);
    color: #ffffff;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 7px 16px rgba(37, 148, 209, 0.18);
    transition: transform 150ms ease, filter 150ms ease;
}

.bd-search-button:hover {
    filter: brightness(0.97);
    transform: translateY(-1px);
}

.bd-clear-link {
    display: block;
    margin-top: 10px;
    color: var(--bd-blue-dark) !important;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.bd-clear-link:hover {
    text-decoration: underline;
}

.bd-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    margin-bottom: 12px;
    padding: 10px 14px;
}

.bd-list-count {
    color: var(--bd-navy);
    font-size: 15px;
    font-weight: 700;
}

.bd-list-count strong {
    color: var(--bd-blue-dark);
    font-weight: 900;
}

.bd-view-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.bd-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid #cbd8e3;
    border-radius: 6px;
    background: #ffffff;
    color: var(--bd-navy);
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.bd-view-btn:hover {
    border-color: var(--bd-blue);
    color: var(--bd-blue-dark);
}

.bd-view-btn-active,
.bd-view-btn.active {
    border-color: var(--bd-blue);
    background: var(--bd-blue);
    color: #ffffff;
}

.bd-firm-table-card {
    overflow: hidden;
}

.bd-table-search {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 14px;
    border-bottom: 1px solid var(--bd-line);
}

.bd-table-search input {
    flex: 0 1 560px;
    max-width: 560px;
}

.bd-table-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, #31a4e2 0%, #258ece 100%);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(37, 142, 206, 0.16);
}

.bd-table-search-button:hover {
    background: #2188c6;
}

.bd-table-search input::placeholder {
    color: #8a9aaa;
}

.bd-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.bd-firm-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    table-layout: fixed;
}

.bd-firm-table thead th {
    height: 42px;
    padding: 9px 13px;
    border-bottom: 1px solid #cfdae4;
    background: #f2f6f9;
    color: #172d41;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.bd-firm-table tbody tr {
    background: #ffffff;
    transition: background 140ms ease;
}

.bd-firm-table tbody tr:nth-child(even) {
    background: #fbfdff;
}

.bd-firm-table tbody tr:hover {
    background: var(--bd-hover);
}

.bd-firm-table tbody td {
    height: 80px;
    padding: 9px 13px;
    border-bottom: 1px solid var(--bd-line);
    color: #27394a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    vertical-align: middle;
}

.bd-col-logo {
    width: 154px;
}

.bd-col-firm {
    width: auto;
}

.bd-col-type {
    width: 160px;
}

.bd-col-country {
    width: 110px;
}

.bd-col-city {
    width: 115px;
}

.bd-col-region {
    width: 125px;
}

.bd-firm-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 130px;
    height: 62px;
    overflow: hidden;
}

.bd-firm-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 124px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.bd-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #eaf4fb;
    color: var(--bd-blue-dark);
    font-size: 22px;
    font-weight: 900;
}

.bd-firm-name {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 3px;
    color: var(--bd-blue-dark) !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.bd-firm-name:hover {
    text-decoration: underline;
}

.bd-firm-legal {
    display: block;
    color: #24384b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.bd-firm-type {
    display: inline-block;
    color: #34495c;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.35;
}

.bd-empty-cell {
    height: 110px !important;
    padding: 24px !important;
    color: var(--bd-muted) !important;
    font-size: 13px !important;
    text-align: center;
}

.bd-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 50px;
    padding: 10px 14px;
    color: var(--bd-muted);
    font-size: 12px;
}

.bd-pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.bd-pagination a,
.bd-pagination .is-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid #d1dde7;
    border-radius: 5px;
    background: #ffffff;
    color: var(--bd-navy);
    font-size: 12px;
    font-weight: 800;
}

.bd-pagination a:hover {
    border-color: var(--bd-blue);
    color: var(--bd-blue-dark);
}

.bd-pagination a.active {
    border-color: var(--bd-blue);
    background: var(--bd-blue);
    color: #ffffff;
}

.bd-pagination .is-disabled {
    background: #f5f7f9;
    color: #a4afb8;
}

.bd-page-gap {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 2px;
    color: #8494a1;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .bd-firms-shell,
    .bd-fm-map-area {
        width: min(100% - 24px, 1600px);
    }

    .bd-firms-shell {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 12px;
    }

    .bd-col-logo {
        width: 145px;
    }

    .bd-col-type {
        width: 145px;
    }
}

@media (max-width: 900px) {
    .bd-firms-page {
        padding-top: 12px;
    }

    .bd-firms-shell {
        display: block;
    }

    .bd-firms-filter {
        margin-bottom: 12px;
    }

    .bd-filter-box {
        position: static;
    }

    .bd-list-toolbar,
    .bd-table-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-view-actions,
    .bd-pagination {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .bd-firms-shell,
    .bd-fm-map-area {
        width: calc(100vw - 20px);
    }

    .bd-filter-box {
        padding: 14px;
    }

    .bd-filter-box h1 {
        font-size: 20px;
    }

    .bd-list-toolbar {
        min-height: 0;
    }

    .bd-view-actions {
        width: 100%;
    }

    .bd-view-btn {
        flex: 1;
    }

    #bdFirmListMap {
        height: 330px;
    }

    .bd-table-footer {
        padding: 12px;
    }
}


html.pt-offer-home-root,
html.pt-offer-home-root body.pt-offer-body {
    width: 100% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

html.pt-offer-home-root body.pt-offer-body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

html.pt-offer-home-root form,
html.pt-offer-home-root #wrapper,
html.pt-offer-home-root .body,
html.pt-offer-home-root .main-wrapper {
    overflow: hidden !important;
}

.pt-offer-company-page,
.pt-offer-company-page * {
    box-sizing: border-box;
}

body.pt-offer-body {
    overflow-x: hidden !important;
    background: #ffffff;
}

body.pt-offer-body footer,
body.pt-offer-body #footer,
body.pt-offer-body .footer,
body.pt-offer-body .site-footer {
    display: none !important;
}

.pt-offer-company-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #26313d;
    font-family: inherit;
}

html.pt-offer-home-root .pt-offer-company-page {
    height: auto;
    min-height: 0;
    overflow: visible;
}

.pt-offer-company-page a {
    text-decoration: none;
}

.pt-offer-topline {
    position: relative;
    z-index: 5;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    border-bottom: 2px solid #2f8ed0;
    box-shadow: 0 1px 4px rgba(22, 42, 65, 0.10);
}

.pt-offer-topline-inner {
    width: min(1600px, calc(100vw - 24px));
    height: 64px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.pt-offer-brand {
    min-width: 260px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.pt-offer-logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
}

.pt-offer-logo img {
    display: block;
    width: auto;
    max-width: 250px;
    max-height: 52px;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: contain;
    object-position: left center;
}

.pt-offer-company-name {
    display: flex;
    align-items: center;
    height: 64px;
    color: #142f48;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.12;
}

.pt-offer-tabs {
    height: 64px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.pt-offer-tabs a {
    height: 42px;
    min-width: 104px;
    margin: 0;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e3ee;
    border-radius: 4px;
    background: #ffffff;
    color: #162f46;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(19, 48, 75, 0.06);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pt-offer-tabs a:first-child {
    border-left: 1px solid #d7e3ee;
}

.pt-offer-tabs a.is-current,
.pt-offer-tabs a:hover {
    background: linear-gradient(180deg, #3197d8 0%, #247fbe 100%);
    color: #ffffff;
    border-color: #247fbe;
    box-shadow: 0 7px 16px rgba(47, 142, 208, 0.24);
    transform: translateY(-1px);
}

.pt-offer-stage {
    width: min(1600px, calc(100vw - 24px));
    margin: 0 auto;
    padding: 0;
    background: #ffffff;
    line-height: 0;
}

html.pt-offer-home-root .pt-offer-stage {
    overflow: hidden;
}

.pt-offer-slider {
    position: relative;
    width: 100%;
    height: 620px;
    min-height: 420px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #e8edf2;
    isolation: isolate;
}

html.pt-offer-home-root .pt-offer-slider {
    height: calc(100vh - 230px);
    min-height: 320px;
    max-height: none;
}

.pt-offer-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transform: none;
    transition: opacity 700ms ease-in-out, visibility 0s linear 700ms;
    backface-visibility: hidden;
    will-change: opacity;
}

.pt-offer-slide.is-active,
.pt-offer-slide.is-leaving {
    visibility: visible;
    transition: opacity 700ms ease-in-out, visibility 0s linear 0s;
}

.pt-offer-slide.is-active {
    z-index: 4;
    opacity: 1;
    transform: none;
}

.pt-offer-slide.is-leaving {
    z-index: 3;
    opacity: 0;
    transform: none;
}

.pt-offer-slide img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center center;
    transform: none !important;
    transition: none !important;
    will-change: auto;
}

.pt-offer-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    height: 58px;
    min-height: 58px;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;
    line-height: 1;
    overflow: hidden;
    transform: none;
}

.pt-offer-caption.is-static {
    position: absolute;
    inset: auto 0 0 0;
}

.pt-offer-caption-inner {
    width: 100%;
    height: 58px;
    min-height: 58px;
    margin: 0;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 22px;
    overflow: hidden;
}

.pt-offer-caption strong {
    height: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-right: 0 !important;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: visible;
}

.pt-offer-caption span {
    height: auto;
    min-height: 0;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.18;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 991px) {
    html.pt-offer-home-root,
    html.pt-offer-home-root body.pt-offer-body {
        overflow-y: auto !important;
        height: auto !important;
    }

    .pt-offer-topline-inner,
    .pt-offer-stage {
        width: calc(100vw - 24px);
    }

    .pt-offer-caption-inner {
        width: 100%;
        padding: 0 24px;
    }

    .pt-offer-topline-inner {
        height: auto;
        min-height: 76px;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 0 0;
    }

    .pt-offer-brand,
    .pt-offer-logo,
    .pt-offer-company-name {
        height: 58px;
    }

    .pt-offer-logo img {
        max-height: 48px;
    }

    .pt-offer-tabs {
        width: 100%;
        height: 34px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .pt-offer-slider {
        height: 420px;
        min-height: 420px;
    }

    .pt-offer-caption {
        height: 58px;
        min-height: 58px;
    }

    .pt-offer-caption-inner {
        height: 58px;
        min-height: 58px;
    }

    .pt-offer-caption strong {
        font-size: 19px;
    }

    .pt-offer-caption span {
        font-size: 17px;
    }
}

.pt-offer-content {
    width: 100%;
    margin: 0;
    padding: 34px 0 48px;
    background: linear-gradient(#eef3f7 0%, #ffffff 240px);
}

.pt-offer-content-inner {
    width: min(1600px, calc(100vw - 30px));
    margin: 0 auto;
    padding: 0;
}

.pt-offer-split {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pt-offer-side-nav {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.pt-offer-side-nav a {
    display: block;
    padding: 13px 15px;
    border: 1px solid #dde6ee;
    border-radius: 4px;
    background: #ffffff;
    color: #1b2f42;
    font-size: 14px;
    font-weight: 600;
}

.pt-offer-side-nav a.is-current,
.pt-offer-side-nav a:hover {
    border-color: #2f8ed0;
    background: #2f8ed0;
    color: #ffffff;
}

.pt-offer-panel {
    margin: 0;
    padding: 28px;
    border: 1px solid #dde6ee;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 40, 65, 0.08);
}

.pt-offer-pane,
.pt-offer-project-pane {
    display: none;
}

.pt-offer-pane.is-open,
.pt-offer-project-pane.is-open {
    display: block;
}

.pt-offer-panel h1 {
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: 1px solid #e3eaf1;
    color: #142f48;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.pt-offer-panel h2 {
    margin: 24px 0 12px;
    color: #1a354d;
    font-size: 19px;
    font-weight: 700;
}

.pt-offer-rich-text,
.pt-offer-rich-text p,
.pt-offer-panel p {
    color: #4b5d6d;
    font-size: 15px;
    line-height: 1.75;
}

.pt-offer-project-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.pt-offer-filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pt-offer-filter-tabs button {
    height: 38px;
    padding: 0 15px;
    border: 1px solid #dce5ed;
    border-radius: 4px;
    background: #ffffff;
    color: #1b2f42;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.pt-offer-filter-tabs button.is-current,
.pt-offer-filter-tabs button:hover {
    border-color: #2f8ed0;
    background: #2f8ed0;
    color: #ffffff;
}

.pt-offer-project-selects {
    display: flex;
    gap: 10px;
}

.pt-offer-project-selects select {
    height: 38px;
    min-width: 150px;
    border: 1px solid #dce5ed;
    border-radius: 4px;
    background: #ffffff;
    color: #34495e;
    padding: 0 10px;
}

.pt-offer-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pt-offer-project-item {
    display: block;
    border: 1px solid #dfe7ee;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    color: #1b2f42;
    box-shadow: 0 8px 18px rgba(18, 44, 70, 0.06);
}

.pt-offer-project-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #e8edf2;
    overflow: hidden;
}

.pt-offer-project-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-offer-project-image em {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 5px 9px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.62);
    color: #ffffff;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.pt-offer-project-name {
    display: block;
    padding: 13px 14px 15px;
}

.pt-offer-project-name strong,
.pt-offer-project-name small {
    display: block;
}

.pt-offer-project-name strong {
    color: #152f47;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.pt-offer-project-name small {
    margin-top: 5px;
    color: #637588;
    font-size: 13px;
}

.pt-offer-contact-lines {
    display: grid;
    gap: 12px;
}

.pt-offer-contact-lines p {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 18px;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f6;
}

.pt-offer-contact-lines strong {
    color: #142f48;
    font-weight: 700;
}

.pt-offer-contact-lines a {
    color: #2f8ed0;
    font-weight: 600;
}

.pt-offer-map {
    position: relative;
    width: 100%;
    height: 420px;
    margin: 0;
    border: 1px solid #d4e0ea;
    border-radius: 8px;
    overflow: hidden;
    background: #eef3f7;
    box-shadow: 0 12px 28px rgba(16, 40, 65, 0.10);
}

.pt-offer-google-map,
.pt-offer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.pt-offer-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    margin-top: 14px;
    padding: 0 18px;
    border-radius: 4px;
    background: #2f8ed0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.pt-offer-address-block {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #e3eaf1;
}

.pt-offer-empty,
.pt-offer-empty-text {
    color: #5c6d7d;
}

.pt-offer-empty {
    width: min(760px, calc(100vw - 30px));
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #dde6ee;
    border-radius: 6px;
    background: #ffffff;
    text-align: center;
}

.pt-offer-empty h1 {
    margin: 0 0 12px;
    color: #142f48;
    font-size: 25px;
}

.pt-offer-empty a {
    color: #2f8ed0;
    font-weight: 700;
}

@media (max-width: 991px) {
    .pt-offer-topline-inner {
        height: auto;
        min-height: 66px;
        flex-direction: column;
        gap: 0;
        padding-top: 8px;
    }

    .pt-offer-brand {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .pt-offer-logo,
    .pt-offer-company-name {
        justify-content: center;
    }

    .pt-offer-tabs {
        width: 100%;
        height: auto;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pt-offer-slider {
        height: 420px;
        min-height: 420px;
    }

    .pt-offer-split {
        grid-template-columns: 1fr;
    }

    .pt-offer-project-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .pt-offer-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .pt-offer-topline-inner,
    .pt-offer-caption-inner,
    .pt-offer-content-inner {
        width: calc(100vw - 20px);
    }

    .pt-offer-tabs a {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 10px;
    }

    .pt-offer-slider {
        height: 380px;
        min-height: 380px;
    }

    .pt-offer-caption-inner {
        min-height: 72px;
        gap: 12px;
    }

    .pt-offer-caption strong {
        max-width: 150px;
        padding-right: 12px;
        font-size: 16px;
    }

    .pt-offer-caption span {
        font-size: 16px;
    }

    .pt-offer-panel {
        padding: 20px;
    }

    .pt-offer-project-grid {
        grid-template-columns: 1fr;
    }

    .pt-offer-contact-lines p {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

html.pt-offer-home-root,
html.pt-offer-home-root body.pt-offer-body {
    height: 100vh !important;
    min-height: 100vh !important;
    overflow: hidden !important;
}

html.pt-offer-home-root form,
html.pt-offer-home-root #wrapper,
html.pt-offer-home-root .body,
html.pt-offer-home-root .main-wrapper,
html.pt-offer-home-root .pt-offer-company-page,
html.pt-offer-home-root .pt-offer-stage {
    min-height: 0 !important;
    overflow: hidden !important;
}

html.pt-offer-home-root .pt-offer-stage {
    height: calc(100vh - 230px);
}

/* =========================================================
   BIDENTRA FİRMA PROFİLİ — FİRMA MODÜLÜNE ÖZGÜ TAMAMLAMALAR
   Görsel ölçü sistemi inşaat şirketi profiliyle aynıdır.
   Menü içeriği firma modülüne aittir.
   ========================================================= */


body.pt-offer-body .bidentra-page {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

html.pt-offer-home-root body.pt-offer-body .bidentra-page {
    height: auto !important;
    overflow: hidden !important;
}

/* Firma profili: breadcrumb görünür, logo bandı ve vitrin 1600 px ölçüde viewport merkezine oturur. */
body.pt-offer-body #lock-breadcrumb {
    display: block !important;
}

.pt-offer-topline {
    overflow: visible;
}

.pt-offer-topline-inner,
.pt-offer-stage {
    position: relative;
    left: 50%;
    width: min(1600px, calc(100vw - 24px)) !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: translateX(-50%);
}

.pt-offer-tabs {
    flex: 1 1 auto;
    min-width: 0;
}

.pt-offer-tabs a {
    min-width: 96px;
    padding-left: 18px;
    padding-right: 18px;
}

.pt-firm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pt-firm-card {
    min-width: 0;
    border: 1px solid #dfe7ee;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(18, 44, 70, 0.06);
    overflow: hidden;
}

.pt-firm-card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef3f7;
    overflow: hidden;
}

.pt-firm-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pt-firm-card-media.is-logo img,
.pt-firm-card-media.is-cover img {
    object-fit: contain;
    padding: 18px;
    background: #ffffff;
}

.pt-firm-card-body {
    padding: 16px;
}

.pt-firm-card-body h2 {
    margin: 0 0 8px;
    color: #152f47;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.pt-firm-card-body p {
    margin: 0;
    color: #637588;
    font-size: 14px;
    line-height: 1.6;
}

.pt-firm-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 4px;
    background: #2f8ed0;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   FİRMA İLETİŞİM — PROJETEKLİFİ ORİJİNAL YAPI
   Sol sekme / sağ içerik, harita iletişim bilgilerinin altında.
   ========================================================= */

.pt-firm-original-contact {
    padding-top: 30px;
}

.pt-firm-contact-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.pt-firm-contact-nav {
    border: 1px solid #dde6ee;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(16, 40, 65, 0.08);
    overflow: hidden;
}

.pt-firm-contact-nav a {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #e6edf3;
    border-radius: 0;
    padding: 14px 16px;
    font-weight: 700;
}

.pt-firm-contact-nav a:last-child {
    border-bottom: 0;
}

.pt-firm-original-contact-panel {
    min-width: 0;
}

.pt-firm-contact-pane {
    display: none;
}

.pt-firm-contact-pane.is-open {
    display: block;
}

.pt-firm-contact-heading-line {
    position: relative;
    min-height: 38px;
    margin: -8px 0 8px;
    border-bottom: 1px solid #dce5ed;
    text-align: right;
}

.pt-firm-contact-heading-line span {
    position: relative;
    bottom: -12px;
    display: inline-block;
    padding-left: 14px;
    background: #ffffff;
    color: #17364f;
    font-size: 18px;
    font-weight: 700;
}

.pt-firm-original-contact-lines {
    gap: 0;
    margin-top: 6px;
}

.pt-firm-original-contact-lines p {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 11px 0;
}

.pt-firm-original-contact-lines strong {
    position: relative;
    padding-left: 22px;
}

.pt-firm-original-contact-lines strong::before {
    content: "•";
    position: absolute;
    left: 3px;
    top: -1px;
    color: #2f8ed0;
    font-size: 18px;
    line-height: 1;
}

.pt-firm-original-contact .pt-offer-route {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.pt-offer-map-item {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #dce5ed;
    border-radius: 6px;
    overflow: hidden;
    background: #eef3f7;
}

.pt-offer-route-search {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    border-bottom: 1px solid #cfdbe6;
    background: linear-gradient(#efefef, #e3e3e3);
    color: #263746;
    font-size: 13px;
}

.pt-offer-route-search[hidden] {
    display: none !important;
}

.pt-offer-route-search span {
    flex: 0 0 auto;
    font-weight: 700;
}

.pt-offer-route-search input {
    flex: 1 1 auto;
    min-width: 0;
    height: 32px;
    border: 0;
    border-bottom: 1px solid #aebdcc;
    background: transparent;
    color: #263746;
    font: inherit;
    outline: none;
}

.pt-offer-google-map {
    width: 100%;
    height: 400px;
    background: #eef3f7;
}

.pt-firm-map-info {
    display: grid;
    gap: 4px;
    max-width: 260px;
    padding: 3px 4px;
}

.pt-firm-map-info strong {
    color: #102a3a;
    font-size: 13px;
}

.pt-firm-map-info span {
    color: #4b5d6d;
    font-size: 12px;
    line-height: 1.45;
}

.pt-firm-branch-accordion {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.pt-firm-branch-item {
    border: 1px solid #dce5ed;
    border-radius: 5px;
    background: #ffffff;
    overflow: hidden;
}

.pt-firm-branch-toggle {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 0 16px;
    background: #f5f8fb;
    color: #17364f;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.pt-firm-branch-toggle::after {
    content: "+";
    color: #2f8ed0;
    font-size: 22px;
    font-weight: 500;
}

.pt-firm-branch-toggle[aria-expanded="true"]::after {
    content: "−";
}

.pt-firm-branch-body {
    padding: 18px;
    border-top: 1px solid #dce5ed;
}

.pt-firm-branch-body[hidden] {
    display: none !important;
}

.pt-firm-catalog-file {
    word-break: break-word;
}

@media (max-width: 1180px) {

    .pt-offer-topline-inner {
        gap: 12px;
    }

    .pt-offer-brand {
        min-width: 220px;
    }

    .pt-offer-tabs {
        gap: 5px;
    }

    .pt-offer-tabs a {
        min-width: 84px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    .pt-firm-branch-grid {
        grid-template-columns: 1fr;
    }

    .pt-firm-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .pt-firm-card-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 991px) {
    .pt-firm-contact-layout {
        grid-template-columns: 1fr;
    }

    .pt-firm-contact-nav {
        display: flex;
        overflow-x: auto;
    }

    .pt-firm-contact-nav a {
        flex: 1 0 auto;
        border-right: 1px solid #e6edf3;
        border-bottom: 0;
        text-align: center;
    }

    .pt-firm-contact-nav a:last-child {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .pt-firm-original-contact-lines p {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .pt-offer-google-map {
        height: 320px;
    }

    .pt-offer-route-search {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .pt-offer-route-search input {
        width: 100%;
    }
}

/* =========================================================
   FİRMA İLETİŞİM — KOMPAKT MASAÜSTÜ YERLEŞİMİ
   İletişim bilgileri ve harita ilk ekranda birlikte görünür.
   ========================================================= */

.pt-firm-original-contact {
    padding: 10px 0 6px;
}

.pt-firm-contact-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
}

.pt-firm-contact-nav a {
    padding: 11px 14px;
}

.pt-firm-original-contact-panel {
    padding: 16px 18px 12px;
}

.pt-firm-original-contact-panel > .pt-firm-contact-pane > h1 {
    margin: 0 0 10px;
    padding: 0 0 9px;
    font-size: 22px;
    line-height: 1.2;
}

.pt-firm-contact-heading-line {
    display: none !important;
}

.pt-firm-original-contact-lines {
    margin-top: 0;
}

.pt-firm-original-contact-lines p {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 14px;
    min-height: 38px;
    padding: 7px 0;
    line-height: 1.4;
}

.pt-firm-original-contact-lines strong {
    padding-left: 18px;
}

.pt-firm-original-contact-lines strong::before {
    left: 2px;
    top: 0;
    font-size: 16px;
}

.pt-firm-original-contact .pt-offer-route {
    height: 34px;
    margin-top: 10px;
    padding: 0 15px;
    font-size: 13px;
}

.pt-offer-map-item {
    margin-top: 8px;
}

.pt-offer-google-map {
    height: clamp(260px, calc(100vh - 560px), 340px);
}

.pt-offer-route-search {
    min-height: 38px;
    padding: 4px 9px;
}

.pt-offer-route-search input {
    height: 29px;
}

@media (max-width: 1180px) {
    .pt-firm-contact-layout {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 14px;
    }

    .pt-firm-original-contact-panel {
        padding: 16px 18px;
    }

    .pt-offer-google-map {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .pt-firm-original-contact {
        padding: 10px 0 12px;
    }

    .pt-firm-contact-layout {
        grid-template-columns: 1fr;
    }

    .pt-offer-google-map {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .pt-firm-original-contact-panel {
        padding: 14px;
    }

    .pt-firm-original-contact-lines p {
        grid-template-columns: 1fr;
        gap: 3px;
        min-height: 0;
        padding: 7px 0;
    }

    .pt-offer-google-map {
        height: 280px;
    }
}



/* Firma listesi okunabilirlik ve kontrol düzeltmeleri */
.bd-list-count {
    font-size: 16px;
}

.bd-view-btn {
    font-size: 13px;
}

.bd-field-label {
    font-size: 13px;
}

.bd-field select,
.bd-table-search input {
    font-size: 14px;
}

.bd-search-button,
.bd-clear-link {
    font-size: 14px;
}

.bd-firm-table thead th {
    font-size: 14px;
}

.bd-firm-table tbody td {
    font-size: 14px;
}

.bd-firm-name {
    font-size: 15px;
}

.bd-firm-legal,
.bd-firm-type {
    font-size: 13px;
}

.bd-table-footer,
.bd-pagination a,
.bd-pagination .is-disabled {
    font-size: 13px;
}

@media (max-width: 640px) {
    .bd-table-search {
        align-items: stretch;
        flex-direction: column;
    }

    .bd-table-search input,
    .bd-table-search-button {
        width: 100%;
        max-width: none;
    }
}

/* =========================================================
   FİRMA ÜRÜNLERİ — BIDENTRA TEMİZ KART YAPISI
   Yalnız /tr/firmalar/{slug}/urunler/ bölümünü etkiler.
   ========================================================= */

.pt-company-products-section,
.pt-company-products-section * {
    box-sizing: border-box;
}

.pt-company-products-section {
    width: 100%;
    margin: 0;
    padding: 28px 0 48px;
    background: #ffffff;
    color: #263748;
    font-family: inherit;
}

.pt-company-products-container {
    width: min(1600px, calc(100vw - 24px));
    margin: 0 auto;
    padding: 0;
}

.pt-company-products-row {
    width: 100%;
    margin: 0;
}

.pt-company-products-column {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.pt-company-product-box {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pt-company-product-navbar {
    width: 100%;
    min-height: 64px;
    margin: 0 0 22px;
    padding: 11px 14px;
    border: 1px solid #dce5ed;
    border-radius: 6px;
    background: #f6f8fa;
}

.pt-company-product-navbar-fluid,
.pt-company-product-navbar-collapse {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 0;
}

.pt-company-product-filter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 0;
}

.pt-company-product-filter-field {
    flex: 0 1 230px;
    width: 230px;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.pt-company-product-filter select {
    display: block;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0 38px 0 12px;
    border: 1px solid #c9d5df;
    border-radius: 5px;
    background-color: #ffffff;
    color: #34495e;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    outline: 0;
    box-shadow: none;
}

.pt-company-product-filter select:focus {
    border-color: #2594d1;
    box-shadow: 0 0 0 3px rgba(37, 148, 209, 0.12);
}

.pt-company-product-results {
    width: 100%;
    min-height: 1px;
    margin: 0;
    padding: 0;
    transition: opacity 160ms ease;
}

.pt-company-product-results.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.pt-company-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 280px));
    justify-content: start;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pt-company-product-cell {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.pt-company-product-card {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dce4eb;
    border-radius: 6px;
    background: #ffffff;
    color: #263748;
    box-shadow: 0 5px 14px rgba(16, 40, 65, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pt-company-product-card:hover {
    border-color: #8dcbea;
    box-shadow: 0 10px 22px rgba(16, 40, 65, 0.11);
    transform: translateY(-2px);
}

.pt-company-product-thumbnail {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid #e3eaf0;
    background: #eef2f5;
    box-shadow: none;
}

.pt-company-product-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #eef2f5;
}

.pt-company-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
    transition: transform 180ms ease;
}

.pt-company-product-card:hover .pt-company-product-image img {
    transform: scale(1.015);
}

.pt-company-product-summary {
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 13px 14px 15px;
    background: #ffffff;
    color: #263748;
}

.pt-company-product-summary small {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    overflow: hidden;
    color: #1887c1;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.pt-company-product-summary h2 {
    display: -webkit-box;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #263748;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pt-company-product-empty {
    margin: 0;
    padding: 24px 0;
    color: #66798b;
    font: inherit;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.pt-company-product-pager-wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 24px 0 0;
    padding: 0;
}

.pt-company-product-pager {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pt-company-product-pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border: 1px solid #d1dde7;
    border-radius: 5px;
    background: #ffffff;
    color: #0b6fae;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.pt-company-product-pager a:hover,
.pt-company-product-pager a.is-current {
    border-color: #2594d1;
    background: #2594d1;
    color: #ffffff;
}

.pt-company-product-clearfix {
    display: none;
}

@media (max-width: 640px) {
    .pt-company-products-section {
        padding: 20px 0 36px;
    }

    .pt-company-products-container {
        width: calc(100vw - 20px);
    }

    .pt-company-product-navbar {
        padding: 10px;
    }

    .pt-company-product-filter {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .pt-company-product-filter-field {
        flex: 1 1 auto;
        width: 100%;
    }

    .pt-company-product-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pt-company-product-pager-wrap {
        justify-content: center;
    }
}
