#site-header {
    transition:
        background-color 320ms ease,
        box-shadow 320ms ease;
}

.site-header-shell {
    border-bottom: 1px solid transparent;
    transition:
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.site-header-background {
    opacity: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(40, 42, 44, 0.97) 48%,
            rgba(0, 0, 0, 0.88) 100%
        );
    transition: opacity 320ms ease;
}

.site-header-texture {
    opacity: 0;
    background-image:
        linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.05),
            transparent 30%
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 4px
        );
    transition: opacity 320ms ease;
}

#site-header.is-scrolled .site-header-shell {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

#site-header.is-scrolled .site-header-background {
    opacity: 1;
}

#site-header.is-scrolled .site-header-texture {
    opacity: 0.22;
}

#mega-menu {
    display: none;
}

body.mega-menu-lock {
    overflow: hidden;
}

.mega-menu-texture {
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 4px
        ),
        radial-gradient(
            circle at 48% 32%,
            rgba(255, 255, 255, 0.12),
            transparent 38%
        );
}

.mega-desktop-grid {
    display: grid;
    width: 100%;
    align-items: center;
    gap: 2rem;
    grid-template-columns:
        minmax(470px, 1fr)
        minmax(270px, 0.68fr)
        minmax(420px, 680px);
}

.desktop-main-link {
    color: #ffffff;
    transition: color 220ms ease;
}

.desktop-main-link:hover,
.desktop-main-link.is-active {
    color: #18a7ed !important;
}

#desktop-corporate-submenu {
    grid-column-start: 2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-14px);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease;
}

#desktop-corporate-submenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

#mobile-corporate-trigger.is-active {
    color: #18a7ed;
}

#mobile-corporate-chevron {
    transition: transform 220ms ease;
}

#mobile-corporate-chevron.is-open {
    transform: rotate(180deg);
}

.brand-arrow-button {
    position: relative;
    clip-path: polygon(
        0 0,
        calc(100% - 26px) 0,
        100% 50%,
        calc(100% - 26px) 100%,
        0 100%
    );
}

.brand-arrow-button img {
    transform: translateX(4px);
}

.brand-chevron {
    stroke: #1aa6ee;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-more-button {
    position: relative;
    display: inline-flex;
    width: 165px;
    height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    padding-right: 12px;
    padding-left: 18px;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 18px) 0,
        100% 50%,
        calc(100% - 18px) 100%,
        0 100%
    );
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    transition:
        filter 300ms ease,
        transform 300ms ease;
}

.about-more-button::before {
    position: absolute;
    inset: 1px;
    content: "";
    background-color: #1d427d;
    clip-path: polygon(
        0 0,
        calc(100% - 17px) 0,
        100% 50%,
        calc(100% - 17px) 100%,
        0 100%
    );
    transition: background-color 300ms ease;
}

.about-more-button:hover {
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
    transform: translateY(-2px);
}

.about-more-button:hover::before {
    background-color: #1aa6ee;
}

.about-more-button svg {
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card {
    position: relative;
    display: block;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background-color: #e8e8e8;
    transition:
        box-shadow 300ms ease,
        transform 300ms ease;
}

.service-card:hover {
    box-shadow: 0 16px 30px rgba(15, 42, 88, 0.16);
    transform: translateY(-6px);
}

.service-card-image {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44%;
    object-fit: cover;
    transition:
        filter 420ms ease,
        height 420ms ease,
        transform 420ms ease;
}

.service-card-default {
    position: relative;
    z-index: 2;
    display: flex;
    height: 56%;
    align-items: flex-start;
    padding: 28px 30px;
    opacity: 1;
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.service-card-title {
    color: #173f80;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.015em;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 30px;
    color: #ffffff;
    background-color: rgba(24, 31, 41, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.service-card-overlay-title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.015em;
}

.service-card-description {
    max-width: 320px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0.025em;
}

.service-card:hover .service-card-image {
    height: 100%;
    filter: brightness(0.78);
    transform: scale(1.05);
}

.service-card:hover .service-card-default {
    opacity: 0;
    transform: translateY(-10px);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}
.numbers-timeline {
    position: relative;
    height: 190px;
}

.numbers-line {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    height: 1px;
    background-color: rgba(26, 166, 238, 0.72);
}

.numbers-dot {
    position: absolute;
    top: 80px;
    width: 17px;
    height: 17px;
    border: 2px solid #1aa6ee;
    border-radius: 9999px;
    background-color: #202526;
    box-shadow: 0 0 0 3px rgba(26, 166, 238, 0.14);
    transform: translateX(-50%);
}

.numbers-dot-1,
.numbers-stat-1 {
    left: 8%;
}

.numbers-dot-2,
.numbers-stat-2 {
    left: 27%;
}

.numbers-dot-3,
.numbers-stat-3 {
    left: 46%;
}

.numbers-dot-4,
.numbers-stat-4 {
    left: 65%;
}

.numbers-dot-5,
.numbers-stat-5 {
    left: 84%;
}

.numbers-stat {
    position: absolute;
    width: 230px;
    transform: translateX(-50%);
}

.numbers-stat-top {
    top: -4px;
}

.numbers-stat-bottom {
    top: 116px;
}

.numbers-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    stroke: #1aa6ee;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.numbers-value {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.numbers-label {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.045em;
}

.numbers-mobile-item {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(26, 166, 238, 0.24);
    background-color: rgba(32, 37, 38, 0.82);
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        transform 300ms ease;
}

.numbers-mobile-item:hover {
    border-color: rgba(26, 166, 238, 0.78);
    background-color: rgba(32, 37, 38, 0.96);
    transform: translateY(-3px);
}

.numbers-mobile-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    stroke: #1aa6ee;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


#mytes-projects-section {
    min-height: 900px;
}

.mytes-projects-sticky {
    position: relative;
}
.mytes-projects-diagonal {
    position: absolute;
    bottom: -155px;
    left: -58px;
    width: 2px;
    height: 340px;
    background-color: #1aa6ee;
    transform: rotate(-32deg);
    transform-origin: center;
}

.mytes-projects-more-button {
    position: relative;
    display: inline-flex;
    width: 188px;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    overflow: hidden;
    padding-right: 15px;
    padding-left: 20px;
    color: #173f80;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 21px) 0,
        100% 50%,
        calc(100% - 21px) 100%,
        0 100%
    );
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    transition:
        color 300ms ease,
        filter 300ms ease,
        transform 300ms ease;
}

