/* =========================================================
   MYTES MÜHENDİSLİK
   HEADER VE TAM EKRAN MEGA MENÜ
========================================================= */

/* =========================================================
   GENEL FONT
========================================================= */

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
article,
div,
a,
button {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

/* =========================================================
   HEADER
========================================================= */

#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;
}

/* =========================================================
   DİL DROPDOWN
========================================================= */

.mytes-language-dropdown {
    position: relative;
}

.mytes-language-dropdown summary {
    user-select: none;
}

.mytes-language-dropdown[open] summary {
    border-color: rgba(24, 167, 237, 0.95);
}

.mytes-language-dropdown a {
    text-decoration: none;
}

/* =========================================================
   MEGA MENÜ TEMEL
========================================================= */

#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%
        );
}

/* =========================================================
   MASAÜSTÜ MEGA MENÜ GRID
   Yeni HTML'de alt menü ana menünün yanında açılır.
   Eski col-start-2/col-start-3 yapıları için de taşma engeli vardır.
========================================================= */

.mega-desktop-grid {
    position: relative;
    display: grid;
    width: 100%;
    align-items: center;
    gap: clamp(42px, 5vw, 110px);
    grid-template-columns:
        minmax(620px, 1fr)
        minmax(360px, 560px);
}

.mega-desktop-grid > nav,
.mega-desktop-nav {
    position: relative;
    z-index: 8;
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
}

.mega-desktop-menu-list {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.2vh, 30px);
}

.mega-desktop-menu-item {
    position: relative;
    width: max-content;
    max-width: 100%;
}

.mega-desktop-menu-item.has-desktop-submenu {
    z-index: 20;
}

/* Eski HTML'deki nav > ul spacing değerlerini de toparlar */
.mega-desktop-grid > nav > ul {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.2vh, 30px);
}

.mega-desktop-grid > nav > ul > li {
    position: relative;
    width: max-content;
    max-width: 100%;
}

/* =========================================================
   MASAÜSTÜ ANA MENÜ LİNKLERİ
========================================================= */

.desktop-main-link {
    position: relative;
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 20px;
    border: 0;
    padding: 0;
    color: #ffffff;
    background-color: transparent;
    font-family: inherit;
    font-size: clamp(22px, 2.05vw, 34px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0.16em;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.desktop-main-button {
    appearance: none;
}

.desktop-main-link-number {
    display: inline-flex;
    min-width: clamp(76px, 6.5vw, 112px);
    flex-shrink: 0;
}

.desktop-main-link-text {
    display: inline-block;
    max-width: 520px;
}

.desktop-main-link:hover,
.desktop-main-link:focus-visible,
.desktop-main-link.is-active {
    color: #18a7ed !important;
}

/* Eski Tailwind class'lı ana linklerde yazı boyutu bozulmasın */
.mega-desktop-grid .desktop-main-link.flex {
    display: inline-flex;
}

/* =========================================================
   MASAÜSTÜ ALT MENÜLER
   Yeni HTML: menünün hemen yanında açılır.
========================================================= */

.has-desktop-submenu > .desktop-mega-submenu {
    position: absolute;
    top: 50%;
    left: calc(100% + clamp(26px, 2.5vw, 54px));
    z-index: 30;
    width: max-content;
    max-width: min(520px, 38vw);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-12px, -50%, 0);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease;
}

/* Eski HTML fallback: ikinci grid gibi uzak durmasın, görselin üstüne binmesin */
.mega-desktop-grid > .desktop-mega-submenu:not(.has-desktop-submenu .desktop-mega-submenu) {
    position: absolute;
    top: 50%;
    left: min(58vw, 760px);
    z-index: 30;
    width: max-content;
    max-width: min(420px, 30vw);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-12px, -50%, 0);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease;
}

.desktop-mega-submenu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, -50%, 0);
}

.desktop-mega-submenu-inner {
    display: flex;
    align-items: flex-center;
    gap: clamp(16px, 1.4vw, 24px);
    min-width: 330px;
    padding: 18px 22px;

}

/* Eski HTML'de inner class yoksa direkt içteki flex div'i panel gibi gösterir */
.desktop-mega-submenu > .flex {
    display: flex;
    align-items: flex-start;
    gap: clamp(16px, 1.4vw, 24px);
    min-width: 330px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(
            135deg,
            rgba(38, 42, 44, 0.97),
            rgba(30, 34, 36, 0.93)
        );
    box-shadow:
        0 18px 46px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.desktop-mega-submenu-arrow,
.desktop-mega-submenu > .flex > svg {
    width: clamp(38px, 3vw, 54px);
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
    color: #ffffff;
    opacity: 0.92;
}

.desktop-mega-submenu-list,
.desktop-mega-submenu ul {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.25vh, 18px);
    min-width: 0;
}

.desktop-mega-submenu-list a,
.desktop-mega-submenu a {
    display: block;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(18px, 1.4vw, 28px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-decoration: none;
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.desktop-mega-submenu-list a:hover,
.desktop-mega-submenu-list a:focus-visible,
.desktop-mega-submenu a:hover,
.desktop-mega-submenu a:focus-visible {
    color: #18a7ed;
    transform: translateX(4px);
}

/* =========================================================
   SAĞ GÖRSEL
========================================================= */

.mega-menu-visual,
.mega-desktop-grid > .col-start-3 {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
    pointer-events: none;
}

.mega-menu-visual-frame {
    display: flex;
    aspect-ratio: 1.44 / 1;
    width: min(100%, 550px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(32, 36, 38, 0.8);
    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.28);
}

.mega-menu-visual-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-visual img,
.mega-desktop-grid > .col-start-3 img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* =========================================================
   MOBİL ACCORDION
========================================================= */

.mobile-mega-submenu {
    display: none;
}

.mobile-mega-trigger {
    border: 0;
    background-color: transparent;
    font-family: inherit;
    cursor: pointer;
}

.mobile-mega-trigger.is-active {
    color: #18a7ed;
}

.mobile-mega-chevron {
    transition: transform 220ms ease;
}

.mobile-mega-chevron.is-open {
    transform: rotate(180deg);
}

/* =========================================================
   ERİŞİLEBİLİRLİK
========================================================= */

.desktop-main-link:focus-visible,
.desktop-mega-submenu-list a:focus-visible,
.desktop-mega-submenu a:focus-visible,
.mobile-mega-trigger:focus-visible,
.mobile-mega-submenu a:focus-visible {
    outline: 2px solid #18a7ed;
    outline-offset: 5px;
}

/* =========================================================
   MASAÜSTÜ RESPONSIVE
========================================================= */

@media (min-width: 1024px) and (max-width: 1279px) {
    .mega-desktop-grid {
        gap: 34px;
        grid-template-columns:
            minmax(560px, 1fr)
            minmax(280px, 360px);
    }

    .mega-desktop-menu-list,
    .mega-desktop-grid > nav > ul {
        gap: 18px;
    }

    .desktop-main-link {
        gap: 16px;
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .desktop-main-link-number {
        min-width: 76px;
    }

    .desktop-main-link-text {
        max-width: 390px;
    }

    .has-desktop-submenu > .desktop-mega-submenu {
        left: calc(100% + 22px);
        max-width: 360px;
    }

    .mega-desktop-grid > .desktop-mega-submenu:not(.has-desktop-submenu .desktop-mega-submenu) {
        left: min(54vw, 610px);
        max-width: 320px;
    }

    .desktop-mega-submenu-inner,
    .desktop-mega-submenu > .flex {
        min-width: 280px;
        padding: 15px 17px;
        gap: 13px;
    }

    .desktop-mega-submenu-arrow,
    .desktop-mega-submenu > .flex > svg {
        width: 34px;
    }

    .desktop-mega-submenu-list a,
    .desktop-mega-submenu a {
        font-size: 17px;
        letter-spacing: 0.08em;
    }

    .mega-menu-visual-frame {
        width: min(100%, 330px);
        opacity: 0.72;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .mega-desktop-grid {
        gap: 56px;
        grid-template-columns:
            minmax(680px, 1fr)
            minmax(340px, 460px);
    }

    .desktop-main-link {
        font-size: 28px;
        letter-spacing: 0.14em;
    }

    .desktop-main-link-text {
        max-width: 480px;
    }

    .has-desktop-submenu > .desktop-mega-submenu {
        max-width: 430px;
    }

    .mega-desktop-grid > .desktop-mega-submenu:not(.has-desktop-submenu .desktop-mega-submenu) {
        left: min(56vw, 720px);
        max-width: 380px;
    }

    .desktop-mega-submenu-list a,
    .desktop-mega-submenu a {
        font-size: 22px;
    }

    .mega-menu-visual-frame {
        width: min(100%, 430px);
    }
}

@media (min-width: 1536px) {
    .mega-desktop-grid {
        grid-template-columns:
            minmax(760px, 1fr)
            minmax(420px, 620px);
    }
}

@media (max-width: 1023px) {
    .mega-desktop-grid {
        display: none;
    }
}

/* =========================================================
   HAREKET AZALTMA
========================================================= */

@media (prefers-reduced-motion: reduce) {
    #site-header,
    .site-header-shell,
    .site-header-background,
    .site-header-texture,
    .desktop-main-link,
    .desktop-mega-submenu,
    .desktop-mega-submenu-list a,
    .desktop-mega-submenu a,
    .mobile-mega-chevron {
        transition: none;
    }
}

/* =========================================================
   ANASAYFA MARKA ŞERİDİ
========================================================= */

.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) {
    .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;
}
.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;
    }
}
/* =========================================================
   MEKANİK TESİSAT - HİZMETLER
========================================================= */

.mytes-mechanical-services-section {
    position: relative;
    overflow: hidden;
    background-color: #eeeae7;
}

.mytes-mechanical-services-pattern {
    position: absolute;
    top: -75px;
    right: -95px;
    width: 390px;
    max-width: 42vw;
    opacity: 0.72;
    pointer-events: none;
}

.mytes-mechanical-services-shell {
    position: relative;
    width: min(100%, 1500px);
    margin-right: auto;
    margin-left: auto;
    padding: 76px 74px 92px;
}

.mytes-mechanical-service-row {
    display: grid;
    align-items: center;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(390px, 0.95fr);
    gap: 72px;
}

.mytes-mechanical-service-row + .mytes-mechanical-service-row {
    margin-top: 72px;
}

.mytes-mechanical-service-row.is-reversed {
    grid-template-columns:
        minmax(390px, 0.95fr)
        minmax(0, 1fr);
}

.mytes-mechanical-service-row.is-reversed .mytes-mechanical-service-content {
    order: 2;
}

.mytes-mechanical-service-row.is-reversed .mytes-mechanical-service-image-wrapper {
    order: 1;
}

.mytes-mechanical-service-content {
    max-width: 620px;
}

.mytes-mechanical-service-title {
    max-width: 470px;
    color: #173f80;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.mytes-mechanical-service-description {
    margin-top: 21px;
    color: #252525;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
    letter-spacing: 0.002em;
}

.mytes-mechanical-service-image-wrapper {
    height: 365px;
    overflow: hidden;
    background-color: #d8d5d2;
}

.mytes-mechanical-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.mytes-mechanical-service-row:hover .mytes-mechanical-service-image {
    transform: scale(1.045);
}

/* =========================================================
   MEKANİK TESİSAT - PROJE LİSTESİ
========================================================= */

.mytes-mechanical-index-section {
    background-color: #eeeae7;
}

.mytes-mechanical-index-shell {
    width: min(100%, 1560px);
    margin-right: auto;
    margin-left: auto;
    padding: 76px 64px 96px;
}

.mytes-mechanical-index-heading {
    margin-bottom: 38px;
    text-align: center;
}

.mytes-mechanical-index-eyebrow {
    display: block;
    color: #1aa6ee;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.mytes-mechanical-index-heading h2 {
    margin-top: 13px;
    color: #173f80;
    font-size: 37px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mytes-mechanical-filter-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 58px;
}

.mytes-mechanical-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 28px;
}