.mytes-projects-more-button::before {
    position: absolute;
    inset: 1px;
    content: "";
    background-color: #ffffff;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0 100%
    );
    transition: background-color 300ms ease;
}

.mytes-projects-more-button:hover {
    color: #ffffff;
    filter: drop-shadow(0 7px 12px rgba(23, 63, 128, 0.18));
    transform: translateY(-2px);
}

.mytes-projects-more-button:hover::before {
    background-color: #1aa6ee;
}

.mytes-projects-more-button svg {
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-projects-card {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
    background-color: #173f80;
}
.mytes-projects-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.mytes-projects-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 57, 122, 0.96) 0%,
            rgba(18, 57, 122, 0.86) 34%,
            rgba(18, 57, 122, 0.58) 66%,
            rgba(18, 57, 122, 0.26) 100%
        );
}
.mytes-projects-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 36px 40px 28px;
}
.mytes-projects-card-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.26;
    letter-spacing: 0.025em;
}
.mytes-projects-card-info {
    width: 100%;
    max-width: 680px;
}
.mytes-projects-card-row {
    display: grid;
    grid-template-columns: 205px minmax(0, 1fr);
    gap: 18px;
    margin-top: 11px;
    color: rgba(255, 255, 255, 0.97);
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.02em;
}
.mytes-projects-card-row span {
    font-weight: 600;
}
.mytes-projects-card-row strong {
    font-weight: 400;
}
.mytes-projects-card-detail {
    position: absolute;
    right: 30px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: color 300ms ease;
}
.mytes-projects-card-detail svg {
    width: 29px;
    height: 21px;
    stroke: #ffffff;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 300ms ease,
        transform 300ms ease;
}
.mytes-projects-card:hover .mytes-projects-card-image {
    transform: scale(1.06);
}
.mytes-projects-card:hover .mytes-projects-card-detail {
    color: #1aa6ee;
}
.mytes-projects-card:hover .mytes-projects-card-detail svg {
    stroke: #1aa6ee;
    transform: translateX(5px);
}

@media (max-width: 639px) {
    .brand-arrow-button {
        clip-path: polygon(
            0 0,
            calc(100% - 22px) 0,
            100% 50%,
            calc(100% - 22px) 100%,
            0 100%
        );
    }

    #mytes-projects-section {
        min-height: auto;
    }

    .mytes-projects-card {
        height: 340px;
    }

    .mytes-projects-card-content {
        padding: 26px 20px 20px;
    }

    .mytes-projects-card-title {
        font-size: 23px;
    }

    .mytes-projects-card-info {
        max-width: 100%;
        padding-bottom: 42px;
    }

    .mytes-projects-card-row {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 9px;
        font-size: 13px;
    }

    .mytes-projects-card-detail {
        right: 18px;
        bottom: 16px;
        font-size: 13px;
    }

    .mytes-projects-diagonal {
        display: none;
    }
}

@media (min-width: 640px) {
    .service-card {
        width: calc(50% - 10px);
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .service-card {
        width: calc(33.333333% - 16px);
        max-width: 410px;
        height: 260px;
    }

    .mytes-projects-sticky {
        position: sticky;
        top: 220px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .numbers-stat {
        width: 190px;
    }

    .numbers-icon {
        width: 50px;
        height: 50px;
    }

    .numbers-value {
        font-size: 15px;
    }

    .numbers-label {
        font-size: 11px;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mega-desktop-grid {
        gap: 1.25rem;
        grid-template-columns:
            minmax(355px, 1fr)
            minmax(210px, 0.65fr)
            minmax(340px, 0.92fr);
    }

    .mytes-projects-card {
        height: 285px;
    }

    .mytes-projects-card-content {
        padding: 32px 34px 25px;
    }

    .mytes-projects-card-title {
        font-size: 25px;
    }

    .mytes-projects-card-row {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 15px;
        font-size: 14px;
    }

    .mytes-projects-card-detail {
        font-size: 14px;
    }
}

@media (min-width: 1440px) {
    .service-card {
        max-width: 445px;
        height: 275px;
    }

    .service-card-title,
    .service-card-overlay-title {
        font-size: 22px;
    }

    .service-card-description {
        font-size: 16px;
    }
}

@media (min-width: 1700px) {
    .mytes-projects-card {
        height: 340px;
    }

    .mytes-projects-card-content {
        padding: 42px 46px 31px;
    }

    .mytes-projects-card-title {
        font-size: 32px;
    }

    .mytes-projects-card-row {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
        font-size: 18px;
    }

    .mytes-projects-card-detail {
        right: 34px;
        bottom: 28px;
        font-size: 18px;
    }

    .mytes-projects-card-detail svg {
        width: 31px;
        height: 23px;
    }
}
#mytes-products-section {
    min-height: 520px;
}
.mytes-products-all-button {
    position: relative;
    display: inline-flex;
    width: 152px;
    height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    overflow: hidden;
    padding-right: 12px;
    padding-left: 16px;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 18px) 0,
        100% 50%,
        calc(100% - 18px) 100%,
        0 100%
    );
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    transition:
        filter 300ms ease,
        transform 300ms ease;
}
.mytes-products-all-button:hover {
    filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.2));
    transform: translateY(-2px);
}
.mytes-products-all-button svg {
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-products-carousel-wrapper {
    position: relative;
    margin-top: -30px;
    padding: 0 28px;
}
.mytes-products-carousel {
    position: relative;
    width: 100%;
}
.mytes-products-carousel .owl-stage-outer {
    overflow: hidden;
}
.mytes-products-carousel .owl-stage {
    display: flex;
    align-items: flex-start;
}
.mytes-products-carousel .owl-item {
    position: relative;
    z-index: 1;
    opacity: 0.92;
    transition:
        opacity 380ms ease,
        transform 380ms ease;
}
.mytes-products-carousel .owl-item.center {
    z-index: 5;
    opacity: 1;
}
.mytes-products-slide {
    display: flex;
    min-height: 322px;
    justify-content: center;
    padding: 0 8px;
}
.mytes-products-slide-inner {
    display: flex;
    width: 100%;
    max-width: 265px;
    flex-direction: column;
    align-items: center;
    padding-top: 74px;
    transition:
        max-width 380ms ease,
        padding-top 380ms ease,
        transform 380ms ease;
}
.mytes-products-carousel .owl-item.center .mytes-products-slide-inner {
    max-width: 310px;
    padding-top: 0;
}
.mytes-products-slide-title {
    min-height: 25px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    letter-spacing: 0.025em;
}
.mytes-products-detail-button {
    display: inline-flex;
    height: 29px;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 0 9px 0 11px;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 13px) 0,
        100% 50%,
        calc(100% - 13px) 100%,
        0 100%
    );
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.15em;
    opacity: 0;
    pointer-events: none;
    transition:
        filter 300ms ease,
        opacity 300ms ease,
        transform 300ms ease;
}
.mytes-products-detail-button svg {
    width: 19px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-products-carousel .owl-item.center .mytes-products-detail-button {
    opacity: 1;
    pointer-events: auto;
}
.mytes-products-detail-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.mytes-products-image-frame {
    display: flex;
    width: 205px;
    height: 145px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background-color: transparent;
    transition:
        border-color 380ms ease,
        height 380ms ease,
        width 380ms ease;
}
.mytes-products-image {
    width: 92%;
    height: 92%;
    object-fit: contain;
    transition: transform 420ms ease;
}
.mytes-products-carousel .owl-item.center .mytes-products-image-frame {
    width: 290px;
    height: 190px;
    border-color: #1aa6ee;
}
.mytes-products-carousel .owl-item.center .mytes-products-image {
    transform: scale(1.02);
}
.mytes-products-image-frame:hover .mytes-products-image {
    transform: scale(1.07);
}
.mytes-products-carousel .owl-nav {
    pointer-events: none;
    position: absolute;
    inset: 0;
    margin: 0;
}
.mytes-products-carousel .owl-nav button.owl-prev,
.mytes-products-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    position: absolute;
    top: 64%;
    display: flex;
    width: 48px;
    height: 62px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    transform: translateY(-50%);
    transition:
        color 300ms ease,
        transform 300ms ease;
}
.mytes-products-carousel .owl-nav button.owl-prev {
    left: -24px;
}
.mytes-products-carousel .owl-nav button.owl-next {
    right: -24px;
}
.mytes-products-carousel .owl-nav button.owl-prev:hover,
.mytes-products-carousel .owl-nav button.owl-next:hover {
    color: #1aa6ee;
    background: transparent;
}
.mytes-products-carousel .owl-nav button.owl-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}
.mytes-products-carousel .owl-nav button.owl-next:hover {
    transform: translateY(-50%) translateX(4px);
}
.mytes-products-carousel .owl-nav svg {
    width: 38px;
    height: 52px;
    stroke: currentColor;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-products-carousel .owl-dots {
    display: none;
}
.page-banner-hexagon {
    display: inline-block;
    width: 24px;
    height: 22px;
    flex-shrink: 0;
    background-color: #1aa6ee;
    clip-path: polygon(
        25% 0,
        75% 0,
        100% 50%,
        75% 100%,
        25% 100%,
        0 50%
    );
}
.mytes-sustainability-scroll-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #202526;
}
.mytes-sustainability-scroll-stage {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #202526;
}
.mytes-sustainability-scroll-pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.mytes-sustainability-scroll-pattern::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(
            circle at center,
            rgba(32, 37, 38, 0.06) 0%,
            rgba(32, 37, 38, 0.36) 52%,
            rgba(32, 37, 38, 0.94) 100%
        );
}
.mytes-sustainability-scroll-frame {
    position: relative;
    display: flex;
    width: min(42vw, 560px);
    height: min(52vh, 340px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #18372c;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    will-change: width, height;
}
.mytes-sustainability-scroll-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}
.mytes-sustainability-scroll-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(8, 29, 23, 0.58) 0%,
            rgba(8, 29, 23, 0.44) 50%,
            rgba(8, 29, 23, 0.58) 100%
        ),
        rgba(5, 20, 16, 0.28);
    will-change: opacity;
}
.mytes-sustainability-scroll-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: clamp(84px, 13vw, 145px);
    transform: translate(-50%, -50%);
    will-change: opacity, transform;
}
.mytes-sustainability-scroll-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.mytes-sustainability-scroll-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 26px;
    text-align: center;
    will-change: opacity;
}
.mytes-sustainability-scroll-content-inner {
    width: 100%;
    max-width: 1050px;
}
.mytes-sustainability-scroll-lead {
    color: #1aa6ee;
    font-size: clamp(15px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0.02em;
}
.mytes-sustainability-scroll-text {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(14px, 1.05vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
}
.mytes-sustainability-scroll-reveal {
    will-change: opacity, transform;
}
#mytes-catalog-section {
    min-height: 680px;
}
.mytes-catalog-filter-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 44px;
}
.mytes-catalog-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
}
.mytes-catalog-filter-button {
    position: relative;
    padding-bottom: 7px;
    color: #163e80;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.015em;
    transition: color 260ms ease;
}
.mytes-catalog-filter-button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background-color: #1aa6ee;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}
.mytes-catalog-filter-button:hover,
.mytes-catalog-filter-button.is-active {
    color: #1aa6ee;
}
.mytes-catalog-filter-button:hover::after,
.mytes-catalog-filter-button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}
.mytes-catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px 24px;
}
.mytes-catalog-card {
    min-width: 0;
}
.mytes-catalog-image-box {
    position: relative;
    display: flex;
    height: 280px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background-color: #e7e3e0;
    transition:
        background-color 320ms ease,
        box-shadow 320ms ease,
        transform 320ms ease;
}
.mytes-catalog-card:hover .mytes-catalog-image-box {
    background-color: #e3dfdc;
    box-shadow: 0 14px 26px rgba(35, 45, 58, 0.12);
    transform: translateY(-4px);
}
.mytes-catalog-image {
    width: 86%;
    height: 86%;
    object-fit: contain;
    transition: transform 420ms ease;
}
.mytes-catalog-card:hover .mytes-catalog-image {
    transform: scale(1.055);
}
.mytes-catalog-image-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 52%;
    height: 100%;
    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255, 255, 255, 0.24),
            transparent
        );
    transform: skewX(-14deg);
    transition: left 620ms ease;
}
.mytes-catalog-card:hover .mytes-catalog-image-shine {
    left: 150%;
}
.mytes-catalog-detail-button {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    height: 27px;
    align-items: center;
    gap: 6px;
    padding-right: 9px;
    padding-left: 11px;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 13px) 0,
        100% 50%,
        calc(100% - 13px) 100%,
        0 100%
    );
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    opacity: 0;
    transform: translateX(-8px);
    transition:
        filter 260ms ease,
        opacity 260ms ease,
        transform 260ms ease;
}
.mytes-catalog-detail-button svg {
    width: 18px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-catalog-card:hover .mytes-catalog-detail-button,
.mytes-catalog-card.is-featured .mytes-catalog-detail-button {
    opacity: 1;
    transform: translateX(0);
}
.mytes-catalog-detail-button:hover {
    filter: brightness(1.08);
}
.mytes-catalog-card-body {
    padding-top: 15px;
}
.mytes-catalog-card-title {
    color: #1b1b1b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
}
.mytes-catalog-card-title a {
    transition: color 260ms ease;
}
.mytes-catalog-card-title a:hover {
    color: #1aa6ee;
}
.mytes-catalog-card-description {
    margin-top: 9px;
    color: #292929;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.005em;
}
.mytes-catalog-empty {
    padding: 60px 20px;
    color: #173f80;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}
.mytes-catalog-pagination {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}
.mytes-catalog-pagination-pages {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mytes-catalog-pagination-page {
    color: rgba(23, 63, 128, 0.46);
    font-size: 15px;
    font-weight: 500;
    transition:
        color 240ms ease,
        transform 240ms ease;
}
.mytes-catalog-pagination-page:hover,
.mytes-catalog-pagination-page.is-active {
    color: #173f80;
    transform: translateY(-1px);
}
.mytes-catalog-pagination-arrow {
    display: flex;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #173f80;
    transition:
        color 260ms ease,
        transform 260ms ease;
}
.mytes-catalog-pagination-arrow:hover {
    color: #1aa6ee;
}
.mytes-catalog-pagination-arrow:first-child:hover {
    transform: translateX(-4px);
}
.mytes-catalog-pagination-arrow:last-child:hover {
    transform: translateX(4px);
}
.mytes-catalog-pagination-arrow svg {
    width: 34px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
@media (min-width: 640px) {
    .mytes-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }

    .mytes-catalog-image-box {
        height: 300px;
    }
}
@media (min-width: 1024px) {
    .mytes-catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 28px;
    }

    .mytes-catalog-image-box {
        height: 330px;
    }

    .mytes-catalog-card-title {
        font-size: 17px;
    }

    .mytes-catalog-card-description {
        font-size: 14px;
    }
}
@media (min-width: 1440px) {
    .mytes-catalog-filter-nav {
        margin-bottom: 52px;
    }

    .mytes-catalog-filter-button {
        font-size: 17px;
    }

    .mytes-catalog-grid {
        gap: 46px 32px;
    }

    .mytes-catalog-image-box {
        height: 360px;
    }

    .mytes-catalog-card-title {
        font-size: 18px;
    }

    .mytes-catalog-card-description {
        font-size: 14px;
        line-height: 1.75;
    }
}
@media (max-width: 639px) {
    .mytes-catalog-filter-nav {
        margin-bottom: 32px;
    }

    .mytes-catalog-filter-list {
        gap: 12px 18px;
    }

    .mytes-catalog-filter-button {
        font-size: 14px;
    }

    .mytes-catalog-image-box {
        height: 255px;
    }

    .mytes-catalog-detail-button {
        opacity: 1;
        transform: translateX(0);
    }

    .mytes-catalog-pagination {
        margin-top: 38px;
    }
}
@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-sustainability-scroll-frame {
        width: min(66vw, 530px);
        height: min(43vh, 340px);
    }

    .mytes-sustainability-scroll-content-inner {
        max-width: 790px;
    }
}
@media (max-width: 639px) {
    .page-banner-hexagon {
        width: 17px;
        height: 16px;
    }

    .mytes-sustainability-scroll-frame {
        width: min(82vw, 390px);
        height: min(35vh, 255px);
    }

    .mytes-sustainability-scroll-pattern img {
        width: 160vw;
        height: 160vw;
    }

    .mytes-sustainability-scroll-content {
        padding: 22px;
    }

    .mytes-sustainability-scroll-content-inner {
        max-width: 520px;
    }

    .mytes-sustainability-scroll-lead {
        font-size: 15px;
        line-height: 1.5;
    }

    .mytes-sustainability-scroll-text {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.55;
    }
}
@media (max-width: 639px) {
    #mytes-products-section {
        min-height: auto;
    }

    .mytes-products-carousel-wrapper {
        margin-top: 34px;
        padding: 0 12px;
    }

    .mytes-products-slide {
        min-height: 310px;
    }

    .mytes-products-slide-inner,
    .mytes-products-carousel .owl-item.center .mytes-products-slide-inner {
        max-width: 290px;
        padding-top: 0;
    }

    .mytes-products-slide-title {
        font-size: 15px;
    }

    .mytes-products-image-frame,
    .mytes-products-carousel .owl-item.center .mytes-products-image-frame {
        width: 250px;
        height: 190px;
    }

    .mytes-products-carousel .owl-nav button.owl-prev {
        left: -17px;
    }

    .mytes-products-carousel .owl-nav button.owl-next {
        right: -17px;
    }

    .mytes-products-carousel .owl-nav svg {
        width: 28px;
        height: 40px;
    }
}
@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-products-carousel-wrapper {
        margin-top: 28px;
        padding: 0 22px;
    }

    .mytes-products-slide {
        min-height: 320px;
    }

    .mytes-products-slide-inner {
        max-width: 230px;
        padding-top: 58px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-slide-inner {
        max-width: 270px;
        padding-top: 0;
    }

    .mytes-products-image-frame {
        width: 190px;
        height: 140px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-image-frame {
        width: 250px;
        height: 180px;
    }
}
@media (min-width: 1024px) and (max-width: 1399px) {
    .mytes-products-carousel-wrapper {
        margin-top: -22px;
    }

    .mytes-products-slide-inner {
        max-width: 235px;
        padding-top: 68px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-slide-inner {
        max-width: 285px;
        padding-top: 0;
    }

    .mytes-products-image-frame {
        width: 185px;
        height: 138px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-image-frame {
        width: 265px;
        height: 180px;
    }
}
@media (min-width: 1440px) {
    #mytes-products-section {
        min-height: 565px;
    }

    .mytes-products-carousel-wrapper {
        margin-top: -34px;
        padding: 0 42px;
    }

    .mytes-products-slide {
        min-height: 354px;
    }

    .mytes-products-slide-inner {
        max-width: 290px;
        padding-top: 82px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-slide-inner {
        max-width: 340px;
        padding-top: 0;
    }

    .mytes-products-slide-title {
        font-size: 16px;
    }

    .mytes-products-image-frame {
        width: 230px;
        height: 165px;
    }

    .mytes-products-carousel .owl-item.center .mytes-products-image-frame {
        width: 320px;
        height: 215px;
    }

    .mytes-products-carousel .owl-nav button.owl-prev {
        left: -38px;
    }

    .mytes-products-carousel .owl-nav button.owl-next {
        right: -38px;
    }
}
#mytes-product-detail-section {
    min-height: 100vh;
}
.mytes-product-detail-gallery {
    display: grid;
    width: 100%;
    max-width: 1560px;
    min-height: 310px;
    align-items: center;
    margin: 38px auto 0;
    grid-template-columns:
        minmax(130px, 220px)
        78px
        minmax(360px, 680px)
        78px
        minmax(130px, 220px);
    justify-content: center;
    gap: 18px;
}
.mytes-product-detail-main-image-wrapper {
    display: flex;
    height: 290px;
    align-items: center;
    justify-content: center;
}
.mytes-product-detail-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mytes-product-detail-side-preview {
    display: flex;
    height: 220px;
    align-items: center;
    justify-content: center;
    opacity: 0.58;
    filter: blur(3px);
    transition:
        filter 300ms ease,
        opacity 300ms ease,
        transform 300ms ease;
}
.mytes-product-detail-side-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mytes-product-detail-side-preview-left {
    transform: translateX(-6px) scale(0.92);
}
.mytes-product-detail-side-preview-right {
    transform: translateX(6px) scale(0.92);
}
.mytes-product-detail-gallery:hover .mytes-product-detail-side-preview {
    opacity: 0.68;
    filter: blur(2px);
}
.mytes-product-detail-arrow {
    display: flex;
    width: 78px;
    height: 88px;
    align-items: center;
    justify-content: center;
    color: #315c9d;
    background-color: transparent;
    transition:
        color 260ms ease,
        transform 260ms ease;
}
.mytes-product-detail-arrow:hover {
    color: #1aa6ee;
}
.mytes-product-detail-arrow-prev:hover {
    transform: translateX(-5px);
}
.mytes-product-detail-arrow-next:hover {
    transform: translateX(5px);
}
.mytes-product-detail-arrow svg {
    width: 58px;
    height: 56px;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mytes-product-detail-gallery.has-single-image {
    grid-template-columns: minmax(360px, 680px);
}
.mytes-product-detail-gallery.has-single-image .mytes-product-detail-side-preview,
.mytes-product-detail-gallery.has-single-image .mytes-product-detail-arrow {
    display: none;
}
.mytes-product-detail-tags {
    display: flex;
    max-width: 1500px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 10px auto 0;
}
.mytes-product-detail-tag {
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid #1aa6ee;
    padding: 4px 11px;
    color: #28333d;
    background-color: rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.025em;
    text-align: center;
    transition:
        background-color 260ms ease,
        color 260ms ease,
        transform 260ms ease;
}
.mytes-product-detail-tag:hover {
    color: #ffffff;
    background-color: #1aa6ee;
    transform: translateY(-2px);
}
.mytes-product-detail-description {
    max-width: 1240px;
    margin: 28px auto 0;
    color: #252525;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0.005em;
    text-align: center;
}
.mytes-product-detail-description p + p {
    margin-top: 14px;
}
.mytes-product-detail-description ul,
.mytes-product-detail-description ol {
    display: inline-block;
    margin-top: 12px;
    text-align: left;
}
.mytes-product-detail-description ul {
    list-style-type: disc;
}
.mytes-product-detail-description ol {
    list-style-type: decimal;
}
.mytes-product-detail-description li + li {
    margin-top: 5px;
}
.mytes-product-detail-back-button {
    position: relative;
    display: inline-flex;
    width: 190px;
    height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    padding-right: 13px;
    padding-left: 18px;
    color: #ffffff;
    background-color: #173f80;
    clip-path: polygon(
        0 0,
        calc(100% - 19px) 0,
        100% 50%,
        calc(100% - 19px) 100%,
        0 100%
    );
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    transition:
        filter 300ms ease,
        transform 300ms ease;
}
.mytes-product-detail-back-button:hover {
    filter: drop-shadow(0 7px 12px rgba(23, 63, 128, 0.2));
    transform: translateY(-2px);
}
.mytes-product-detail-back-button svg {
    width: 27px;
    height: 19px;
    stroke: #1aa6ee;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 300ms ease,
        transform 300ms ease;
}
.mytes-product-detail-back-button:hover svg {
    stroke: #ffffff;
    transform: translateX(4px);
}
@media (min-width: 1024px) and (max-width: 1399px) {
    .mytes-product-detail-gallery {
        max-width: 1200px;
        min-height: 280px;
        grid-template-columns:
            minmax(110px, 170px)
            62px
            minmax(320px, 560px)
            62px
            minmax(110px, 170px);
        gap: 12px;
    }

    .mytes-product-detail-main-image-wrapper {
        height: 260px;
    }

    .mytes-product-detail-side-preview {
        height: 185px;
    }

    .mytes-product-detail-arrow {
        width: 62px;
    }

    .mytes-product-detail-arrow svg {
        width: 48px;
        height: 48px;
    }
}
@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-product-detail-gallery {
        max-width: 860px;
        min-height: 260px;
        grid-template-columns:
            82px
            48px
            minmax(280px, 500px)
            48px
            82px;
        gap: 8px;
        margin-top: 30px;
    }

    .mytes-product-detail-main-image-wrapper {
        height: 245px;
    }

    .mytes-product-detail-side-preview {
        height: 145px;
    }

    .mytes-product-detail-arrow {
        width: 48px;
        height: 72px;
    }

    .mytes-product-detail-arrow svg {
        width: 39px;
        height: 42px;
    }

    .mytes-product-detail-description {
        font-size: 13px;
    }
}
@media (max-width: 639px) {
    .mytes-product-detail-gallery {
        position: relative;
        display: flex;
        min-height: 220px;
        margin-top: 26px;
        padding: 0 36px;
    }

    .mytes-product-detail-main-image-wrapper {
        width: 100%;
        height: 220px;
    }

    .mytes-product-detail-side-preview {
        display: none;
    }

    .mytes-product-detail-arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 42px;
        height: 58px;
        transform: translateY(-50%);
    }

    .mytes-product-detail-arrow-prev {
        left: -2px;
    }

    .mytes-product-detail-arrow-next {
        right: -2px;
    }

    .mytes-product-detail-arrow-prev:hover {
        transform: translateY(-50%) translateX(-3px);
    }

    .mytes-product-detail-arrow-next:hover {
        transform: translateY(-50%) translateX(3px);
    }

    .mytes-product-detail-arrow svg {
        width: 34px;
        height: 38px;
    }

    .mytes-product-detail-tags {
        gap: 7px;
        margin-top: 12px;
    }

    .mytes-product-detail-tag {
        min-height: 28px;
        padding: 4px 9px;
        font-size: 10px;
    }

    .mytes-product-detail-description {
        margin-top: 24px;
        font-size: 13px;
        line-height: 1.68;
        text-align: left;
    }

    .mytes-product-detail-back-button {
        width: 180px;
        height: 40px;
        font-size: 10px;
    }
}
/* =========================================================
   İNŞAAT DETAY SAYFASI
   BÜYÜK VE REFERANSA YAKIN ÖLÇÜLER
   Bu blok main.css dosyasının en altında kalmalıdır.
========================================================= */

/* =========================================================
   ÜST SAYFA BANNERI
========================================================= */

#page-banner > div {
    height: 520px;
}