.mytes-mechanical-filter-button {
    position: relative;
    padding-bottom: 6px;
    color: #173f80;
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
    transition: color 260ms ease;
}

.mytes-mechanical-filter-button::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background-color: #1aa6ee;
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity 260ms ease,
        transform 260ms ease;
}

.mytes-mechanical-filter-button:hover,
.mytes-mechanical-filter-button.is-active {
    color: #1aa6ee;
}

.mytes-mechanical-filter-button:hover::after,
.mytes-mechanical-filter-button.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.mytes-mechanical-index-list {
    display: flex;
    flex-direction: column;
    gap: 82px;
}

.mytes-mechanical-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-mechanical-index-card.is-reversed {
    grid-template-columns:
        minmax(330px, 0.82fr)
        minmax(0, 1.42fr);
}

.mytes-mechanical-index-card.is-reversed .mytes-mechanical-index-image-link {
    order: 2;
}

.mytes-mechanical-index-card.is-reversed .mytes-mechanical-index-content {
    align-items: flex-end;
    order: 1;
    text-align: right;
}

.mytes-mechanical-index-image-link {
    display: block;
    height: 350px;
    overflow: hidden;
    border: 1px solid rgba(26, 166, 238, 0.58);
}

.mytes-mechanical-index-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
}

.mytes-mechanical-index-card:hover .mytes-mechanical-index-image {
    transform: scale(1.045);
}

.mytes-mechanical-index-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mytes-mechanical-index-category {
    color: #173f80;
    font-size: 14px;
    font-weight: 500;
}

.mytes-mechanical-index-title {
    max-width: 470px;
    margin-top: 17px;
    color: #1aa6ee;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
}

.mytes-mechanical-index-description {
    max-width: 470px;
    margin-top: 15px;
    color: #434343;
    font-size: 14px;
    line-height: 1.7;
}

.mytes-mechanical-index-button {
    display: inline-flex;
    height: 39px;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    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;
    letter-spacing: 0.14em;
    transition:
        filter 300ms ease,
        transform 300ms ease;
}

.mytes-mechanical-index-button svg {
    width: 25px;
    height: 18px;
    stroke: #1aa6ee;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 300ms ease;
}

.mytes-mechanical-index-button:hover {
    filter: drop-shadow(
        0 7px 11px rgba(23, 63, 128, 0.22)
    );
    transform: translateY(-2px);
}

.mytes-mechanical-index-button:hover svg {
    transform: translateX(4px);
}

.mytes-mechanical-empty {
    padding: 52px 20px;
    color: #173f80;
    font-size: 16px;
    text-align: center;
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-mechanical-services-shell {
        padding: 58px 36px 70px;
    }

    .mytes-mechanical-service-row,
    .mytes-mechanical-service-row.is-reversed {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.9fr);
        gap: 34px;
    }

    .mytes-mechanical-service-image-wrapper {
        height: 285px;
    }

    .mytes-mechanical-service-title {
        font-size: 24px;
    }

    .mytes-mechanical-service-description {
        font-size: 13px;
    }

    .mytes-mechanical-index-shell {
        padding: 58px 34px 72px;
    }

    .mytes-mechanical-index-card,
    .mytes-mechanical-index-card.is-reversed {
        grid-template-columns:
            minmax(0, 1.18fr)
            minmax(230px, 0.82fr);
        gap: 26px;
    }

    .mytes-mechanical-index-image-link {
        height: 245px;
    }

    .mytes-mechanical-index-title {
        font-size: 25px;
    }
}

/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 639px) {
    .mytes-mechanical-services-pattern {
        top: -35px;
        right: -80px;
        width: 235px;
    }

    .mytes-mechanical-services-shell {
        padding: 42px 20px 54px;
    }

    .mytes-mechanical-service-row,
    .mytes-mechanical-service-row.is-reversed {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .mytes-mechanical-service-row + .mytes-mechanical-service-row {
        margin-top: 42px;
    }

    .mytes-mechanical-service-row.is-reversed .mytes-mechanical-service-content,
    .mytes-mechanical-service-row.is-reversed .mytes-mechanical-service-image-wrapper {
        order: initial;
    }

    .mytes-mechanical-service-title {
        font-size: 24px;
    }

    .mytes-mechanical-service-description {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.7;
    }

    .mytes-mechanical-service-image-wrapper {
        width: 100%;
        height: 235px;
    }

    .mytes-mechanical-index-shell {
        padding: 46px 20px 58px;
    }

    .mytes-mechanical-index-heading h2 {
        font-size: 28px;
    }

    .mytes-mechanical-filter-nav {
        margin-bottom: 38px;
    }

    .mytes-mechanical-filter-button {
        font-size: 13px;
    }

    .mytes-mechanical-index-list {
        gap: 42px;
    }

    .mytes-mechanical-index-card,
    .mytes-mechanical-index-card.is-reversed {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }

    .mytes-mechanical-index-card.is-reversed .mytes-mechanical-index-image-link,
    .mytes-mechanical-index-card.is-reversed .mytes-mechanical-index-content {
        order: initial;
    }

    .mytes-mechanical-index-card.is-reversed .mytes-mechanical-index-content {
        align-items: flex-start;
        text-align: left;
    }

    .mytes-mechanical-index-image-link {
        width: 100%;
        height: 235px;
    }

    .mytes-mechanical-index-title {
        margin-top: 10px;
        font-size: 26px;
    }

    .mytes-mechanical-index-description {
        font-size: 13px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI
========================================================= */

.mytes-contact-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background-color: #ffffff;
}

.mytes-contact-honeycomb {
    pointer-events: none;
    position: absolute;
    top: -68px;
    right: -80px;
    width: 410px;
    opacity: 0.92;
}

.mytes-contact-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 1540px);
    margin-right: auto;
    margin-left: auto;
    padding: 74px 64px 88px;
}

.mytes-contact-info-grid {
    display: grid;
    max-width: 560px;
    grid-template-columns: 1fr;
    gap: 28px;
}

.mytes-contact-info-card {
    max-width: 520px;
}

.mytes-contact-info-title {
    color: #173f80;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: 0.015em;
}

.mytes-contact-info-line {
    width: 64px;
    height: 1px;
    margin-top: 12px;
    background-color: #1aa6ee;
}

.mytes-contact-info-address {
    max-width: 390px;
    margin-top: 18px;
    color: #262626;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0.005em;
}

.mytes-contact-info-link {
    display: block;
    width: fit-content;
    margin-top: 12px;
    color: #1c1c1c;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.005em;
    transition:
        color 260ms ease,
        transform 260ms ease;
}

.mytes-contact-info-link:hover {
    color: #1aa6ee;
    transform: translateX(3px);
}

.mytes-contact-form-area {
    max-width: 1180px;
    margin-top: 88px;
}

.mytes-contact-form-title {
    color: #173f80;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.mytes-contact-form-title-line {
    width: 74px;
    height: 1px;
    margin-top: 14px;
    background-color: #1aa6ee;
}

.mytes-contact-form-description {
    margin-top: 23px;
    color: #282828;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.mytes-contact-form {
    margin-top: 28px;
}

.mytes-contact-form-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mytes-contact-input,
.mytes-contact-textarea {
    display: block;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0;
    color: #242424;
    background-color: #f0f0f0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    outline: none;
    transition:
        border-color 260ms ease,
        background-color 260ms ease,
        box-shadow 260ms ease;
}

.mytes-contact-input {
    height: 48px;
    padding: 0 16px;
}

.mytes-contact-textarea {
    min-height: 190px;
    padding: 15px 16px;
    resize: vertical;
}

.mytes-contact-input::placeholder,
.mytes-contact-textarea::placeholder {
    color: rgba(39, 39, 39, 0.48);
}

.mytes-contact-input:focus,
.mytes-contact-textarea:focus {
    border-color: #1aa6ee;
    background-color: #ffffff;
    box-shadow:
        0 0 0 3px rgba(26, 166, 238, 0.1);
}

.mytes-contact-submit-button {
    display: inline-flex;
    height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: 26px;
    padding-right: 11px;
    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;
    letter-spacing: 0.15em;
    transition:
        background-color 280ms ease,
        filter 280ms ease,
        transform 280ms ease;
}

.mytes-contact-submit-button svg {
    width: 23px;
    height: 17px;
    stroke: #1aa6ee;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition:
        stroke 280ms ease,
        transform 280ms ease;
}

.mytes-contact-submit-button:hover {
    background-color: #1aa6ee;
    filter:
        drop-shadow(
            0 7px 10px rgba(23, 63, 128, 0.18)
        );
    transform: translateY(-2px);
}

.mytes-contact-submit-button:hover svg {
    stroke: #ffffff;
    transform: translateX(3px);
}

.mytes-contact-submit-button:disabled {
    cursor: wait;
    opacity: 0.68;
}

/* =========================================================
   İLETİŞİM SAYFASI - ÇOK GENİŞ EKRANLAR
========================================================= */

@media (min-width: 1700px) {
    .mytes-contact-shell {
        width: min(100%, 1700px);
        padding: 90px 72px 108px;
    }

    .mytes-contact-honeycomb {
        top: -84px;
        right: -90px;
        width: 520px;
    }

    .mytes-contact-info-grid {
        max-width: 680px;
        gap: 34px;
    }

    .mytes-contact-info-title {
        font-size: 35px;
    }

    .mytes-contact-info-address,
    .mytes-contact-info-link {
        font-size: 15px;
    }

    .mytes-contact-form-area {
        max-width: 1320px;
        margin-top: 106px;
    }

    .mytes-contact-form-title {
        font-size: 37px;
    }

    .mytes-contact-form-description {
        font-size: 16px;
    }

    .mytes-contact-input {
        height: 54px;
    }

    .mytes-contact-input,
    .mytes-contact-textarea {
        font-size: 14px;
    }

    .mytes-contact-textarea {
        min-height: 220px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI - TABLET
========================================================= */

@media (min-width: 640px) and (max-width: 1023px) {
    .mytes-contact-section {
        min-height: auto;
    }

    .mytes-contact-honeycomb {
        top: -40px;
        right: -76px;
        width: 330px;
        opacity: 0.68;
    }

    .mytes-contact-shell {
        padding: 58px 40px 68px;
    }

    .mytes-contact-info-title {
        font-size: 26px;
    }

    .mytes-contact-form-area {
        margin-top: 68px;
    }

    .mytes-contact-form-title {
        font-size: 29px;
    }

    .mytes-contact-form-grid {
        gap: 16px;
    }
}

/* =========================================================
   İLETİŞİM SAYFASI - MOBİL
========================================================= */

@media (max-width: 639px) {
    .mytes-contact-section {
        min-height: auto;
    }

    .mytes-contact-honeycomb {
        top: -24px;
        right: -105px;
        width: 260px;
        opacity: 0.34;
    }

    .mytes-contact-shell {
        padding: 44px 20px 54px;
    }

    .mytes-contact-info-grid {
        gap: 30px;
    }

    .mytes-contact-info-title {
        font-size: 24px;
    }

    .mytes-contact-info-address {
        max-width: 280px;
        margin-top: 15px;
        font-size: 12px;
    }

    .mytes-contact-info-link {
        margin-top: 10px;
        font-size: 12px;
    }

    .mytes-contact-form-area {
        margin-top: 60px;
    }

    .mytes-contact-form-title {
        font-size: 27px;
    }

    .mytes-contact-form-description {
        margin-top: 18px;
        font-size: 13px;
    }

    .mytes-contact-form {
        margin-top: 23px;
    }

    .mytes-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .mytes-contact-input {
        height: 46px;
    }

    .mytes-contact-input,
    .mytes-contact-textarea {
        font-size: 13px;
    }

    .mytes-contact-textarea {
        min-height: 160px;
    }
}
/* =========================================================
   İNSAN KAYNAKLARI SAYFASI
========================================================= */

.mytes-career-shell {
    position: relative;
    z-index: 2;
    width: min(100%, 1540px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 64px;
    padding-left: 64px;
}

/* =========================================================
   İNSAN KAYNAKLARI - GİRİŞ ALANI
========================================================= */

.mytes-career-intro {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.mytes-career-intro-pattern {
    pointer-events: none;
    position: absolute;
    top: -84px;
    right: -92px;
    width: 360px;
    opacity: 0.95;
}

.mytes-career-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.98fr)
        minmax(460px, 1.02fr);
    align-items: center;
    gap: 78px;
    padding-top: 76px;
    padding-bottom: 76px;
}

.mytes-career-intro-title {
    max-width: 570px;
    color: #173f80;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.mytes-career-intro-text {
    max-width: 690px;
    color: #272727;
    white-space: pre-line;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.006em;
}

.mytes-career-intro-image-wrapper {
    position: relative;
    z-index: 1;
}

.mytes-career-intro-image {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   İNSAN KAYNAKLARI - KATILIM ÇAĞRISI
========================================================= */

.mytes-career-join {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    background-color: #202526;
}

.mytes-career-join-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: cover;
}

.mytes-career-join-overlay {
  
}

.mytes-career-join-content {
    display: flex;
    min-height: 355px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 54px;
    padding-bottom: 54px;
    text-align: center;
}

.mytes-career-join-title {
    color: #1aa6ee;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.018em;
}

.mytes-career-join-text {
    max-width: 1050px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.94);
    white-space: pre-line;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.008em;
}

.mytes-career-join-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 31px;
}