#page-banner h1 {
    font-size: 52px;
    line-height: 1.1;
}

#page-banner nav ol {
    font-size: 20px;
}

.page-banner-hexagon {
    width: 21px;
    height: 19px;
}

/* =========================================================
   MAVİ PROJE HERO ALANI
========================================================= */

.mytes-construction-detail-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background-color: #173f80;
}

.mytes-construction-detail-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mytes-construction-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(11, 51, 113, 0.97) 0%,
            rgba(15, 67, 141, 0.9) 46%,
            rgba(20, 80, 159, 0.68) 100%
        ),
        rgba(16, 70, 146, 0.5);
}

.mytes-construction-detail-hero-inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1700px);
    margin-right: auto;
    margin-left: auto;
    padding: 76px 7vw 68px;
}

.mytes-construction-detail-hero-content {
    width: min(100%, 820px);
    color: #ffffff;
}

.mytes-construction-detail-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.015em;
}

.mytes-construction-detail-title {
    max-width: 760px;
    margin-top: 14px;
    color: #ffffff;
    font-size: 52px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0.01em;
}

.mytes-construction-detail-summary {
    max-width: 780px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.78;
    letter-spacing: 0.002em;
}

.mytes-construction-detail-info {
    width: 100%;
    max-width: 780px;
    margin-top: 38px;
}