.mytes-career-arrow-button,
.mytes-career-internship-button {
    display: inline-flex;
    min-width: 172px;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 14px;
    padding-left: 18px;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 20px) 0,
        100% 50%,
        calc(100% - 20px) 100%,
        0 100%
    );
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition:
        filter 280ms ease,
        transform 280ms ease;
}

.mytes-career-arrow-button:hover,
.mytes-career-internship-button:hover {
    filter:
        brightness(1.08)
        drop-shadow(
            0 8px 12px rgba(0, 0, 0, 0.22)
        );
    transform: translateY(-3px);
}

.mytes-career-arrow-button-icon {
    font-size: 15px;
    font-weight: 700;
}

.mytes-career-arrow-button svg,
.mytes-career-internship-button svg {
    width: 27px;
    height: 19px;
    flex-shrink: 0;
    stroke: #ffffff;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 280ms ease;
}

.mytes-career-arrow-button:hover svg,
.mytes-career-internship-button:hover svg {
    transform: translateX(3px);
}

/* =========================================================
   İNSAN KAYNAKLARI - STAJ PROGRAMI
========================================================= */

.mytes-career-internship-section {
    background-color: #ffffff;
}

.mytes-career-internship-section .mytes-career-shell {
    padding-top: 72px;
    padding-bottom: 72px;
}

.mytes-career-internship-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 3px solid #1aa6ee;
}

.mytes-career-internship-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mytes-career-internship-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(22, 54, 115, 0.84) 0%,
            rgba(22, 54, 115, 0.78) 44%,
            rgba(22, 54, 115, 0.68) 100%
        );
}

.mytes-career-internship-content {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 470px;
    grid-template-columns:
        minmax(260px, 0.76fr)
        minmax(0, 1.24fr);
    align-items: center;
    gap: 70px;
    padding: 54px 70px;
}

.mytes-career-internship-title {
    max-width: 390px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.mytes-career-internship-text {
    color: rgba(255, 255, 255, 0.96);
    white-space: pre-line;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.006em;
}

.mytes-career-internship-button {
    min-width: 196px;
    margin-top: 27px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================================
   İNSAN KAYNAKLARI - SOSYAL SORUMLULUK
========================================================= */

.mytes-career-social {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background-color: #24271c;
}

.mytes-career-social-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mytes-career-social-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(32, 33, 18, 0.72),
            rgba(27, 30, 19, 0.64),
            rgba(32, 33, 18, 0.72)
        );
}

.mytes-career-social-content {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
    padding-bottom: 72px;
    text-align: center;
}

.mytes-career-social-title {
    max-width: 1100px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.mytes-career-social-subtitle {
    margin-top: 30px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.045em;
}

.mytes-career-social-text {
    max-width: 1040px;
    margin-top: 29px;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-line;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.88;
    letter-spacing: 0.006em;
}

/* =========================================================
   İNSAN KAYNAKLARI - GENİŞ EKRAN
========================================================= */

@media (min-width: 1700px) {
    .mytes-career-shell {
        width: min(100%, 1700px);
        padding-right: 72px;
        padding-left: 72px;
    }

    .mytes-career-intro-grid {
        grid-template-columns:
            minmax(0, 0.98fr)
            minmax(540px, 1.02fr);
        gap: 98px;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .mytes-career-intro-title {
        font-size: 42px;
    }

    .mytes-career-intro-text {
        max-width: 760px;
        font-size: 18px;
    }

    .mytes-career-intro-image {
        height: 560px;
    }

    .mytes-career-join-title {
        font-size: 39px;
    }

    .mytes-career-join-text {
        max-width: 1200px;
        font-size: 17px;
    }

    .mytes-career-internship-card,
    .mytes-career-internship-content {
        min-height: 540px;
    }

    .mytes-career-internship-title {
        font-size: 44px;
    }

    .mytes-career-internship-text {
        font-size: 17px;
    }

    .mytes-career-social,
    .mytes-career-social-content {
        min-height: 590px;
    }

    .mytes-career-social-title {
        font-size: 42px;
    }

    .mytes-career-social-subtitle {
        font-size: 28px;
    }

    .mytes-career-social-text {
        max-width: 1160px;
        font-size: 17px;
    }
}

/* =========================================================
   İNSAN KAYNAKLARI - TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {
    .mytes-career-shell {
        padding-right: 40px;
        padding-left: 40px;
    }

    .mytes-career-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .mytes-career-intro-title {
        font-size: 31px;
    }

    .mytes-career-intro-text {
        font-size: 14px;
    }

    .mytes-career-intro-image {
        height: 410px;
    }

    .mytes-career-intro-pattern {
        right: -110px;
        width: 310px;
    }

    .mytes-career-internship-content {
        gap: 38px;
        padding: 40px;
    }

    .mytes-career-internship-title {
        font-size: 31px;
    }

    .mytes-career-internship-text {
        font-size: 14px;
    }

    .mytes-career-social-title {
        font-size: 31px;
    }

    .mytes-career-social-subtitle {
        font-size: 22px;
    }

    .mytes-career-social-text {
        font-size: 14px;
    }
}

/* =========================================================
   İNSAN KAYNAKLARI - MOBİL
========================================================= */

@media (max-width: 767px) {
    .mytes-career-shell {
        padding-right: 20px;
        padding-left: 20px;
    }

    .mytes-career-intro-pattern {
        top: -30px;
        right: -115px;
        width: 245px;
        opacity: 0.42;
    }

    .mytes-career-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 46px;
        padding-bottom: 48px;
    }

    .mytes-career-intro-title {
        max-width: 390px;
        font-size: 27px;
    }

    .mytes-career-intro-text {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.78;
    }

    .mytes-career-intro-image {
        height: 260px;
    }

    .mytes-career-join,
    .mytes-career-join-content {
        min-height: 390px;
    }

    .mytes-career-join-content {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .mytes-career-join-title {
        font-size: 27px;
    }

    .mytes-career-join-text {
        margin-top: 19px;
        font-size: 14px;
        line-height: 1.75;
    }

    .mytes-career-join-buttons {
        gap: 13px;
        margin-top: 25px;
    }

    .mytes-career-arrow-button {
        min-width: 150px;
        height: 42px;
        font-size: 11px;
    }

    .mytes-career-internship-section .mytes-career-shell {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .mytes-career-internship-card {
        min-height: 620px;
    }

    .mytes-career-internship-content {
        display: flex;
        min-height: 620px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 23px;
        padding: 30px 24px;
    }

    .mytes-career-internship-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(22, 54, 115, 0.96) 0%,
                rgba(22, 54, 115, 0.82) 68%,
                rgba(22, 54, 115, 0.58) 100%
            );
    }

    .mytes-career-internship-title {
        font-size: 29px;
    }

    .mytes-career-internship-text {
        font-size: 14px;
        line-height: 1.76;
    }

    .mytes-career-internship-button {
        min-width: 184px;
        height: 42px;
        margin-top: 22px;
        font-size: 10px;
    }

    .mytes-career-social,
    .mytes-career-social-content {
        min-height: 590px;
    }

    .mytes-career-social-content {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .mytes-career-social-title {
        font-size: 27px;
    }

    .mytes-career-social-subtitle {
        margin-top: 20px;
        font-size: 20px;
    }

    .mytes-career-social-text {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.76;
    }
}
#numbers-section .numbers-line {
    transform-origin: left center;
    will-change: transform, opacity;
}

#numbers-section .numbers-dot {
    will-change: transform, opacity;
}

#numbers-section .numbers-stat {
    will-change: transform, opacity;
}

#numbers-section .numbers-mobile-item {
    will-change: transform, opacity;
}

#numbers-section .numbers-value {
    min-width: 72px;
    font-variant-numeric: tabular-nums;
}

#numbers-section .numbers-title-animation {
    will-change: transform, opacity;
}
/* =========================================================
   KALİTE ROBOTU KONTROL SİSTEMİ
========================================================= */

.mytes-quality-robot-section {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    background-color: #262626;
}

/* =========================================================
   ARKA PLAN
========================================================= */

.mytes-quality-robot-background {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 68% 32%;
}

.mytes-quality-robot-background-dark {
    height: 100%;
    background-color: #262626;
}

.mytes-quality-robot-background-light {
    height: 100%;
    background-color: #ffffff;
}

/* =========================================================
   ANA YAPI
========================================================= */

.mytes-quality-robot-shell {
    position: relative;
    width: min(100%, 1920px);
    min-height: 790px;
    margin-right: auto;
    margin-left: auto;
}

/* =========================================================
   SOL METİN ALANI
========================================================= */

.mytes-quality-robot-content {
    position: relative;
    z-index: 3;
    width: min(100%, 930px);
    padding-top: 88px;
    padding-right: 40px;
    padding-bottom: 72px;
    padding-left: clamp(42px, 4.2vw, 86px);
    color: #ffffff;
}

.mytes-quality-robot-title {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: clamp(42px, 3vw, 62px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0.025em;
}

.mytes-quality-robot-title span + span {
    margin-top: 4px;
}

.mytes-quality-robot-description {
    max-width: 900px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.015em;
    white-space: pre-line;
}

.mytes-quality-robot-features {
    margin-top: 35px;
}

.mytes-quality-robot-features-title {
    color: #ffffff;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.mytes-quality-robot-features-list {
    margin-top: 12px;
}

.mytes-quality-robot-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.36;
    letter-spacing: 0.008em;
}

.mytes-quality-robot-features-list li + li {
    margin-top: 4px;
}

.mytes-quality-robot-feature-dot {
    flex-shrink: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.45;
}

/* =========================================================
   ROBOT GÖRSELİ
========================================================= */

.mytes-quality-robot-image-area {
    position: absolute;
    right: -36px;
    bottom: 0;
    z-index: 2;
    display: flex;
    width: min(57vw, 1100px);
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: none;
}

.mytes-quality-robot-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(
        -18px 12px 22px rgba(0, 0, 0, 0.16)
    );
}

/* =========================================================
   BÜYÜK MASAÜSTÜ
========================================================= */

@media (min-width: 1700px) {
    .mytes-quality-robot-section,
    .mytes-quality-robot-shell {
        min-height: 820px;
    }

    .mytes-quality-robot-content {
        width: min(100%, 980px);
        padding-top: 92px;
        padding-left: clamp(60px, 4.2vw, 92px);
    }

    .mytes-quality-robot-title {
        font-size: 62px;
    }

    .mytes-quality-robot-description {
        font-size: 18px;
    }

    .mytes-quality-robot-features-title {
        font-size: 28px;
    }

    .mytes-quality-robot-features-list li {
        font-size: 18px;
    }

    .mytes-quality-robot-image-area {
        right: -18px;
        width: min(57vw, 1120px);
    }

    .mytes-quality-robot-image {
        max-height: 800px;
    }
}