.mytes-construction-detail-info-row {
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(26, 166, 238, 0.95);
    padding: 15px 0;
    grid-template-columns:
        minmax(170px, 0.48fr)
        minmax(0, 1fr);
    gap: 24px;
}

.mytes-construction-detail-info-row span {
    color: rgba(255, 255, 255, 0.99);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.mytes-construction-detail-info-row strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

/* =========================================================
   ALT AÇIKLAMA VE ÖNE ÇIKAN GÖRSEL
========================================================= */

.mytes-construction-detail-body {
    background-color: #eeeae7;
}

.mytes-construction-detail-container {
    display: grid;
    width: min(100%, 1700px);
    margin-right: auto;
    margin-left: auto;
    padding: 72px 7vw 34px;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(480px, 0.98fr);
    gap: 76px;
}

.mytes-construction-detail-text {
    color: #252525;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.84;
    letter-spacing: 0.002em;
}

.mytes-construction-detail-text h2 {
    max-width: 640px;
    margin-bottom: 28px;
    color: #173f80;
    font-size: 35px;
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: 0.005em;
}

.mytes-construction-detail-text h3 {
    margin-top: 25px;
    margin-bottom: 13px;
    color: #173f80;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
}

.mytes-construction-detail-text p + p {
    margin-top: 18px;
}

.mytes-construction-detail-text ul,
.mytes-construction-detail-text ol {
    margin-top: 16px;
    padding-left: 22px;
}

.mytes-construction-detail-text ul {
    list-style-type: disc;
}

.mytes-construction-detail-text ol {
    list-style-type: decimal;
}

.mytes-construction-detail-featured-image {
    display: block;
    height: 500px;
    overflow: hidden;
    background-color: #d2cfcc;
}

.mytes-construction-detail-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 360ms ease,
        transform 520ms ease;
}

.mytes-construction-detail-featured-image:hover img {
    filter: brightness(0.93);
    transform: scale(1.045);
}

/* =========================================================
   DİĞER İNŞAATLAR BUTONU
========================================================= */

.mytes-construction-detail-back-button {
    position: relative;
    display: inline-flex;
    height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    margin-top: 26px;
    overflow: hidden;
    padding-right: 14px;
    padding-left: 18px;
    color: #ffffff;
    background-color: #173f80;
    clip-path: polygon(
        0 0,
        calc(100% - 18px) 0,
        100% 50%,
        calc(100% - 18px) 100%,
        0 100%
    );
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    transition:
        filter 300ms ease,
        transform 300ms ease;
}

.mytes-construction-detail-back-button:hover {
    filter: drop-shadow(
        0 7px 12px rgba(23, 63, 128, 0.22)
    );
    transform: translateY(-2px);
}

.mytes-construction-detail-back-button svg {
    width: 27px;
    height: 19px;
    stroke: #1aa6ee;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 300ms ease,
        transform 300ms ease;
}

.mytes-construction-detail-back-button:hover svg {
    stroke: #ffffff;
    transform: translateX(4px);
}

/* =========================================================
   ALT GALERİ
========================================================= */

.mytes-construction-detail-gallery-container {
    width: min(100%, 1700px);
    margin-right: auto;
    margin-left: auto;
    padding: 0 7vw 78px;
}

.mytes-construction-detail-gallery {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.mytes-construction-detail-gallery-item {
    display: block;
    height: 440px;
    overflow: hidden;
    background-color: #d2cfcc;
}

.mytes-construction-detail-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 360ms ease,
        transform 520ms ease;
}

.mytes-construction-detail-gallery-item:hover img {
    filter: brightness(0.93);
    transform: scale(1.045);
}

/* =========================================================
   ÇOK GENİŞ EKRANLAR
========================================================= */