/* =========================================================
   ORTA MASAÜSTÜ
========================================================= */

@media (min-width: 1200px) and (max-width: 1699px) {
    .mytes-quality-robot-section,
    .mytes-quality-robot-shell {
        min-height: 700px;
    }

    .mytes-quality-robot-content {
        width: min(100%, 760px);
        padding-top: 68px;
        padding-bottom: 56px;
        padding-left: 56px;
    }

    .mytes-quality-robot-title {
        font-size: 49px;
    }

    .mytes-quality-robot-description {
        max-width: 720px;
        margin-top: 26px;
        font-size: 15px;
        line-height: 1.55;
    }

    .mytes-quality-robot-features {
        margin-top: 28px;
    }

    .mytes-quality-robot-features-title {
        font-size: 23px;
    }

    .mytes-quality-robot-features-list li {
        font-size: 15px;
    }

    .mytes-quality-robot-image-area {
        right: -28px;
        width: min(59vw, 940px);
    }

    .mytes-quality-robot-image {
        max-height: 680px;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {
    .mytes-quality-robot-section {
        min-height: auto;
        overflow: hidden;
        background-color: #262626;
    }

    .mytes-quality-robot-background {
        display: none;
    }

    .mytes-quality-robot-shell {
        display: flex;
        width: 100%;
        min-height: auto;
        flex-direction: column;
    }

    .mytes-quality-robot-content {
        width: 100%;
        padding: 58px 42px 34px;
    }

    .mytes-quality-robot-title {
        font-size: 45px;
        line-height: 1.1;
    }

    .mytes-quality-robot-description {
        max-width: 880px;
        margin-top: 25px;
        font-size: 16px;
        line-height: 1.68;
    }

    .mytes-quality-robot-features {
        margin-top: 29px;
    }

    .mytes-quality-robot-features-title {
        font-size: 24px;
    }

    .mytes-quality-robot-features-list li {
        font-size: 16px;
        line-height: 1.5;
    }

    .mytes-quality-robot-feature-dot {
        color: #1aa6ee;
    }

    .mytes-quality-robot-image-area {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        width: 100%;
        height: auto;
        min-height: 430px;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        background:
            linear-gradient(
                180deg,
                #262626 0%,
                #262626 5%,
                #ffffff 5%,
                #ffffff 100%
            );
    }

    .mytes-quality-robot-image {
        width: 100%;
        max-width: 980px;
        height: auto;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
        object-position: center bottom;
        filter: drop-shadow(
            -10px 10px 16px rgba(0, 0, 0, 0.14)
        );
    }
}

/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 767px) {
    .mytes-quality-robot-section {
        min-height: auto;
        overflow: hidden;
        background-color: #262626;
    }

    .mytes-quality-robot-background {
        display: none;
    }

    .mytes-quality-robot-shell {
        display: flex;
        width: 100%;
        min-height: auto;
        flex-direction: column;
        margin: 0;
    }

    /* =====================================================
       MOBİL METİN ALANI
    ====================================================== */

    .mytes-quality-robot-content {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 42px 20px 28px;
        color: #ffffff;
    }

    .mytes-quality-robot-title {
        display: flex;
        flex-direction: column;
        color: #ffffff;
        font-size: 33px;
        font-weight: 500;
        line-height: 1.12;
        letter-spacing: 0.018em;
    }

    .mytes-quality-robot-title span + span {
        margin-top: 3px;
    }

    .mytes-quality-robot-description {
        width: 100%;
        max-width: none;
        margin-top: 22px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.72;
        letter-spacing: 0.006em;
        white-space: pre-line;
    }

    .mytes-quality-robot-features {
        margin-top: 27px;
    }

    .mytes-quality-robot-features-title {
        color: #ffffff;
        font-size: 21px;
        font-weight: 600;
        line-height: 1.25;
    }

    .mytes-quality-robot-features-list {
        margin-top: 13px;
    }

    .mytes-quality-robot-features-list li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.48;
        letter-spacing: 0.003em;
    }

    .mytes-quality-robot-features-list li + li {
        margin-top: 6px;
    }

    .mytes-quality-robot-feature-dot {
        flex-shrink: 0;
        color: #1aa6ee;
        font-size: 15px;
        line-height: 1.35;
    }

    /* =====================================================
       MOBİL GÖRSEL ALANI
    ====================================================== */

    .mytes-quality-robot-image-area {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 2;
        display: flex;
        width: 100%;
        height: auto;
        min-height: 280px;
        align-items: flex-end;
        justify-content: center;
        margin-top: 0;
        overflow: hidden;
        background:
            linear-gradient(
                180deg,
                #262626 0%,
                #262626 6%,
                #ffffff 6%,
                #ffffff 100%
            );
        pointer-events: none;
    }

    .mytes-quality-robot-image {
        display: block;
        width: 100%;
        max-width: 620px;
        height: auto;
        max-height: none;
        margin: 0 auto;
        object-fit: contain;
        object-position: center bottom;
        filter: drop-shadow(
            -8px 8px 13px rgba(0, 0, 0, 0.14)
        );
    }
}

/* =========================================================
   ÇOK DAR MOBİL
========================================================= */

@media (max-width: 420px) {
    .mytes-quality-robot-content {
        padding: 36px 17px 24px;
    }

    .mytes-quality-robot-title {
        font-size: 29px;
    }

    .mytes-quality-robot-description {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.7;
    }

    .mytes-quality-robot-features {
        margin-top: 23px;
    }

    .mytes-quality-robot-features-title {
        font-size: 19px;
    }

    .mytes-quality-robot-features-list li {
        gap: 8px;
        font-size: 13px;
        line-height: 1.48;
    }

    .mytes-quality-robot-image-area {
        min-height: 225px;
    }

    .mytes-quality-robot-image {
        width: 108%;
        max-width: none;
        margin-right: -4%;
        margin-left: -4%;
    }
}
/* =========================================================
   MYTES SITE SEARCH
========================================================= */