@media (min-width: 1700px) {
    #page-banner > div {
        height: 570px;
    }

    #page-banner h1 {
        font-size: 60px;
    }

    #page-banner nav ol {
        font-size: 23px;
    }

    .mytes-construction-detail-hero {
        min-height: 760px;
    }

    .mytes-construction-detail-hero-inner {
        width: min(100%, 1840px);
        padding: 90px 7vw 78px;
    }

    .mytes-construction-detail-hero-content {
        width: min(100%, 930px);
    }

    .mytes-construction-detail-eyebrow {
        font-size: 18px;
    }

    .mytes-construction-detail-title {
        max-width: 860px;
        font-size: 60px;
    }

    .mytes-construction-detail-summary {
        max-width: 860px;
        font-size: 19px;
    }

    .mytes-construction-detail-info {
        max-width: 870px;
        margin-top: 44px;
    }

    .mytes-construction-detail-info-row {
        padding: 17px 0;
        grid-template-columns:
            minmax(190px, 0.48fr)
            minmax(0, 1fr);
    }

    .mytes-construction-detail-info-row span,
    .mytes-construction-detail-info-row strong {
        font-size: 17px;
    }

    .mytes-construction-detail-container {
        width: min(100%, 1840px);
        padding: 82px 7vw 38px;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(560px, 0.98fr);
        gap: 88px;
    }

    .mytes-construction-detail-text {
        font-size: 18px;
    }

    .mytes-construction-detail-text h2 {
        max-width: 720px;
        font-size: 40px;
    }

    .mytes-construction-detail-featured-image {
        height: 580px;
    }

    .mytes-construction-detail-gallery-container {
        width: min(100%, 1840px);
        padding: 0 7vw 88px;
    }

    .mytes-construction-detail-gallery-item {
        height: 510px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 640px) and (max-width: 1023px) {
    #page-banner > div {
        height: 430px;
    }

    #page-banner h1 {
        font-size: 38px;
    }

    #page-banner nav ol {
        font-size: 17px;
    }

    .mytes-construction-detail-hero {
        min-height: 590px;
    }

    .mytes-construction-detail-hero-inner {
        padding: 58px 40px 50px;
    }

    .mytes-construction-detail-hero-content {
        width: min(100%, 700px);
    }

    .mytes-construction-detail-title {
        font-size: 42px;
    }

    .mytes-construction-detail-summary {
        font-size: 15px;
    }

    .mytes-construction-detail-info {
        max-width: 680px;
        margin-top: 30px;
    }

    .mytes-construction-detail-info-row span,
    .mytes-construction-detail-info-row strong {
        font-size: 14px;
    }

    .mytes-construction-detail-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 40px 24px;
    }

    .mytes-construction-detail-text {
        font-size: 15px;
    }

    .mytes-construction-detail-text h2 {
        font-size: 31px;
    }

    .mytes-construction-detail-featured-image {
        height: 420px;
    }

    .mytes-construction-detail-gallery-container {
        padding: 0 40px 54px;
    }

    .mytes-construction-detail-gallery-item {
        height: 320px;
    }
}

/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 639px) {
    #page-banner > div {
        height: 360px;
    }

    #page-banner h1 {
        font-size: 29px;
    }

    #page-banner nav ol {
        font-size: 14px;
    }

    .page-banner-hexagon {
        width: 16px;
        height: 15px;
    }

    .mytes-construction-detail-hero {
        min-height: auto;
    }

    .mytes-construction-detail-hero-inner {
        padding: 44px 20px 40px;
    }

    .mytes-construction-detail-eyebrow {
        font-size: 12px;
    }

    .mytes-construction-detail-title {
        margin-top: 10px;
        font-size: 31px;
    }

    .mytes-construction-detail-summary {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.7;
    }

    .mytes-construction-detail-info {
        margin-top: 23px;
    }

    .mytes-construction-detail-info-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }

    .mytes-construction-detail-info-row span,
    .mytes-construction-detail-info-row strong {
        font-size: 12px;
    }

    .mytes-construction-detail-container {
        grid-template-columns: 1fr;
        gap: 23px;
        padding: 38px 20px 20px;
    }

    .mytes-construction-detail-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .mytes-construction-detail-text h2 {
        margin-bottom: 18px;
        font-size: 26px;
    }

    .mytes-construction-detail-featured-image {
        height: 275px;
    }

    .mytes-construction-detail-gallery-container {
        padding: 0 20px 40px;
    }

    .mytes-construction-detail-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mytes-construction-detail-gallery-item {
        height: 275px;
    }

    .mytes-construction-detail-back-button {
        height: 40px;
        font-size: 10px;
    }
}
/* =========================================================
   İNŞAAT LİSTELEME SAYFASI
   Benzersiz sınıflar: detay sayfasıyla çakışmaz.
========================================================= */

.mytes-construction-index-section {
    position: relative;
    overflow: hidden;
    background-color: #eeeae7;
}

.mytes-construction-index-shell {
    width: min(100%, 1560px);
    margin-right: auto;
    margin-left: auto;
    padding: 68px 64px 92px;
}

/* =========================================================
   KATEGORİ FİLTRELERİ
========================================================= */

.mytes-construction-index-filter-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.mytes-construction-index-filter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 30px;
}

.mytes-construction-index-filter-button {
    position: relative;
    padding: 0 0 7px;
    color: #173f80;
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.015em;
    transition: color 260ms ease;
}

.mytes-construction-index-filter-button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background-color: #1aa6ee;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.mytes-construction-index-filter-button:hover,
.mytes-construction-index-filter-button.is-active {
    color: #1aa6ee;
}

.mytes-construction-index-filter-button:hover::after,
.mytes-construction-index-filter-button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* =========================================================
   PROJE LİSTESİ
========================================================= */

.mytes-construction-index-list {
    display: flex;
    flex-direction: column;
    gap: 92px;
}

.mytes-construction-index-card {
    display: grid;
    width: min(100%, 1320px);
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(330px, 0.82fr);
    gap: 54px;
}

.mytes-construction-index-card.is-reversed {
    grid-template-columns:
        minmax(330px, 0.82fr)
        minmax(0, 1.42fr);
}

.mytes-construction-index-card.is-reversed .mytes-construction-index-image-link {
    order: 2;
}

.mytes-construction-index-card.is-reversed .mytes-construction-index-content {
    align-items: flex-end;
    order: 1;
    text-align: right;
}

/* =========================================================
   GÖRSEL
========================================================= */

.mytes-construction-index-image-link {
    position: relative;
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(26, 166, 238, 0.76);
    background-color: #d7d4d1;
}

.mytes-construction-index-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        filter 460ms ease,
        transform 540ms ease;
}

.mytes-construction-index-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 63, 128, 0);
    transition: background-color 420ms ease;
}

.mytes-construction-index-card:hover .mytes-construction-index-image {
    filter: brightness(0.96);
    transform: scale(1.055);
}

.mytes-construction-index-card:hover .mytes-construction-index-image-overlay {
    background-color: rgba(18, 63, 128, 0.1);
}

/* =========================================================
   METİN ALANI
========================================================= */

.mytes-construction-index-content {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.mytes-construction-index-category {
    color: #173f80;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.mytes-construction-index-title {
    max-width: 460px;
    margin-top: 18px;
    color: #1aa6ee;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0.01em;
}

.mytes-construction-index-title a {
    color: inherit;
    transition: color 280ms ease;
}

.mytes-construction-index-title a:hover {
    color: #173f80;
}

/* =========================================================
   İNŞAATI İNCELE BUTONU
========================================================= */

.mytes-construction-index-button {
    position: relative;
    display: inline-flex;
    height: 39px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: 24px;
    overflow: hidden;
    padding-right: 12px;
    padding-left: 16px;
    color: #ffffff;
    background-color: #173f80;
    clip-path: polygon(
        0 0,
        calc(100% - 17px) 0,
        100% 50%,
        calc(100% - 17px) 100%,
        0 100%
    );
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.15em;
    transition:
        background-color 300ms ease,
        filter 300ms ease,
        transform 300ms ease;
}

.mytes-construction-index-button svg {
    width: 25px;
    height: 18px;
    flex-shrink: 0;
    stroke: #1aa6ee;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 300ms ease,
        transform 300ms ease;
}

.mytes-construction-index-button:hover {
    background-color: #1a4d94;
    filter: drop-shadow(
        0 7px 11px rgba(23, 63, 128, 0.22)
    );
    transform: translateY(-2px);
}

.mytes-construction-index-button:hover svg {
    stroke: #ffffff;
    transform: translateX(4px);
}

/* =========================================================
   BOŞ DURUM
========================================================= */

.mytes-construction-index-empty {
    padding: 64px 20px 20px;
    color: #173f80;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

/* =========================================================
   GENİŞ EKRANLAR
========================================================= */

@media (min-width: 1700px) {
    .mytes-construction-index-shell {
        width: min(100%, 1740px);
        padding: 78px 72px 108px;
    }

    .mytes-construction-index-filter-nav {
        margin-bottom: 74px;
    }

    .mytes-construction-index-filter-button {
        font-size: 17px;
    }

    .mytes-construction-index-list {
        gap: 110px;
    }

    .mytes-construction-index-card {
        width: min(100%, 1480px);
        grid-template-columns:
            minmax(0, 1.46fr)
            minmax(370px, 0.82fr);
        gap: 68px;
    }

    .mytes-construction-index-card.is-reversed {
        grid-template-columns:
            minmax(370px, 0.82fr)
            minmax(0, 1.46fr);
    }

    .mytes-construction-index-image-link {
        height: 410px;
    }

    .mytes-construction-index-category {
        font-size: 16px;
    }

    .mytes-construction-index-title {
        max-width: 520px;
        margin-top: 20px;
        font-size: 40px;
    }

    .mytes-construction-index-button {
        height: 43px;
        margin-top: 28px;
        padding-right: 14px;
        padding-left: 18px;
        font-size: 11px;
    }

    .mytes-construction-index-button svg {
        width: 28px;
        height: 20px;
    }
}

/* =========================================================
   ORTA BOY MASAÜSTÜ
========================================================= */

@media (min-width: 1024px) and (max-width: 1399px) {
    .mytes-construction-index-shell {
        padding: 58px 48px 76px;
    }

    .mytes-construction-index-filter-nav {
        margin-bottom: 54px;
    }

    .mytes-construction-index-list {
        gap: 74px;
    }

    .mytes-construction-index-card {
        width: min(100%, 1160px);
        grid-template-columns:
            minmax(0, 1.34fr)
            minmax(280px, 0.78fr);
        gap: 42px;
    }

    .mytes-construction-index-card.is-reversed {
        grid-template-columns:
            minmax(280px, 0.78fr)
            minmax(0, 1.34fr);
    }

    .mytes-construction-index-image-link {
        height: 300px;
    }

    .mytes-construction-index-content {
        min-height: 180px;
    }

    .mytes-construction-index-title {
        max-width: 390px;
        margin-top: 14px;
        font-size: 29px;
    }

    .mytes-construction-index-button {
        margin-top: 20px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-construction-index-shell {
        padding: 48px 32px 64px;
    }

    .mytes-construction-index-filter-nav {
        margin-bottom: 42px;
    }

    .mytes-construction-index-filter-list {
        gap: 13px 21px;
    }

    .mytes-construction-index-filter-button {
        font-size: 14px;
    }

    .mytes-construction-index-list {
        gap: 54px;
    }

    .mytes-construction-index-card,
    .mytes-construction-index-card.is-reversed {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(220px, 0.78fr);
        gap: 24px;
    }

    .mytes-construction-index-card.is-reversed {
        grid-template-columns:
            minmax(220px, 0.78fr)
            minmax(0, 1.2fr);
    }

    .mytes-construction-index-image-link {
        height: 240px;
    }

    .mytes-construction-index-content {
        min-height: 150px;
    }

    .mytes-construction-index-category {
        font-size: 12px;
    }

    .mytes-construction-index-title {
        max-width: 310px;
        margin-top: 11px;
        font-size: 24px;
    }

    .mytes-construction-index-button {
        height: 34px;
        margin-top: 17px;
        font-size: 8px;
    }

    .mytes-construction-index-button svg {
        width: 21px;
        height: 15px;
    }
}

/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 639px) {
    .mytes-construction-index-shell {
        padding: 36px 18px 48px;
    }

    .mytes-construction-index-filter-nav {
        margin-bottom: 34px;
    }

    .mytes-construction-index-filter-list {
        gap: 12px 16px;
    }

    .mytes-construction-index-filter-button {
        font-size: 13px;
    }

    .mytes-construction-index-list {
        gap: 38px;
    }

    .mytes-construction-index-card,
    .mytes-construction-index-card.is-reversed {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .mytes-construction-index-card.is-reversed .mytes-construction-index-image-link,
    .mytes-construction-index-card.is-reversed .mytes-construction-index-content {
        order: initial;
    }

    .mytes-construction-index-card.is-reversed .mytes-construction-index-content {
        align-items: flex-start;
        text-align: left;
    }

    .mytes-construction-index-image-link {
        width: 100%;
        height: 230px;
    }

    .mytes-construction-index-content {
        min-height: auto;
    }

    .mytes-construction-index-category {
        font-size: 12px;
    }

    .mytes-construction-index-title {
        max-width: 100%;
        margin-top: 10px;
        font-size: 25px;
    }

    .mytes-construction-index-button {
        height: 36px;
        margin-top: 17px;
        font-size: 9px;
    }
}