.mytes-site-search {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    color: #ffffff;
}

.mytes-site-search.is-open {
    display: block;
}

.mytes-site-search-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            rgba(24, 28, 31, 0.94),
            rgba(18, 31, 44, 0.94)
        );
    backdrop-filter: blur(12px);
}

.mytes-site-search-panel {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 34px), 1180px);
    max-height: calc(100vh - 44px);
    margin: 22px auto;
    overflow-y: auto;
    border: 1px solid rgba(26, 166, 238, 0.35);
    background:
        linear-gradient(
            145deg,
            rgba(37, 41, 43, 0.98),
            rgba(28, 34, 38, 0.98)
        );
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.38);
}

.mytes-site-search-panel::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.16;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.035) 0,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 5px
        ),
        radial-gradient(
            circle at 70% 20%,
            rgba(26, 166, 238, 0.3),
            transparent 34%
        );
}

.mytes-site-search-close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background-color: rgba(255, 255, 255, 0.06);
    transition:
        transform 260ms ease,
        color 260ms ease,
        border-color 260ms ease,
        background-color 260ms ease;
}

.mytes-site-search-close:hover {
    color: #1aa6ee;
    border-color: rgba(26, 166, 238, 0.7);
    background-color: rgba(26, 166, 238, 0.12);
    transform: rotate(90deg);
}

.mytes-site-search-close svg {
    width: 27px;
    height: 27px;
}

.mytes-site-search-head {
    padding: 58px 58px 22px;
}

.mytes-site-search-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #1aa6ee;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.mytes-site-search-eyebrow::after {
    display: block;
    width: 52px;
    height: 1px;
    content: "";
    background-color: #1aa6ee;
}

.mytes-site-search-head h2 {
    margin-top: 18px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.mytes-site-search-head p {
    max-width: 720px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.mytes-site-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 185px;
    gap: 14px;
    padding: 0 58px 20px;
}

.mytes-site-search-form input {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    outline: none;
    background-color: rgba(255, 255, 255, 0.075);
    font-size: 17px;
    letter-spacing: 0.025em;
    transition:
        border-color 240ms ease,
        background-color 240ms ease,
        box-shadow 240ms ease;
}

.mytes-site-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.mytes-site-search-form input:focus {
    border-color: rgba(26, 166, 238, 0.85);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 0 3px rgba(26, 166, 238, 0.11);
}

.mytes-site-search-form button {
    position: relative;
    display: inline-flex;
    height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    color: #ffffff;
    background-color: #1aa6ee;
    clip-path: polygon(
        0 0,
        calc(100% - 24px) 0,
        100% 50%,
        calc(100% - 24px) 100%,
        0 100%
    );
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.13em;
    transition:
        filter 260ms ease,
        transform 260ms ease;
}

.mytes-site-search-form button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.mytes-site-search-form button svg {
    width: 28px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mytes-site-search-status {
    padding: 0 58px 20px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.mytes-site-search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0 58px 58px;
}

.mytes-site-search-result-card {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    min-height: 142px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background-color: rgba(255, 255, 255, 0.055);
    transition:
        transform 260ms ease,
        border-color 260ms ease,
        background-color 260ms ease,
        box-shadow 260ms ease;
}

.mytes-site-search-result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 166, 238, 0.65);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.24);
}

.mytes-site-search-result-image {
    position: relative;
    min-height: 142px;
    overflow: hidden;
    background-color: #e9ecef;
}

.mytes-site-search-result-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 420ms ease,
        filter 420ms ease;
}

.mytes-site-search-result-card:hover .mytes-site-search-result-image img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.mytes-site-search-result-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 18px 18px 18px 20px;
}

.mytes-site-search-result-type {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    color: #1aa6ee;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mytes-site-search-result-title {
    margin-top: 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.mytes-site-search-result-category {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.4;
}

.mytes-site-search-result-description {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
}

.mytes-site-search-empty {
    grid-column: 1 / -1;
    padding: 34px 28px;
    color: rgba(255, 255, 255, 0.72);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 16px;
}

body.mytes-search-lock {
    overflow: hidden;
}

@media (max-width: 1023px) {
    .mytes-site-search-panel {
        width: min(calc(100% - 26px), 760px);
        max-height: calc(100vh - 34px);
        margin: 17px auto;
    }

    .mytes-site-search-head {
        padding: 54px 26px 20px;
    }

    .mytes-site-search-head h2 {
        font-size: 32px;
    }

    .mytes-site-search-head p {
        font-size: 15px;
    }

    .mytes-site-search-form {
        grid-template-columns: 1fr;
        padding: 0 26px 18px;
    }

    .mytes-site-search-form button {
        width: 190px;
    }

    .mytes-site-search-status {
        padding: 0 26px 18px;
    }

    .mytes-site-search-results {
        grid-template-columns: 1fr;
        padding: 0 26px 36px;
    }
}

@media (max-width: 640px) {
    .mytes-site-search-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .mytes-site-search-head {
        padding: 56px 18px 18px;
    }

    .mytes-site-search-eyebrow {
        font-size: 12px;
    }

    .mytes-site-search-head h2 {
        font-size: 27px;
    }

    .mytes-site-search-form {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mytes-site-search-status {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mytes-site-search-results {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mytes-site-search-result-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 126px;
    }

    .mytes-site-search-result-image {
        min-height: 126px;
    }

    .mytes-site-search-result-content {
        padding: 14px;
    }

    .mytes-site-search-result-title {
        font-size: 17px;
    }

    .mytes-site-search-result-description {
        display: none;
    }
}
/* =========================================================
   İLETİŞİM FORMU SELECT
========================================================= */

.mytes-contact-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #1aa6ee 50%),
        linear-gradient(135deg, #1aa6ee 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 15px) 50%;
    background-size:
        7px 7px,
        7px 7px;
    background-repeat: no-repeat;
    padding-right: 46px;
}

.mytes-contact-select option {
    color: #1d1d1d;
    background-color: #ffffff;
}