.ks-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ks-reveal.ks-visible {
    opacity: 1;
    transform: translateY(0);
}

.ks-home-hero {
    position: relative;
    overflow: hidden;
    background: #06111d;
}

.ks-hero-slide {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.ks-hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 23, 0.96) 0%,
            rgba(7, 20, 34, 0.88) 38%,
            rgba(7, 20, 34, 0.42) 68%,
            rgba(7, 20, 34, 0.18) 100%
        );
}

.ks-hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size: 58px 58px;
    mask-image:
        linear-gradient(
            90deg,
            #000 0%,
            rgba(0,0,0,0.5) 52%,
            transparent 90%
        );
}

.ks-hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    pointer-events: none;
}

.ks-hero-light-one {
    width: 420px;
    height: 420px;
    right: 7%;
    top: -180px;
    background: rgba(236, 12, 23, 0.17);
    animation: ksHeroLight 7s ease-in-out infinite;
}

.ks-hero-light-two {
    width: 300px;
    height: 300px;
    left: 25%;
    bottom: -180px;
    background: rgba(23, 92, 138, 0.22);
    animation: ksHeroLight 9s ease-in-out infinite reverse;
}

.ks-hero-content {
    position: relative;
    z-index: 4;
    padding: 130px 0 130px;
}

.ks-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.ks-hero-eyebrow span {
    width: 35px;
    height: 2px;
    background: var(--ks-red);
}

.ks-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5.1vw, 62px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -3px;
}

.ks-hero-content p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.9;
}

.ks-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 32px;
}

.ks-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1;
    font-weight: 750;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.ks-btn:hover {
    transform: translateY(-2px);
}

.ks-btn-primary {
    color: #ffffff;
    background: var(--ks-red);
    box-shadow: 0 12px 30px rgba(236, 12, 23, 0.23);
}

.ks-btn-primary:hover {
    color: #ffffff;
    background: #c80b14;
}

.ks-btn-glass {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.ks-btn-glass:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.ks-btn-outline {
    color: #0b1d2b;
    background: transparent;
    border: 1px solid #ccd7df;
}

.ks-btn-outline:hover {
    color: var(--ks-red);
    border-color: var(--ks-red);
}

.ks-btn-dark {
    margin-top: 25px;
    color: #ffffff;
    background: #091724;
}

.ks-btn-dark:hover {
    color: #ffffff;
    background: var(--ks-red);
}

.ks-hero-meta {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
}

.ks-hero-meta > div {
    min-width: 125px;
    padding: 0 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ks-hero-meta > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.ks-hero-meta strong,
.ks-hero-meta span {
    display: block;
}

.ks-hero-meta strong {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.ks-hero-meta span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 12px;
}

.ks-hero-pagination {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    transform: translateX(-50%);
}

.ks-hero-pagination button {
    display: block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-size: 0;
    line-height: 0;
    opacity: 1;
    transform: none;
    transition:
        width 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}

.ks-hero-pagination button::after {
    display: none;
}

.ks-hero-pagination button:hover {
    background: rgba(255, 255, 255, 0.72);
    transform: none;
}

.ks-hero-pagination button.active {
    width: 28px;
    height: 7px;
    color: transparent;
    background: var(--ks-red);
    border: 0;
    box-shadow: none;
    transform: none;
}

.ks-hero-pagination button.active::after {
    display: none;
}


.ks-hero-navigation {
    position: absolute;
    z-index: 10;
    right: max(30px, calc((100vw - 1320px) / 2));
    bottom: 28px;
    display: flex;
    gap: 7px;
}

.ks-hero-navigation button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    font-size: 13px;
    backdrop-filter: blur(10px);
    transition: 0.25s ease;
}

.ks-hero-navigation button:hover {
    background: var(--ks-red);
    border-color: var(--ks-red);
}

.ks-hero-molecule {
    position: absolute;
    z-index: 3;
    right: 8%;
    top: 28%;
    width: 320px;
    height: 320px;
    pointer-events: none;
    animation: ksMoleculeFloat 7s ease-in-out infinite;
}

.ks-molecule-node {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.ks-molecule-node::before {
    position: absolute;
    content: "";
    inset: 7px;
    border-radius: 50%;
    background: rgba(236,12,23,0.55);
}

.ks-molecule-node-1 {
    width: 70px;
    height: 70px;
    left: 25px;
    top: 100px;
}

.ks-molecule-node-2 {
    width: 48px;
    height: 48px;
    left: 145px;
    top: 30px;
}

.ks-molecule-node-3 {
    width: 62px;
    height: 62px;
    right: 20px;
    top: 145px;
}

.ks-molecule-node-4 {
    width: 44px;
    height: 44px;
    left: 135px;
    bottom: 25px;
}

.ks-molecule-line {
    position: absolute;
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.28);
    transform-origin: left center;
}

.ks-molecule-line-1 {
    width: 135px;
    left: 78px;
    top: 122px;
    transform: rotate(-35deg);
}

.ks-molecule-line-2 {
    width: 120px;
    left: 180px;
    top: 75px;
    transform: rotate(50deg);
}

.ks-molecule-line-3 {
    width: 120px;
    left: 160px;
    top: 220px;
    transform: rotate(-35deg);
}

.ks-home-trust {
    position: relative;
    z-index: 20;
    margin-top: -1px;
    background: #ffffff;
    border-bottom: 1px solid #e3e9ee;
}

.ks-home-trust-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ks-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 115px;
    padding: 20px 25px;
    border-right: 1px solid #e3e9ee;
}

.ks-trust-item:last-child {
    border-right: 0;
}

.ks-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--ks-red);
    background: #fff2f3;
    border-radius: 13px;
    font-size: 17px;
}

.ks-trust-item > div {
    display: flex;
    flex-direction: column;
}

.ks-trust-item strong {
    color: #111e2a;
    font-size: 14px;
    font-weight: 700;
}

.ks-trust-item span:not(.ks-trust-icon) {
    margin-top: 4px;
    color: #707d88;
    font-size: 12px;
    line-height: 1.6;
}

.ks-home-about {
    padding: 110px 0;
    overflow: hidden;
    background: #ffffff;
}

.ks-home-about-visual {
    --ks-parallax-x: 0px;
    --ks-parallax-y: 0px;
    position: relative;
    min-height: 560px;
}

.ks-about-image-main {
    position: absolute;
    inset: 20px 55px 30px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(236,12,23,0.16),
            transparent 30%
        ),
        linear-gradient(
            140deg,
            #0c1b28,
            #1d3b50
        );
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(9, 26, 39, 0.14);
    transform:
        translate(
            var(--ks-parallax-x),
            var(--ks-parallax-y)
        );
    transition: transform 0.12s linear;
}

.ks-about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ks-about-image-main::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(6,17,29,0.4) 100%
        );
}

.ks-about-image-grid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ks-about-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: -2px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(236,12,23,0.85),
            transparent
        );
    box-shadow: 0 0 20px rgba(236,12,23,0.55);
    animation: ksScan 5s linear infinite;
}

.ks-about-year-card,
.ks-about-lab-card {
    position: absolute;
    z-index: 4;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 18px 50px rgba(9,26,39,0.14);
    backdrop-filter: blur(15px);
}

.ks-about-year-card {
    right: 0;
    top: 75px;
    width: 145px;
    padding: 20px;
    background: rgba(236,12,23,0.93);
    border-radius: 16px;
}

.ks-about-year-card span,
.ks-about-year-card strong {
    display: block;
}

.ks-about-year-card span {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

.ks-about-year-card strong {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 650;
}

.ks-about-lab-card {
    left: 35px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 245px;
    padding: 16px 18px;
    background: rgba(7,22,35,0.88);
    border-radius: 14px;
}

.ks-about-lab-card i {
    color: var(--ks-red);
    font-size: 20px;
}

.ks-about-lab-card div {
    display: flex;
    flex-direction: column;
}

.ks-about-lab-card span {
    color: rgba(255,255,255,0.52);
    font-size: 12px;
}

.ks-about-lab-card strong {
    color: #ffffff;
    font-size: 13px;
}

.ks-about-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(236,12,23,0.15);
    border-radius: 50%;
    animation: ksOrbit 15s linear infinite;
}

.ks-about-orbit-one {
    width: 220px;
    height: 220px;
    right: -80px;
    top: -50px;
}

.ks-about-orbit-two {
    width: 135px;
    height: 135px;
    left: -55px;
    bottom: 60px;
    animation-direction: reverse;
}

.ks-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ks-red);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ks-section-kicker::before {
    width: 25px;
    height: 2px;
    content: "";
    background: var(--ks-red);
}

.ks-home-about-content h2,
.ks-section-heading h2,
.ks-quality-content h2 {
    margin: 10px 0 0;
    color: #101c27;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -1.5px;
}

.ks-home-about-content h2 strong,
.ks-section-heading h2 strong,
.ks-quality-content h2 strong {
    display: block;
    font-weight: 700;
}

.ks-home-about-content > p {
    margin: 23px 0 0;
    color: #687681;
    font-size: 14px;
    line-height: 1.95;
}

.ks-about-points {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.ks-about-points > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ks-about-points > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    margin-top: 2px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 50%;
    font-size: 12px;
}

.ks-about-points strong {
    color: #14212b;
    font-size: 14px;
    font-weight: 700;
}

.ks-about-points p {
    margin: 3px 0 0;
    color: #76828c;
    font-size: 13px;
    line-height: 1.65;
}

.ks-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.ks-home-analysis {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #06111c 0%,
            #0a1d2d 52%,
            #0b2436 100%
        );
}

.ks-analysis-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
}

.ks-analysis-bg-shape-one {
    width: 420px;
    height: 420px;
    right: -250px;
    top: -120px;
    border: 70px solid rgba(236,12,23,0.05);
}

.ks-analysis-bg-shape-two {
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: -150px;
    border: 55px solid rgba(45,110,154,0.08);
}

.ks-section-heading {
    max-width: 760px;
}

.ks-section-heading-light h2 {
    color: #ffffff;
}

.ks-section-heading-light p,
.ks-section-heading > p {
    max-width: 680px;
    margin: 15px 0 0;
    color: #73808a;
    font-size: 14px;
    line-height: 1.8;
}

.ks-section-heading-light p {
    color: rgba(255,255,255,0.58);
}

.ks-analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 45px;
}

.ks-analysis-card {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 17px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ks-analysis-card:hover {
    transform: translateY(-7px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(236,12,23,0.45);
}

.ks-analysis-card-image {
    position: relative;
    height: 205px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #10283b,
            #18394f
        );
}

.ks-analysis-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.6s ease;
}

.ks-analysis-card:hover .ks-analysis-card-image img {
    transform: scale(1.07);
}

.ks-analysis-card-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(6,17,28,0.05),
            rgba(6,17,28,0.65)
        );
}

.ks-analysis-number {
    position: absolute;
    z-index: 3;
    right: 15px;
    top: 13px;
    color: rgba(255,255,255,0.72);
    font-size: 12px;
    font-weight: 700;
}

.ks-analysis-card-content {
    position: relative;
    padding: 27px 20px 23px;
}

.ks-analysis-icon {
    position: absolute;
    left: 20px;
    top: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: var(--ks-red);
    border: 5px solid #0a1c2b;
    border-radius: 13px;
    font-size: 15px;
}

.ks-analysis-card h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.ks-analysis-card p {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.75;
}

.ks-home-units,
.ks-home-documents,
.ks-home-blog {
    padding: 105px 0;
}

.ks-home-units {
    background: #f5f7f9;
}

.ks-section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.ks-section-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    color: #16242f;
    font-size: 13px;
    font-weight: 750;
}

.ks-section-more i {
    color: var(--ks-red);
    transition: transform 0.25s ease;
}

.ks-section-more:hover i {
    transform: translateX(4px);
}

.ks-unit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ks-unit-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e6eb;
    border-radius: 17px;
    box-shadow: 0 10px 35px rgba(13,38,56,0.035);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ks-unit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(13,38,56,0.11);
}

.ks-unit-card-media {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #12283a,
            #21455d
        );
}

.ks-unit-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ks-unit-card:hover .ks-unit-card-media img {
    transform: scale(1.055);
}

.ks-unit-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(6,17,28,0.55)
        );
}

.ks-unit-card-icon {
    position: absolute;
    left: 20px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(236,12,23,0.25);
}

.ks-unit-card-content {
    padding: 23px 21px 25px;
}

.ks-unit-card-content h3 {
    margin: 0;
    color: #15232e;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.ks-unit-card-content p {
    min-height: 56px;
    margin: 10px 0 0;
    color: #6d7983;
    font-size: 13px;
    line-height: 1.75;
}

.ks-unit-card-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #16242f;
    font-size: 13px;
    font-weight: 750;
}

.ks-unit-card-content a i {
    color: var(--ks-red);
}

.ks-home-process {
    padding: 105px 0 115px;
    background: #ffffff;
}

.ks-section-heading-center {
    margin: 0 auto;
    text-align: center;
}

.ks-section-heading-center .ks-section-kicker {
    justify-content: center;
}

.ks-section-heading-center p {
    margin-left: auto;
    margin-right: auto;
}

.ks-process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    margin-top: 55px;
}

.ks-process-line::before {
    position: absolute;
    content: "";
    left: 8%;
    right: 8%;
    top: 39px;
    height: 1px;
    background: #dbe2e8;
}

.ks-process-progress {
    position: absolute;
    left: 8%;
    top: 38px;
    width: 0;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--ks-red),
            #ff5860
        );
    animation: ksProcessProgress 4s ease-in-out infinite alternate;
}

.ks-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ks-process-number {
    position: absolute;
    right: calc(50% - 43px);
    top: -14px;
    color: #9aa5ad;
    font-size: 12px;
    font-weight: 700;
}

.ks-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto;
    color: var(--ks-red);
    background: #ffffff;
    border: 1px solid #dce3e8;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(14,37,54,0.07);
    font-size: 22px;
    transition: 0.3s ease;
}

.ks-process-step:hover .ks-process-icon {
    color: #ffffff;
    background: var(--ks-red);
    border-color: var(--ks-red);
    transform: translateY(-5px);
}

.ks-process-step h3 {
    margin: 18px 0 0;
    color: #15232e;
    font-size: 14px;
    font-weight: 700;
}

.ks-process-step p {
    max-width: 245px;
    margin: 8px auto 0;
    color: #74808a;
    font-size: 13px;
    line-height: 1.7;
}

.ks-home-quality {
    padding: 105px 0;
    overflow: hidden;
    background: #f5f7f9;
}

.ks-quality-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe6eb;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(12,35,52,0.08);
}

.ks-quality-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #0b1c2b,
            #1d4055
        );
}

.ks-quality-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ks-quality-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(6,17,28,0.08),
            rgba(6,17,28,0.78)
        );
}

.ks-quality-symbol {
    position: absolute;
    left: 35px;
    top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 15px;
    font-size: 22px;
}

.ks-quality-visual-text {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
}

.ks-quality-visual-text span {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ks-quality-visual-text strong {
    display: block;
    max-width: 400px;
    margin-top: 5px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -1px;
}

.ks-quality-content {
    padding: 65px 60px;
}

.ks-quality-content > p {
    margin: 20px 0 0;
    color: #6e7a84;
    font-size: 14px;
    line-height: 1.9;
}

.ks-quality-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 18px;
    margin-top: 25px;
}

.ks-quality-features span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #43505a;
    font-size: 13px;
    font-weight: 650;
}

.ks-quality-features i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 50%;
    font-size: 12px;
}

.ks-home-information {
    padding: 85px 0;
    background: #ffffff;
}

.ks-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ks-info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 28px;
    overflow: hidden;
    background: #f6f8fa;
    border: 1px solid #e0e6eb;
    border-radius: 17px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ks-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(12,35,52,0.08);
}

.ks-info-card-dark {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #081722,
            #153449
        );
    border-color: transparent;
}

.ks-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--ks-red);
    background: #ffffff;
    border-radius: 12px;
    font-size: 17px;
}

.ks-info-card:not(.ks-info-card-dark) .ks-info-icon {
    background: #fff0f1;
}

.ks-info-card small {
    color: #929da6;
    font-size: 12px;
    font-weight: 700;
}

.ks-info-card-dark small {
    color: rgba(255,255,255,0.48);
}

.ks-info-card h3 {
    margin: 5px 0 0;
    color: #15232e;
    font-size: 17px;
    font-weight: 700;
}

.ks-info-card-dark h3 {
    color: #ffffff;
}

.ks-info-card p {
    margin: 8px 0 0;
    color: #707c86;
    font-size: 13px;
    line-height: 1.7;
}

.ks-info-card-dark p {
    color: rgba(255,255,255,0.55);
}

.ks-info-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--ks-red);
    font-size: 13px;
}

.ks-home-documents {
    background: #f5f7f9;
}

.ks-document-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 15px;
}

.ks-document-card {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr) 38px;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e0e6eb;
    border-radius: 13px;
}

.ks-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--ks-red);
    background: #fff0f1;
    border-radius: 11px;
    font-size: 18px;
}

.ks-document-card small {
    color: #929da6;
    font-size: 12px;
}

.ks-document-card h3 {
    margin: 3px 0 0;
    color: #17252f;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 750;
}

.ks-document-card > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #17252f;
    background: #f4f6f8;
    border-radius: 8px;
    font-size: 12px;
}

.ks-home-blog {
    background: #ffffff;
}

.ks-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
}

.ks-blog-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e7ec;
    border-radius: 17px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ks-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(12,35,52,0.09);
}

.ks-blog-image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #10283a;
}

.ks-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ks-blog-card:hover .ks-blog-image img {
    transform: scale(1.055);
}

.ks-blog-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(6,17,28,0.35)
        );
}

.ks-blog-content {
    padding: 22px;
}

.ks-blog-date {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8e99a2;
    font-size: 12px;
}

.ks-blog-date i {
    color: var(--ks-red);
}

.ks-blog-content h3 {
    margin: 10px 0 0;
    color: #15232e;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.ks-blog-content p {
    min-height: 53px;
    margin: 10px 0 0;
    color: #707c86;
    font-size: 13px;
    line-height: 1.75;
}

.ks-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #15232e;
    font-size: 13px;
    font-weight: 750;
}

.ks-blog-link i {
    color: var(--ks-red);
}

.ks-home-cta {
    padding: 20px 0 100px;
    background: #ffffff;
}

.ks-home-cta-shell {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0,1fr) auto;
    align-items: center;
    gap: 25px;
    padding: 40px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            130deg,
            #071521,
            #0e2b40
        );
    border-radius: 20px;
}

.ks-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.ks-cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.ks-cta-glow-one {
    width: 300px;
    height: 300px;
    right: -150px;
    top: -190px;
    background: rgba(236,12,23,0.18);
}

.ks-cta-glow-two {
    width: 220px;
    height: 220px;
    left: 25%;
    bottom: -180px;
    background: rgba(48,110,154,0.17);
}

.ks-cta-icon,
.ks-cta-content,
.ks-cta-actions {
    position: relative;
    z-index: 2;
}

.ks-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 16px;
    font-size: 23px;
}

.ks-cta-content > span {
    color: rgba(255,255,255,0.48);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ks-cta-content h2 {
    max-width: 700px;
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
}

.ks-cta-content p {
    max-width: 700px;
    margin: 7px 0 0;
    color: rgba(255,255,255,0.57);
    font-size: 13px;
    line-height: 1.75;
}

.ks-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    min-width: 200px;
}

.ks-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
}

@keyframes ksHeroLight {
    0%,
    100% {
        transform: translate3d(0,0,0) scale(1);
    }

    50% {
        transform: translate3d(-35px,25px,0) scale(1.08);
    }
}

@keyframes ksMoleculeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(3deg);
    }
}

@keyframes ksScan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes ksOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ksProcessProgress {
    from {
        width: 0;
    }

    to {
        width: 84%;
    }
}

@media (max-width: 1199.98px) {
    .ks-analysis-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ks-hero-molecule {
        opacity: 0.45;
        right: -40px;
    }

    .ks-home-cta-shell {
        grid-template-columns: 65px minmax(0,1fr);
    }

    .ks-cta-actions {
        grid-column: 2;
        flex-direction: row;
    }
}

@media (max-width: 991.98px) {
    .ks-hero-slide {
        min-height: 650px;
    }

    .ks-hero-content {
        padding: 105px 0 120px;
    }

    .ks-hero-molecule {
        display: none;
    }

    .ks-home-trust-panel {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ks-trust-item:nth-child(2) {
        border-right: 0;
    }

    .ks-trust-item:nth-child(-n+2) {
        border-bottom: 1px solid #e3e9ee;
    }

    .ks-unit-grid,
    .ks-blog-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .ks-process-line {
        grid-template-columns: repeat(2, minmax(0,1fr));
        row-gap: 45px;
    }

    .ks-process-line::before,
    .ks-process-progress {
        display: none;
    }

    .ks-quality-shell {
        grid-template-columns: 1fr;
    }

    .ks-quality-visual {
        min-height: 390px;
    }

    .ks-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .ks-hero-slide {
        min-height: 610px;
    }

    .ks-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .ks-hero-content p {
        font-size: 16px;
    }

    .ks-hero-navigation {
        display: none;
    }

    .ks-home-about,
    .ks-home-analysis,
    .ks-home-units,
    .ks-home-process,
    .ks-home-quality,
    .ks-home-documents,
    .ks-home-blog {
        padding: 75px 0;
    }

    .ks-home-about-content h2,
    .ks-section-heading h2,
    .ks-quality-content h2 {
        font-size: 31px;
    }

    .ks-section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .ks-analysis-grid,
    .ks-unit-grid,
    .ks-blog-grid,
    .ks-document-grid {
        grid-template-columns: 1fr;
    }

    .ks-quality-content {
        padding: 40px 28px;
    }

    .ks-quality-features {
        grid-template-columns: 1fr;
    }

    .ks-home-cta-shell {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }

    .ks-cta-actions {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .ks-hero-slide {
        min-height: 590px;
    }

    .ks-hero-content {
        padding: 85px 0 115px;
    }

    .ks-hero-content h1 {
        font-size: 34px;
    }

    .ks-hero-eyebrow {
        font-size: 12px;
    }

    .ks-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ks-hero-actions .ks-btn {
        width: 100%;
    }

    .ks-hero-meta {
        flex-wrap: wrap;
        gap: 18px;
    }

    .ks-hero-meta > div {
        min-width: 95px;
        padding: 0 15px;
    }

    .ks-home-trust-panel {
        grid-template-columns: 1fr;
    }

    .ks-trust-item {
        min-height: 90px;
        border-right: 0;
        border-bottom: 1px solid #e3e9ee;
    }

    .ks-trust-item:last-child {
        border-bottom: 0;
    }

    .ks-home-about-visual {
        min-height: 490px;
    }

    .ks-about-image-main {
        inset: 15px 20px 80px 0;
    }

    .ks-about-year-card {
        right: 0;
        top: 45px;
        width: 125px;
    }

    .ks-about-lab-card {
        left: 15px;
        bottom: 10px;
    }

    .ks-process-line {
        grid-template-columns: 1fr;
    }

    .ks-quality-visual {
        min-height: 330px;
    }

    .ks-quality-visual-text strong {
        font-size: 21px;
    }

    .ks-cta-actions {
        flex-direction: column;
    }
}

:root {
    --ks-red: #ec0c17;
    --ks-red-dark: #bd0912;
    --ks-navy: #0c2841;
    --ks-navy-deep: #061522;
    --ks-blue: #194966;
    --ks-text: #17232d;
    --ks-text-soft: #687681;
    --ks-border: #e0e6eb;
    --ks-surface: #f5f7f9;
    --ks-white: #ffffff;
    --ks-shadow: 0 20px 55px rgba(7, 29, 45, 0.09);
    --ks-transition: all 0.28s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ks-text);
    background: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.ks-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
}

.ks-site-main {
    min-height: 600px;
}

.ks-site-header {
    position: relative;
    z-index: 1200;
    background: #ffffff;
}


.ks-topbar {
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(90deg, #101419 0%, #171d23 62%, #20262c 100%);
}

.ks-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 20px;
}

.ks-topbar-contact,
.ks-topbar-right,
.ks-topbar-social {
    display: flex;
    align-items: center;
}

.ks-topbar-contact {
    gap: 23px;
}

.ks-topbar-right {
    gap: 20px;
}

.ks-topbar-contact a,
.ks-topbar-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 550;
    transition: var(--ks-transition);
}

.ks-topbar-contact a:hover {
    color: #ffffff;
}

.ks-topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    font-size: 12px;
}

.ks-topbar-location i {
    color: var(--ks-red);
    font-size: 12px;
}

.ks-topbar-social {
    gap: 4px;
}

.ks-topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 29px;
    font-size: 14px;
    transition: var(--ks-transition);
}

.ks-topbar-social a:hover {
    color: #ffffff;
    background: var(--ks-red);
    border-color: var(--ks-red);
    transform: translateY(-2px);
}

.ks-navbar {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5eaee;
    box-shadow: 0 5px 25px rgba(6, 28, 43, 0.035);
}

.ks-site-header.ks-scrolled .ks-navbar {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    right: 0;
    animation: ksNavbarDown 0.3s ease forwards;
    box-shadow: 0 12px 35px rgba(7, 29, 45, 0.09);
}

.ks-navbar-inner {
    display: flex;
    align-items: center;
    min-height: 88px;
}

.ks-site-header.ks-scrolled .ks-navbar-inner {
    min-height: 74px;
}

.ks-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 245px;
}

.ks-brand img {
    display: block;
    width: auto;
    max-width: 235px;
    height: 58px;
    object-fit: contain;
    transition: height 0.25s ease;
}

.ks-site-header.ks-scrolled .ks-brand img {
    height: 49px;
}

.ks-brand-fallback {
    display: flex;
    flex-direction: column;
}

.ks-brand-fallback strong {
    color: var(--ks-navy);
    font-size: 16px;
    font-weight: 700;
}

.ks-brand-fallback small {
    color: var(--ks-text-soft);
    font-size: 12px;
}

.ks-main-nav {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
}

.ks-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    padding: 0 12px;
    color: #35434e;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ks-transition);
}

.ks-nav-link::after {
    position: absolute;
    content: "";
    left: 13px;
    right: 13px;
    bottom: 4px;
    height: 2px;
    background: var(--ks-red);
    border-radius: 8px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.ks-nav-link:hover,
.ks-nav-link.active {
    color: var(--ks-red);
    background: #fff5f6;
}

.ks-nav-link:hover::after,
.ks-nav-link.active::after {
    transform: scaleX(1);
}

.ks-nav-dropdown {
    position: relative;
}

.ks-nav-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.ks-nav-dropdown.open .ks-nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.ks-nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    display: grid;
    width: 320px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    border: 1px solid #e2e8ed;
    border-radius: 17px;
    box-shadow: 0 30px 75px rgba(7, 29, 45, 0.15);
    transform: translate(-50%, 10px);
    transition:
        visibility 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

.ks-nav-dropdown.open .ks-nav-dropdown-panel {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.ks-dropdown-intro {
    position: relative;
    overflow: hidden;
    padding: 26px 22px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(236, 12, 23, 0.2),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #071826,
            #11334b
        );
    border-radius: 13px;
}

.ks-dropdown-intro::after {
    position: absolute;
    content: "";
    width: 150px;
    height: 150px;
    right: -85px;
    bottom: -85px;
    border: 25px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.ks-dropdown-intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 12px;
    font-size: 16px;
}

.ks-dropdown-intro small {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 700;
}

.ks-dropdown-intro strong {
    display: block;
    margin-top: 3px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.ks-dropdown-intro p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.75;
}

.ks-dropdown-links {
    display: grid;
    gap: 3px;
    padding: 3px 3px 3px 10px;
}

.ks-dropdown-links > a {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 11px;
    min-height: 65px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: var(--ks-transition);
}

.ks-dropdown-links > a:hover {
    background: #f6f8fa;
    transform: translateX(3px);
}

.ks-dropdown-links > a > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--ks-red);
    background: #fff0f1;
    border-radius: 9px;
    font-size: 13px;
}

.ks-dropdown-links > a > div {
    display: flex;
    flex-direction: column;
}

.ks-dropdown-links strong {
    color: #1b2833;
    font-size: 12px;

    line-height: 1.1;
    font-weight: 700;
}

.ks-dropdown-links small {
    margin-top: 2px;
    color: #88939c;
    font-size: 12px;
}

.ks-dropdown-links > a > i {
    color: #b0b8bf;
    font-size: 12px;
    transition: 0.25s ease;
}

.ks-dropdown-links > a:hover > i {
    color: var(--ks-red);
    transform: translateX(3px);
}

.ks-navbar-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 14px;
}

.ks-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--ks-red),
            #b90710,
            var(--ks-red)
        );
    background-size: 220% 220%;
    border-radius: 9px;
    box-shadow: 0 9px 24px rgba(236, 12, 23, 0.18);
    font-size: 12px;
    font-weight: 700;
    animation: ksButtonGradient 5s ease infinite;
    transition: var(--ks-transition);
}

.ks-header-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(236, 12, 23, 0.26);
}

.ks-header-cta i {
    font-size: 12px;
}

.ks-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--ks-navy);
    border: 0;
    border-radius: 9px;
}

.ks-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: #ffffff;
    border-radius: 5px;
}

.ks-mobile-menu {
    position: fixed;
    z-index: 3000;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.ks-mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.ks-mobile-menu-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(4, 15, 24, 0.74);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.ks-mobile-menu.active .ks-mobile-menu-overlay {
    opacity: 1;
}

.ks-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(410px, 92vw);
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.32s ease;
}

.ks-mobile-menu.active .ks-mobile-menu-panel {
    transform: translateX(0);
}

.ks-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ks-border);
}

.ks-mobile-brand img {
    display: block;
    max-width: 205px;
    max-height: 52px;
}

.ks-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--ks-red);
    background: #fff2f3;
    border: 0;
    border-radius: 9px;
    font-size: 16px;
}

.ks-mobile-menu-body {
    padding: 13px 17px;
}

.ks-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 51px;
    padding: 10px 9px;
    color: var(--ks-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ks-border);
    font-size: 15px;
    font-weight: 700;
    text-align: left;
}

.ks-mobile-nav-link > i {
    color: #9da7af;
    font-size: 12px;
}

.ks-mobile-dropdown-toggle.active > i {
    color: var(--ks-red);
    transform: rotate(180deg);
}

.ks-mobile-dropdown {
    display: none;
    padding: 8px 8px 8px 14px;
    background: var(--ks-surface);
}

.ks-mobile-dropdown.active {
    display: block;
}

.ks-mobile-dropdown a {
    display: block;
    padding: 10px;
    color: var(--ks-text-soft);
    font-size: 13px;
    font-weight: 600;
}

.ks-mobile-contact {
    display: grid;
    gap: 9px;
    margin: 15px;
    padding: 15px;
    background: var(--ks-surface);
    border-radius: 12px;
}

.ks-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ks-mobile-contact a > i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 8px;
    font-size: 13px;
}

.ks-mobile-contact span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.ks-mobile-contact small {
    color: #909aa2;
    font-size: 12px;
}

.ks-mobile-contact strong {
    color: var(--ks-text);
    font-size: 13px;
    font-weight: 700;
    word-break: break-word;
}

.ks-site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.7);
    background:
        radial-gradient(circle at 88% 10%, rgba(236, 12, 23, 0.15), transparent 28%),
        radial-gradient(circle at 8% 90%, rgba(255, 255, 255, 0.035), transparent 26%),
        linear-gradient(135deg, #0b0d10 0%, #11151a 48%, #181d22 100%);
}

.ks-footer-grid {
    position: absolute;
    inset: 0;
    opacity: 0.09;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 85%,
            transparent
        );
}

.ks-footer-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
    animation: ksFooterOrbit 18s linear infinite;
}

.ks-footer-orbit::before,
.ks-footer-orbit::after {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background: var(--ks-red);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(236, 12, 23, 0.6);
}

.ks-footer-orbit::before {
    left: 50%;
    top: -5px;
}

.ks-footer-orbit::after {
    right: -5px;
    top: 50%;
}

.ks-footer-orbit-one {
    width: 320px;
    height: 320px;
    right: -130px;
    top: 100px;
}

.ks-footer-orbit-two {
    width: 190px;
    height: 190px;
    left: -90px;
    bottom: 30px;
    animation-direction: reverse;
}

.ks-footer-beam {
    position: absolute;
    left: -250px;
    bottom: 0;
    width: 250px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--ks-red),
            #ff545c,
            transparent
        );
    box-shadow: 0 0 18px rgba(236, 12, 23, 0.65);
    animation: ksFooterBeam 5s linear infinite;
}

.ks-footer-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.ks-footer-top-kicker {
    display: block;
    color: var(--ks-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.ks-footer-top h2 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -1px;
}

.ks-footer-top h2 strong {
    font-weight: 700;
}

.ks-footer-top-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    padding: 0 19px;
    color: #ffffff;
    background: var(--ks-red);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
    box-shadow: 0 12px 28px rgba(236, 12, 23, 0.2);
    transition: var(--ks-transition);
}

.ks-footer-top-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.ks-footer-main {
    position: relative;
    z-index: 2;
    padding: 58px 0 45px;
}

.ks-footer-brand img {
    display: block;
    max-width: 260px;
    max-height: 78px;
    margin-bottom: 20px;
}

.ks-footer-brand h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.ks-footer-brand p {
    max-width: 370px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.85;
}

.ks-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 21px;
}

.ks-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 38px;
    font-size: 12px;
    transition: var(--ks-transition);
}

.ks-footer-social a:hover {
    color: #ffffff;
    background: var(--ks-red);
    border-color: var(--ks-red);
    transform: translateY(-3px);
}

.ks-footer-column h3 {
    position: relative;
    margin: 0 0 19px;
    padding-bottom: 11px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.ks-footer-column h3::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--ks-red);
}

.ks-footer-column > a:not(.ks-footer-contact-item) {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    transition: var(--ks-transition);
}

.ks-footer-column > a:not(.ks-footer-contact-item):hover {
    color: #ffffff;
    transform: translateX(4px);
}

.ks-footer-contact {
    display: grid;
    gap: 9px;
}

.ks-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.64);
}

.ks-footer-contact-item > span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: rgba(236, 12, 23, 0.16);
    border: 1px solid rgba(236, 12, 23, 0.22);
    border-radius: 9px;
}

.ks-footer-contact-item > span i {
    font-size: 13px;
}

.ks-footer-contact-item > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.ks-footer-contact-item small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.ks-footer-contact-item strong {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
    word-break: break-word;
}

a.ks-footer-contact-item:hover strong {
    color: #ffffff;
}

.ks-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.ks-footer-bottom p{
   margin-bottom: 0px;
}

.ks-footer-bottom strong {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 650;
}

.ks-floating-whatsapp,
.ks-scroll-top {
    position: fixed;
    z-index: 1700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}

.ks-floating-whatsapp {
    left: 24px;
    right: auto;
    bottom: 24px;
    width: 62px;
    height: 62px;
    background: #25d366;
    font-size: 29px;
    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.24),
        0 0 0 0 rgba(37, 211, 102, 0.18);
    animation: ksWhatsAppFloat 3.6s ease-in-out infinite;
}

.ks-floating-whatsapp::before {
    position: absolute;
    content: "";
    inset: -5px;
    border: 1px solid rgba(37, 211, 102, 0.34);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    animation: ksWhatsAppRing 3.6s ease-out infinite;
}

.ks-floating-whatsapp:hover {
    color: #ffffff;
    background: #20bd5a;
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 16px 36px rgba(37, 211, 102, 0.30),
        0 0 0 6px rgba(37, 211, 102, 0.08);
}

.ks-scroll-top {
    right: 22px;
    left: auto;
    bottom: 22px;
    width: 47px;
    height: 47px;
    visibility: hidden;
    opacity: 0;
    background: var(--ks-red);
    font-size: 13px;
    transform: translateY(10px);
}

.ks-scroll-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ks-scroll-top:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

@keyframes ksWhatsAppFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes ksWhatsAppRing {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    18% {
        opacity: 0.50;
    }

    58%,
    100% {
        opacity: 0;
        transform: scale(1.17);
    }
}

.page-header {
    position: relative;
    overflow: hidden;
    padding: 39px 0 41px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(236, 12, 23, 0.22),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #061522,
            #0d2b43
        );
}

.page-header-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.page-breadcrumb a,
.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    font-weight: 600;
}

.page-breadcrumb i {
    color: rgba(255, 255, 255, 0.32);
    font-size: 12px;
}

.page-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.page-header p {
    max-width: 700px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.75;
}

@keyframes ksHeaderSignal {
    from {
        left: -220px;
    }

    to {
        left: 100%;
    }
}

@keyframes ksButtonGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes ksNavbarDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ksFooterOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ksFooterBeam {
    from {
        left: -250px;
    }

    to {
        left: 100%;
    }
}

@media (max-width: 1199.98px) {
    .ks-nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }

    .ks-header-cta {
        padding-left: 12px;
        padding-right: 12px;
    }

}

@media (max-width: 991.98px) {
    .ks-main-nav,
    .ks-header-cta {
        display: none;
    }

    .ks-navbar-inner {
        min-height: 74px;
    }

    .ks-brand img {
        height: 49px;
    }

    .ks-navbar-actions {
        margin-left: auto;
    }

    .ks-mobile-toggle {
        display: block;
    }

    .ks-topbar-location {
        display: none;
    }

    .ks-footer-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
.ks-topbar-inner {
        justify-content: center;
        min-height: 38px;
    }

    .ks-topbar-contact a:nth-child(2),
    .ks-topbar-right {
        display: none;
    }

    .ks-brand {
        max-width: 195px;
    }

    .ks-brand img {
        max-width: 190px;
        height: 45px;
    }

    .ks-footer-top h2 {
        font-size: 23px;
    }

    .ks-footer-main {
        padding: 45px 0 35px;
    }

    .ks-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        padding: 15px 0;
    }

    .ks-floating-whatsapp {
        left: 15px;
        right: auto;
        bottom: 18px;
        width: 58px;
        height: 58px;
        font-size: 27px;
    }

    .ks-scroll-top {
        right: 15px;
    }

    .page-header {
        padding: 32px 0 34px;
    }

    .page-header h1 {
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .ks-reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   HOME SLIDER V2
   ========================================================= */

.ks-home-hero {
    position: relative;
    overflow: hidden;
    background: #07131d;
}

.ks-home-hero .carousel,
.ks-home-hero .carousel-inner,
.ks-home-hero .carousel-item {
    position: relative;
    width: 100%;
}

.ks-hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item.active .ks-hero-slide {
    animation: ksHeroBackgroundMove 8s ease-out forwards;
}

.ks-hero-slide-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 13, 22, 0.91) 0%,
            rgba(5, 16, 27, 0.78) 35%,
            rgba(5, 16, 27, 0.38) 65%,
            rgba(5, 16, 27, 0.10) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 16, 27, 0.05) 45%,
            rgba(5, 16, 27, 0.35) 100%
        );
}

.ks-hero-grid {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image:
        linear-gradient(
            90deg,
            #000 0%,
            rgba(0, 0, 0, 0.7) 38%,
            transparent 72%
        );
}

.ks-hero-light {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(60px);
}

.ks-hero-light-one {
    top: -180px;
    right: 10%;
    width: 440px;
    height: 440px;
    background: rgba(236, 12, 23, 0.10);
    animation: ksHeroGlowOne 9s ease-in-out infinite;
}

.ks-hero-light-two {
    left: 18%;
    bottom: -230px;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, 0.05);
    animation: ksHeroGlowTwo 11s ease-in-out infinite;
}

.ks-hero-slide > .container {
    position: relative;
    z-index: 5;
}

.ks-hero-content {
    position: relative;
    max-width: 970px;
    padding: 0 0 0 29px;
    margin: 0;
}

.ks-hero-content::before {
    position: absolute;
    content: "";
    left: 0;
    top: 5px;
    width: 3px;
    height: 0;
    background:
        linear-gradient(
            180deg,
            var(--ks-red),
            rgba(236, 12, 23, 0.08)
        );
    border-radius: 10px;
}

.carousel-item.active .ks-hero-content::before {
    animation: ksHeroLineOpen 0.8s 0.15s ease forwards;
}


.ks-hero-eyebrow span {
    flex: 0 0 25px;
    width: 25px;
    height: 2px;
    background: var(--ks-red);
    border-radius: 5px;
}

.ks-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 4.3vw, 61px);
    line-height: 1.07;
    font-weight: 700;
    letter-spacing: -2.5px;
    text-wrap: balance;
}

.ks-hero-content p {
    max-width: 620px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 400;
}

.ks-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.ks-hero-actions .ks-btn {
    min-height: 49px;
    padding: 0 19px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.ks-hero-actions .ks-btn-primary {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: var(--ks-red);
    border: 1px solid var(--ks-red);
    box-shadow: 0 11px 27px rgba(236, 12, 23, 0.22);
}

.ks-hero-actions .ks-btn-primary::before {
    position: absolute;
    content: "";
    top: -60%;
    left: -60%;
    width: 45%;
    height: 220%;
    background: rgba(255, 255, 255, 0.17);
    transform: rotate(25deg);
    transition: left 0.5s ease;
}

.ks-hero-actions .ks-btn-primary:hover::before {
    left: 130%;
}

.ks-hero-actions .ks-btn-primary:hover {
    color: #ffffff;
    background: #cf0a14;
    border-color: #cf0a14;
    transform: translateY(-2px);
}

.ks-hero-actions .ks-btn-glass {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.ks-hero-actions .ks-btn-glass:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
}

/* aktif slide içerik animasyonu */

.carousel-item .ks-hero-eyebrow,
.carousel-item .ks-hero-content h1,
.carousel-item .ks-hero-content p,
.carousel-item .ks-hero-actions {
    opacity: 0;
    transform: translateY(22px);
}

.carousel-item.active .ks-hero-eyebrow {
    animation: ksHeroContentIn 0.65s 0.18s ease forwards;
}

.carousel-item.active .ks-hero-content h1 {
    animation: ksHeroContentIn 0.75s 0.28s ease forwards;
}

.carousel-item.active .ks-hero-content p {
    animation: ksHeroContentIn 0.75s 0.40s ease forwards;
}

.carousel-item.active .ks-hero-actions {
    animation: ksHeroContentIn 0.75s 0.52s ease forwards;
}

/* =========================================================
   MINIMAL SLIDER PAGINATION
   ========================================================= */

.ks-hero-pagination {
    position: absolute;
    z-index: 12;
    left: max(
        24px,
        calc((100vw - 1320px) / 2 + 29px)
    );
    bottom: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
}

.ks-hero-pagination button {
    display: block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    min-width: 7px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    background: rgba(255, 255, 255, 0.38);
    border: 0;
    border-radius: 20px;
    box-shadow: none;
    font-size: 0;
    line-height: 0;
    transform: none;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.ks-hero-pagination button span {
    display: none;
}

.ks-hero-pagination button::after {
    display: none;
}

.ks-hero-pagination button:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: none;
}

.ks-hero-pagination button.active {
    width: 28px;
    height: 7px;
    background: var(--ks-red);
    border: 0;
    box-shadow: none;
    transform: none;
}

/* =========================================================
   SLIDER NAVIGATION
   ========================================================= */

.ks-hero-navigation {
    position: absolute;
    z-index: 12;
    right: max(
        24px,
        calc((100vw - 1320px) / 2)
    );
    bottom: 27px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.ks-hero-navigation button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(8, 21, 32, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 13px;
    backdrop-filter: blur(8px);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.ks-hero-navigation button:hover {
    color: #ffffff;
    background: var(--ks-red);
    border-color: var(--ks-red);
    transform: translateY(-2px);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes ksHeroContentIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ksHeroLineOpen {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

@keyframes ksHeroBackgroundMove {
    from {
        background-position: center center;
    }

    to {
        background-position: center 46%;
    }
}

@keyframes ksHeroGlowOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.7;
    }

    50% {
        transform: translate3d(-25px, 25px, 0);
        opacity: 1;
    }
}

@keyframes ksHeroGlowTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(30px, -20px, 0);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199.98px) {

    .ks-hero-slide {
        min-height: 620px;
    }

    .ks-hero-content {
        max-width: 620px;
    }

    .ks-hero-content h1 {
        font-size: clamp(40px, 5vw, 54px);
    }

    .ks-hero-pagination {
        left: 30px;
    }

    .ks-hero-navigation {
        right: 30px;
    }

}

@media (max-width: 991.98px) {

    .ks-hero-slide {
        min-height: 600px;
    }

    .ks-hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 13, 22, 0.91) 0%,
                rgba(5, 16, 27, 0.72) 65%,
                rgba(5, 16, 27, 0.35) 100%
            );
    }

    .ks-hero-content {
        max-width: 600px;
        padding-left: 24px;
    }

    .ks-hero-content h1 {
        font-size: 46px;
    }

    .ks-hero-content p {
        font-size: 14px;
    }

}

@media (max-width: 767.98px) {

    .ks-hero-slide {
        min-height: 560px;
    }

    .ks-hero-slide-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 13, 22, 0.91),
                rgba(5, 16, 27, 0.67)
            );
    }

    .ks-hero-content {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 15px;
    }

    .ks-hero-content h1 {
        font-size: 38px;
        letter-spacing: -1.6px;
    }

    .ks-hero-eyebrow {
        font-size: 12px;
    }

    .ks-hero-navigation {
        display: none;
    }

    .ks-hero-pagination {
        left: 25px;
        bottom: 25px;
    }

}

@media (max-width: 575.98px) {

    .ks-hero-slide {
        min-height: 540px;
    }

    .ks-hero-content {
        padding-left: 16px;
        padding-right: 8px;
    }

    .ks-hero-content::before {
        width: 2px;
    }

    .ks-hero-content h1 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .ks-hero-content p {
        margin-top: 17px;
        font-size: 14px;
        line-height: 1.7;
    }

    .ks-hero-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 23px;
    }

    .ks-hero-actions .ks-btn {
        width: 100%;
    }

}


/* =========================================================
   HAKKIMIZDA
   ========================================================= */

.aboutx-header {
    position: relative;
    overflow: hidden;
    padding: 64px 0 68px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% -20%,
            rgba(193, 28, 36, 0.14),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #101316 0%,
            #171b1f 55%,
            #1d2226 100%
        );
}

.aboutx-header::before {
    position: absolute;
    content: "";
    width: 340px;
    height: 340px;
    right: 8%;
    top: -245px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.aboutx-header::after {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    right: 13%;
    top: -105px;
    border: 1px solid rgba(193, 28, 36, 0.15);
    border-radius: 50%;
}

.aboutx-header-soft {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(65px);
}

.aboutx-header-soft-one {
    width: 280px;
    height: 280px;
    right: 16%;
    top: -190px;
    background: rgba(193, 28, 36, 0.11);
    animation: aboutxSoft 9s ease-in-out infinite;
}

.aboutx-header-soft-two {
    width: 220px;
    height: 220px;
    left: 12%;
    bottom: -190px;
    background: rgba(255, 255, 255, 0.025);
    animation: aboutxSoft 12s ease-in-out infinite reverse;
}

.aboutx-header .container {
    position: relative;
    z-index: 2;
}

.aboutx-header-inner {
    max-width: 900px;
}

.aboutx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.aboutx-breadcrumb a,
.aboutx-breadcrumb strong,
.aboutx-breadcrumb span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.aboutx-breadcrumb a:hover {
    color: #ffffff;
}

.aboutx-breadcrumb > span {
    color: rgba(255, 255, 255, 0.22);
}

.aboutx-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.aboutx-header p {
    max-width: 670px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    line-height: 1.8;
    font-weight: 400;
}

.aboutx-intro {
    padding: 100px 0;
    overflow: hidden;
    background: #ffffff;
}

.aboutx-intro-grid {
    display: grid;
    grid-template-columns: 0.93fr 1.07fr;
    align-items: center;
    gap: 75px;
}

.aboutx-intro-image {
    position: relative;
    height: 590px;
    overflow: hidden;
    background: #eceeef;
    border-radius: 3px;
}

.aboutx-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.aboutx-intro-image:hover img {
    transform: scale(1.025);
}

.aboutx-intro-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 62%,
            rgba(14, 17, 20, 0.24)
        );
}

.aboutx-image-mark {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 23px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
}

.aboutx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c11c24;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aboutx-eyebrow::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #c11c24;
}

.aboutx-intro-content h2,
.aboutx-heading h2,
.aboutx-lab-content h2 {
    margin: 11px 0 0;
    color: #171b1f;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.aboutx-intro-content h2 strong,
.aboutx-heading h2 strong,
.aboutx-lab-content h2 strong {
    display: block;
    font-weight: 700;
}

.aboutx-richtext {
    max-height: 390px;
    margin-top: 25px;
    padding-right: 13px;
    overflow-y: auto;
    color: #626b72;
    font-size: 14px;
    line-height: 1.9;
}

.aboutx-richtext::-webkit-scrollbar {
    width: 3px;
}

.aboutx-richtext::-webkit-scrollbar-thumb {
    background: #d7dadd;
}

.aboutx-richtext p {
    margin: 0 0 16px;
}

.aboutx-richtext p:last-child {
    margin-bottom: 0;
}

.aboutx-richtext strong,
.aboutx-richtext b {
    color: #202428;
    font-weight: 700;
}

.aboutx-principles {
    padding: 95px 0;
    background: #f5f5f4;
}

.aboutx-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.aboutx-heading > div {
    max-width: 680px;
}

.aboutx-heading > p {
    max-width: 470px;
    margin: 0 0 4px;
    color: #687078;
    font-size: 14px;
    line-height: 1.8;
}

.aboutx-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 45px;
    border-top: 1px solid #dadcde;
    border-bottom: 1px solid #dadcde;
}

.aboutx-principle {
    position: relative;
    min-height: 250px;
    padding: 29px 25px 32px;
    border-right: 1px solid #dadcde;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.aboutx-principle:last-child {
    border-right: 0;
}

.aboutx-principle:hover {
    background: #ffffff;
}

.aboutx-principle-no {
    display: block;
    margin-bottom: 41px;
    color: #c11c24;
    font-size: 12px;
    font-weight: 700;
}

.aboutx-principle h3 {
    margin: 0;
    color: #202428;
    font-size: 17px;
    font-weight: 700;
}

.aboutx-principle p {
    margin: 10px 0 0;
    color: #6a737a;
    font-size: 13px;
    line-height: 1.75;
}

.aboutx-lab {
    padding: 100px 0;
    background: #ffffff;
}

.aboutx-lab-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    align-items: stretch;
    overflow: hidden;
    background: #171a1d;
}

.aboutx-lab-content {
    padding: 55px 50px;
}

.aboutx-lab-content .aboutx-eyebrow {
    color: #e3444b;
}

.aboutx-lab-content .aboutx-eyebrow::before {
    background: #e3444b;
}

.aboutx-lab-content h2 {
    color: #ffffff;
}

.aboutx-lab-lead {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.85;
}

.aboutx-lab-list {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.aboutx-lab-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    transition: padding-left 0.25s ease;
}

.aboutx-lab-row:hover {
    padding-left: 6px;
}

.aboutx-lab-row > span {
    color: #e3444b;
    font-size: 12px;
    font-weight: 700;
}

.aboutx-lab-row > div {
    display: flex;
    flex-direction: column;
}

.aboutx-lab-row strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.aboutx-lab-row small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 12px;
    line-height: 1.5;
}

.aboutx-lab-image {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #24282b;
}

.aboutx-lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.aboutx-lab-grid:hover .aboutx-lab-image img {
    transform: scale(1.025);
}

.aboutx-lab-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(12, 15, 17, 0.55)
        );
}

.aboutx-lab-caption {
    position: absolute;
    left: 28px;
    bottom: 27px;
    display: flex;
    flex-direction: column;
}

.aboutx-lab-caption span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.aboutx-lab-caption strong {
    margin-top: 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.aboutx-direction {
    padding: 100px 0;
    background: #f5f5f4;
}

.aboutx-direction-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #dcdedf;
}

.aboutx-direction-item {
    padding: 42px;
    background: #ffffff;
}

.aboutx-direction-item + .aboutx-direction-item {
    border-left: 1px solid #dcdedf;
}

.aboutx-direction-heading {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e2e4e5;
}

.aboutx-direction-heading span {
    color: #c11c24;
    font-size: 12px;
    font-weight: 700;
}

.aboutx-direction-heading h2 {
    margin: 0;
    color: #1d2124;
    font-size: 27px;
    font-weight: 700;
}

.aboutx-direction-text {
    max-height: 310px;
    margin-top: 24px;
    padding-right: 10px;
    overflow-y: auto;
    color: #667077;
    font-size: 13px;
    line-height: 1.85;
}

.aboutx-direction-text p {
    margin: 0 0 15px;
}

.aboutx-direction-text::-webkit-scrollbar {
    width: 3px;
}

.aboutx-direction-text::-webkit-scrollbar-thumb {
    background: #d6d9db;
}

@keyframes aboutxSoft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-15px, 12px, 0);
    }
}

@media (max-width: 1199.98px) {

    .aboutx-intro-grid {
        gap: 45px;
    }

    .aboutx-principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aboutx-principle:nth-child(2) {
        border-right: 0;
    }

    .aboutx-principle:nth-child(-n+2) {
        border-bottom: 1px solid #dadcde;
    }

}

@media (max-width: 991.98px) {

    .aboutx-intro-grid,
    .aboutx-lab-grid {
        grid-template-columns: 1fr;
    }

    .aboutx-intro-image {
        height: 500px;
    }

    .aboutx-lab-image {
        min-height: 430px;
    }

}

@media (max-width: 767.98px) {

    .aboutx-header {
        padding: 50px 0 54px;
    }

    .aboutx-header h1 {
        font-size: 38px;
    }

    .aboutx-intro,
    .aboutx-principles,
    .aboutx-lab,
    .aboutx-direction {
        padding: 72px 0;
    }

    .aboutx-intro-content h2,
    .aboutx-heading h2,
    .aboutx-lab-content h2 {
        font-size: 31px;
    }

    .aboutx-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .aboutx-principle-grid,
    .aboutx-direction-grid {
        grid-template-columns: 1fr;
    }

    .aboutx-principle {
        border-right: 0;
        border-bottom: 1px solid #dadcde;
    }

    .aboutx-principle:last-child {
        border-bottom: 0;
    }

    .aboutx-direction-item + .aboutx-direction-item {
        border-top: 1px solid #dcdedf;
        border-left: 0;
    }

    .aboutx-direction-item {
        min-height: 0;
        padding: 30px 25px;
    }

    .aboutx-direction-text {
        max-height: none;
        overflow: visible;
    }

}

@media (max-width: 575.98px) {

    .aboutx-header h1 {
        font-size: 34px;
    }

    .aboutx-header p {
        font-size: 14px;
    }

    .aboutx-intro-image {
        height: 420px;
    }

    .aboutx-lab-content {
        padding: 32px 23px;
    }

    .aboutx-lab-image {
        min-height: 350px;
    }

}

/* =========================================================
   KALİTE POLİTİKAMIZ
   ========================================================= */

.quality-header {
    position: relative;
    overflow: hidden;
    padding: 62px 0 68px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 86% 5%,
            rgba(236, 12, 23, 0.09),
            transparent 24%
        ),
        linear-gradient(
            120deg,
            #111417 0%,
            #171c20 55%,
            #1d2327 100%
        );
}

.quality-header::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent
        );
}

.quality-header-shape {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.quality-header-shape-one {
    width: 280px;
    height: 280px;
    right: 8%;
    top: -215px;
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.quality-header-shape-two {
    width: 145px;
    height: 145px;
    right: 14%;
    top: -85px;
    border: 1px solid rgba(236, 12, 23, 0.13);
}

.quality-header .container {
    position: relative;
    z-index: 2;
}

.quality-header-content {
    max-width: 760px;
}

.quality-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
}

.quality-breadcrumb a,
.quality-breadcrumb span,
.quality-breadcrumb strong {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.quality-breadcrumb > span {
    color: rgba(255, 255, 255, 0.22);
}

.quality-breadcrumb a:hover {
    color: #ffffff;
}

.quality-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.quality-header p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.quality-intro {
    padding: 95px 0 85px;
    background: #ffffff;
}

.quality-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 90px;
    align-items: start;
}

.quality-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c21b24;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quality-label::before {
    width: 25px;
    height: 1px;
    content: "";
    background: #c21b24;
}

.quality-intro-heading h2 {
    max-width: 650px;
    margin: 11px 0 0;
    color: #1b2024;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.quality-intro-heading h2 strong {
    display: block;
    font-weight: 700;
}

.quality-intro-text {
    padding-top: 28px;
    border-top: 1px solid #dfe2e4;
}

.quality-intro-text p {
    margin: 0 0 16px;
    color: #667078;
    font-size: 14px;
    line-height: 1.9;
}

.quality-intro-text p:last-child {
    margin-bottom: 0;
}

.quality-principles {
    background: #f5f5f4;
}

.quality-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dcdedf;
    border-bottom: 1px solid #dcdedf;
}

.quality-principle {
    min-height: 230px;
    padding: 32px 27px;
    border-right: 1px solid #dcdedf;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.quality-principle:last-child {
    border-right: 0;
}

.quality-principle:hover {
    background: #ffffff;
}

.quality-principle > span {
    display: block;
    margin-bottom: 40px;
    color: #c21b24;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.quality-principle h3 {
    margin: 0;
    color: #202529;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.quality-principle p {
    margin: 9px 0 0;
    color: #6b747b;
    font-size: 13px;
    line-height: 1.75;
}

.quality-policy {
    padding: 105px 0;
    background: #ffffff;
}

.quality-policy-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 75px;
    align-items: start;
}

.quality-policy-side {
    position: sticky;
    top: 120px;
}

.quality-policy-side h2 {
    margin: 14px 0 0;
    color: #1c2125;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1.2px;
}

.quality-policy-side h2 strong {
    display: block;
    font-weight: 700;
}

.quality-policy-side > p {
    margin: 18px 0 0;
    color: #879097;
    font-size: 12px;
    line-height: 1.7;
}

.quality-policy-content {
    min-width: 0;
    padding: 42px 46px;
    background: #f7f7f6;
    border: 1px solid #e1e3e4;
}

.quality-policy-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.quality-policy-title span {
    flex: 0 0 auto;
    color: #9a2228;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.quality-policy-title > div {
    width: 100%;
    height: 1px;
    background: #dcdedf;
}

.quality-richtext {
    color: #5e686f;
    font-size: 14px;
    line-height: 1.95;
}

.quality-richtext p {
    margin: 0 0 18px;
}

.quality-richtext p:last-child {
    margin-bottom: 0;
}

.quality-richtext strong,
.quality-richtext b {
    color: #202529;
    font-weight: 700;
}

.quality-richtext h2,
.quality-richtext h3,
.quality-richtext h4 {
    margin: 30px 0 12px;
    color: #202529;
    line-height: 1.4;
    font-weight: 700;
}

.quality-richtext h2 {
    font-size: 22px;
}

.quality-richtext h3 {
    font-size: 18px;
}

.quality-richtext h4 {
    font-size: 16px;
}

.quality-richtext ul,
.quality-richtext ol {
    margin: 18px 0;
    padding-left: 20px;
}

.quality-richtext li {
    margin-bottom: 9px;
}

@media (max-width: 991.98px) {

    .quality-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .quality-intro-text {
        padding-top: 25px;
    }

    .quality-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-principle:nth-child(2) {
        border-right: 0;
    }

    .quality-principle:nth-child(-n+2) {
        border-bottom: 1px solid #dcdedf;
    }

    .quality-policy-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .quality-policy-side {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .quality-header {
        padding: 50px 0 54px;
    }

    .quality-header h1 {
        font-size: 38px;
    }

    .quality-intro {
        padding: 72px 0 65px;
    }

    .quality-intro-heading h2 {
        font-size: 31px;
    }

    .quality-policy {
        padding: 72px 0;
    }

    .quality-policy-content {
        padding: 30px 25px;
    }

}

@media (max-width: 575.98px) {

    .quality-header h1 {
        font-size: 34px;
    }

    .quality-header p {
        font-size: 14px;
    }

    .quality-principles-grid {
        grid-template-columns: 1fr;
    }

    .quality-principle {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dcdedf;
    }

    .quality-principle:last-child {
        border-bottom: 0;
    }

    .quality-principle > span {
        margin-bottom: 25px;
    }

}

/* =========================================================
   GİZLİLİK VE TARAFSIZLIK
   ========================================================= */

.privacy-intro {
    padding: 95px 0 85px;
    background: #ffffff;
}

.privacy-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
    gap: 90px;
}

.privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c11c24;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.privacy-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #c11c24;
}

.privacy-intro-heading h2 {
    max-width: 670px;
    margin: 11px 0 0;
    color: #1b2024;
    font-size: 37px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.privacy-intro-heading h2 strong {
    display: block;
    font-weight: 700;
}

.privacy-intro-text {
    padding-top: 27px;
    border-top: 1px solid #dfe2e4;
}

.privacy-intro-text p {
    margin: 0 0 16px;
    color: #667078;
    font-size: 14px;
    line-height: 1.9;
}

.privacy-intro-text p:last-child {
    margin-bottom: 0;
}

.privacy-principles {
    background: #f5f5f4;
}

.privacy-principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dcdedf;
    border-bottom: 1px solid #dcdedf;
}

.privacy-principle {
    min-height: 245px;
    padding: 31px 26px;
    border-right: 1px solid #dcdedf;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.privacy-principle:last-child {
    border-right: 0;
}

.privacy-principle:hover {
    background: #ffffff;
}

.privacy-principle > span {
    display: block;
    margin-bottom: 42px;
    color: #c11c24;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.privacy-principle h3 {
    margin: 0;
    color: #202529;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-principle p {
    margin: 10px 0 0;
    color: #697279;
    font-size: 13px;
    line-height: 1.75;
}

.privacy-policy {
    padding: 105px 0;
    background: #ffffff;
}

.privacy-policy-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 75px;
}

.privacy-policy-side {
    position: sticky;
    top: 120px;
}

.privacy-policy-side h2 {
    margin: 14px 0 0;
    color: #1c2125;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1.2px;
}

.privacy-policy-side h2 strong {
    display: block;
    font-weight: 700;
}

.privacy-policy-side > p {
    margin: 18px 0 0;
    color: #879097;
    font-size: 12px;
    line-height: 1.7;
}

.privacy-policy-content {
    min-width: 0;
    padding: 42px 46px;
    background: #f7f7f6;
    border: 1px solid #e1e3e4;
}

.privacy-policy-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.privacy-policy-head span {
    flex: 0 0 auto;
    color: #9a2228;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.privacy-policy-head > div {
    width: 100%;
    height: 1px;
    background: #dcdedf;
}

.privacy-richtext {
    color: #5e686f;
    font-size: 14px;
    line-height: 1.95;
}

.privacy-richtext p {
    margin: 0 0 18px;
}

.privacy-richtext p:last-child {
    margin-bottom: 0;
}

.privacy-richtext strong,
.privacy-richtext b {
    color: #202529;
    font-weight: 700;
}

.privacy-richtext h2,
.privacy-richtext h3,
.privacy-richtext h4 {
    margin: 30px 0 12px;
    color: #202529;
    line-height: 1.4;
    font-weight: 700;
}

.privacy-richtext h2 {
    font-size: 22px;
}

.privacy-richtext h3 {
    font-size: 18px;
}

.privacy-richtext h4 {
    font-size: 16px;
}

.privacy-richtext ul,
.privacy-richtext ol {
    margin: 18px 0;
    padding-left: 20px;
}

.privacy-richtext li {
    margin-bottom: 9px;
}

@media (max-width: 991.98px) {

    .privacy-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .privacy-intro-text {
        padding-top: 25px;
    }

    .privacy-principles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .privacy-principle:nth-child(2) {
        border-right: 0;
    }

    .privacy-principle:nth-child(-n+2) {
        border-bottom: 1px solid #dcdedf;
    }

    .privacy-policy-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .privacy-policy-side {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .privacy-intro {
        padding: 72px 0 65px;
    }

    .privacy-intro-heading h2 {
        font-size: 31px;
    }

    .privacy-policy {
        padding: 72px 0;
    }

    .privacy-policy-content {
        padding: 30px 25px;
    }

}

@media (max-width: 575.98px) {

    .privacy-principles-grid {
        grid-template-columns: 1fr;
    }

    .privacy-principle {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dcdedf;
    }

    .privacy-principle:last-child {
        border-bottom: 0;
    }

    .privacy-principle > span {
        margin-bottom: 25px;
    }

}


/* =========================================================
   ŞİKAYET PROSESİ
   ========================================================= */

.complaint-intro {
    padding: 95px 0 85px;
    background: #ffffff;
}

.complaint-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
    gap: 90px;
}

.complaint-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c11c24;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.complaint-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #c11c24;
}

.complaint-intro-heading h2,
.complaint-process-head h2 {
    margin: 11px 0 0;
    color: #1b2024;
    font-size: 37px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.complaint-intro-heading h2 strong,
.complaint-process-head h2 strong {
    display: block;
    font-weight: 700;
}

.complaint-intro-text {
    padding-top: 27px;
    border-top: 1px solid #dfe2e4;
}

.complaint-intro-text p {
    margin: 0 0 16px;
    color: #667078;
    font-size: 14px;
    line-height: 1.9;
}

.complaint-intro-text p:last-child {
    margin-bottom: 0;
}

.complaint-process {
    padding: 95px 0;
    background: #f5f5f4;
}

.complaint-process-head {
    max-width: 720px;
}

.complaint-process-grid {
    margin-top: 45px;
    border-top: 1px solid #d9dcde;
}

.complaint-process-item {
    display: grid;
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 30px;
    padding: 29px 0;
    border-bottom: 1px solid #d9dcde;
    transition:
        padding-left 0.25s ease,
        background 0.25s ease;
}

.complaint-process-item:hover {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.65);
}

.complaint-process-number {
    color: #c11c24;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.complaint-process-item h3 {
    margin: 0;
    color: #202529;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.complaint-process-item p {
    max-width: 720px;
    margin: 7px 0 0;
    color: #6b747b;
    font-size: 13px;
    line-height: 1.75;
}

.complaint-document {
    padding: 105px 0;
    padding-top: 50px;
    background: #ffffff;
}

.complaint-document-layout {
    display: grid;
    align-items: start;
    gap: 75px;
}

.complaint-document-side {
    position: sticky;
    top: 120px;
}

.complaint-document-side h2 {
    margin: 14px 0 0;
    color: #1c2125;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -1.2px;
}

.complaint-document-side h2 strong {
    display: block;
    font-weight: 700;
}

.complaint-document-side > p {
    margin: 18px 0 0;
    color: #879097;
    font-size: 12px;
    line-height: 1.7;
}

.complaint-document-content {
    min-width: 0;
    padding: 42px 46px;
    background: #f7f7f6;
    border: 1px solid #e1e3e4;
}

.complaint-document-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.complaint-document-title span {
    flex: 0 0 auto;
    color: #9a2228;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.complaint-document-title > div {
    width: 100%;
    height: 1px;
    background: #dcdedf;
}

.complaint-richtext {
    color: #5e686f;
    font-size: 14px;
    line-height: 1.95;
}

.complaint-richtext p {
    margin: 0 0 18px;
}

.complaint-richtext p:last-child {
    margin-bottom: 0;
}

.complaint-richtext strong,
.complaint-richtext b {
    color: #202529;
    font-weight: 700;
}

.complaint-richtext h2,
.complaint-richtext h3,
.complaint-richtext h4 {
    margin: 30px 0 12px;
    color: #202529;
    line-height: 1.4;
    font-weight: 700;
}

.complaint-richtext h2 {
    font-size: 22px;
}

.complaint-richtext h3 {
    font-size: 18px;
}

.complaint-richtext h4 {
    font-size: 16px;
}

.complaint-richtext ul,
.complaint-richtext ol {
    margin: 18px 0;
    padding-left: 20px;
}

.complaint-richtext li {
    margin-bottom: 9px;
}

@media (max-width: 991.98px) {

    .complaint-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .complaint-document-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .complaint-document-side {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .complaint-intro,
    .complaint-process {
        padding: 72px 0;
    }

    .complaint-intro-heading h2,
    .complaint-process-head h2 {
        font-size: 31px;
    }

    .complaint-document {
        padding: 72px 0;
    }

    .complaint-document-content {
        padding: 30px 25px;
    }

    .complaint-process-item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
    }

}

@media (max-width: 575.98px) {

    .complaint-process-item {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .complaint-process-item:hover {
        padding-left: 0;
    }

}


/* =========================================================
   HOME ANALYSIS V2
   ========================================================= */

.home-analysis-v2 {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(193, 28, 36, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 94% 100%,
            rgba(118, 92, 94, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8f8f6 0%,
            #eeeeeb 52%,
            #f6f2f2 100%
        );
}

.home-analysis-v2-orb {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(4px);
}

.home-analysis-v2-orb-one {
    width: 310px;
    height: 310px;
    right: -165px;
    top: -155px;
    border: 1px solid rgba(193, 28, 36, 0.09);
}

.home-analysis-v2-orb-two {
    width: 190px;
    height: 190px;
    left: -105px;
    bottom: -105px;
    border: 1px solid rgba(28, 32, 35, 0.07);
}

.home-analysis-v2 .container {
    position: relative;
    z-index: 2;
}

.home-analysis-v2-heading {
    max-width: 790px;
}

.home-analysis-v2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9e3e44;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-analysis-v2-kicker::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #9e3e44;
}

.home-analysis-v2-heading h2 {
    margin: 11px 0 0;
    color: #1b1f22;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.home-analysis-v2-heading h2 strong {
    display: block;
    font-weight: 700;
}

.home-analysis-v2-heading > p {
    max-width: 690px;
    margin: 16px 0 0;
    color: #6d7378;
    font-size: 14px;
    line-height: 1.8;
}

.home-analysis-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 45px;
}

.home-analysis-v2-card {
    position: relative;
    min-height: 275px;
    padding: 25px 23px 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(33, 37, 40, 0.09);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(35, 30, 31, 0.045);
    backdrop-filter: blur(8px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.home-analysis-v2-card::before {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    right: -55px;
    top: -55px;
    background: rgba(158, 62, 68, 0.04);
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.home-analysis-v2-card:hover {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(158, 62, 68, 0.17);
    box-shadow: 0 24px 50px rgba(35, 30, 31, 0.075);
    transform: translateY(-5px);
}

.home-analysis-v2-card:hover::before {
    transform: scale(1.2);
}

.home-analysis-v2-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-analysis-v2-number {
    color: #a0a5a9;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.home-analysis-v2-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #9e3e44;
    background: rgba(158, 62, 68, 0.075);
    border: 1px solid rgba(158, 62, 68, 0.10);
    border-radius: 14px;
    font-size: 17px;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.home-analysis-v2-card:hover .home-analysis-v2-icon {
    color: #842f35;
    background: rgba(158, 62, 68, 0.11);
    transform: translateY(-2px);
}

.home-analysis-v2-card h3 {
    position: relative;
    z-index: 2;
    margin: 42px 0 0;
    color: #202427;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.home-analysis-v2-card p {
    position: relative;
    z-index: 2;
    margin: 10px 0 0;
    color: #70767b;
    font-size: 13px;
    line-height: 1.75;
}

.home-analysis-v2-line {
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 0;
    height: 2px;
    overflow: hidden;
    background: rgba(32, 36, 39, 0.06);
}

.home-analysis-v2-line::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 34%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            rgba(158, 62, 68, 0.20),
            rgba(158, 62, 68, 0.75)
        );
    transition: width 0.35s ease;
}

.home-analysis-v2-card:hover .home-analysis-v2-line::after {
    width: 100%;
}

@media (max-width: 1199.98px) {

    .home-analysis-v2-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {

    .home-analysis-v2 {
        padding: 75px 0;
    }

    .home-analysis-v2-heading h2 {
        font-size: 31px;
    }

    .home-analysis-v2-grid {
        margin-top: 34px;
    }

}

@media (max-width: 575.98px) {

    .home-analysis-v2-grid {
        grid-template-columns: 1fr;
    }

    .home-analysis-v2-card {
        min-height: 245px;
    }

}

/* =========================================================
   HOME CORPORATE
   ========================================================= */

.home-corporate {
    position: relative;
    padding: 95px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(146, 75, 79, 0.055),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f7f5 100%
        );
}

.home-corporate::before {
    position: absolute;
    content: "";
    width: 260px;
    height: 260px;
    right: -150px;
    bottom: -160px;
    border: 1px solid rgba(30, 34, 37, 0.055);
    border-radius: 50%;
}

.home-corporate .container {
    position: relative;
    z-index: 2;
}

.home-corporate-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 42px;
}

.home-corporate-head > div {
    max-width: 650px;
}

.home-corporate-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9b464b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.home-corporate-kicker::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #9b464b;
}

.home-corporate-head h2 {
    margin: 10px 0 0;
    color: #1b1f22;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.home-corporate-head h2 strong {
    display: block;
    font-weight: 700;
}

.home-corporate-head > p {
    max-width: 460px;
    margin: 0 0 3px;
    color: #73797e;
    font-size: 14px;
    line-height: 1.8;
}

.home-corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dcdfdf;
    border-bottom: 1px solid #dcdfdf;
}

.home-corporate-card {
    position: relative;
    display: flex;
    min-height: 330px;
    padding: 28px 27px 25px;
    overflow: hidden;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.56);
    border-right: 1px solid #dcdfdf;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-corporate-card:last-child {
    border-right: 0;
}

.home-corporate-card::before {
    position: absolute;
    content: "";
    right: -80px;
    top: -80px;
    width: 175px;
    height: 175px;
    background: rgba(155, 70, 75, 0.035);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.home-corporate-card:hover {
    color: inherit;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(27, 31, 34, 0.06);
    transform: translateY(-4px);
}

.home-corporate-card:hover::before {
    transform: scale(1.25);
}

.home-corporate-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-corporate-no {
    color: #adb1b4;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.home-corporate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #8f464a;
    background: #f3e9e9;
    border: 1px solid rgba(143, 70, 74, 0.08);
    border-radius: 50%;
    font-size: 17px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.home-corporate-card:hover .home-corporate-icon {
    background: #eee0e1;
    transform: translateY(-2px);
}

.home-corporate-card-body {
    position: relative;
    z-index: 2;
    margin-top: 45px;
}

.home-corporate-label {
    display: block;
    color: #969ca0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.home-corporate-card h3 {
    margin: 6px 0 0;
    color: #202427;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.home-corporate-card p {
    max-width: 330px;
    margin: 11px 0 0;
    color: #6e757a;
    font-size: 13px;
    line-height: 1.75;
}

.home-corporate-card-foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid #e6e7e7;
}

.home-corporate-card-foot span {
    color: #565d62;
    font-size: 12px;
    font-weight: 600;
}

.home-corporate-card-foot i {
    color: #9b464b;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.home-corporate-card:hover .home-corporate-card-foot i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {

    .home-corporate-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .home-corporate-grid {
        grid-template-columns: 1fr;
    }

    .home-corporate-card {
        min-height: 270px;
        border-right: 0;
        border-bottom: 1px solid #dcdfdf;
    }

    .home-corporate-card:last-child {
        border-bottom: 0;
    }

    .home-corporate-card-body {
        margin-top: 30px;
    }

}

@media (max-width: 767.98px) {

    .home-corporate {
        padding: 72px 0;
    }

    .home-corporate-head h2 {
        font-size: 31px;
    }

}

@media (max-width: 575.98px) {

    .home-corporate-card {
        min-height: 255px;
        padding: 24px 21px;
    }

    .home-corporate-icon {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

}

/* =========================================================
   MÜŞTERİ MEMNUNİYET ANKETİ
   ========================================================= */

.survey-page {
    padding: 95px 0 105px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f7f5 100%
        );
}

.survey-intro {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
    gap: 90px;
    margin-bottom: 55px;
}

.survey-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9b464b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.survey-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #9b464b;
}

.survey-intro-heading h2 {
    margin: 11px 0 0;
    color: #1c2023;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.survey-intro-heading h2 strong {
    font-weight: 700;
}

.survey-intro-content {
    padding-top: 26px;
    border-top: 1px solid #dedfdf;
    color: #687076;
    font-size: 14px;
    line-height: 1.9;
}

.survey-intro-content p {
    margin: 0 0 14px;
}

.survey-intro-content p:last-child {
    margin-bottom: 0;
}

.survey-message {
    margin-bottom: 25px;
    padding: 15px 18px;
    color: #7b3338;
    background: #f8eeee;
    border: 1px solid #ead5d6;
    border-left: 3px solid #9b464b;
    font-size: 13px;
    line-height: 1.7;
}

.survey-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    align-items: start;
    gap: 45px;
}

.survey-main {
    min-width: 0;
}

.survey-block {
    padding: 37px 40px;
    margin-bottom: 18px;
    background: #ffffff;
    border: 1px solid #e0e2e2;
}

.survey-block-heading {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 17px;
    margin-bottom: 30px;
    padding-bottom: 23px;
    border-bottom: 1px solid #e6e7e7;
}

.survey-block-heading > span {
    padding-top: 5px;
    color: #9b464b;
    font-size: 12px;
    font-weight: 700;
}

.survey-block-heading h2 {
    margin: 0;
    color: #202427;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.survey-block-heading p {
    margin: 5px 0 0;
    color: #81878b;
    font-size: 13px;
    line-height: 1.7;
}

.survey-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.survey-field {
    min-width: 0;
}

.survey-field label {
    display: block;
    margin-bottom: 8px;
    color: #3c4246;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.survey-input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    color: #252a2e;
    background: #fafafa;
    border: 1px solid #dcdfdf;
    border-radius: 7px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.survey-input::placeholder {
    color: #adb1b4;
}

.survey-input:focus {
    background: #ffffff;
    border-color: #aa777a;
    box-shadow: 0 0 0 3px rgba(155, 70, 75, 0.06);
}

.survey-textarea {
    min-height: 165px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
    line-height: 1.7;
}

.survey-questions {
    display: grid;
    gap: 13px;
}

.survey-question {
    min-width: 0;
    margin: 0;
    padding: 22px 23px;
    background: #fafafa;
    border: 1px solid #e2e4e4;
    border-radius: 8px;
}

.survey-question legend {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    width: 100%;
    margin: 0 0 19px;
    padding: 0;
}

.survey-question-number {
    padding-top: 2px;
    color: #a0a5a8;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.survey-question-title {
    color: #292e31;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
}

.survey-question-title small {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 7px;
    color: #914248;
    background: #f5e8e9;
    border-radius: 20px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    vertical-align: middle;
}

.survey-score-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding-left: 52px;
}

.survey-score-option {
    position: relative;
    display: flex;
    min-height: 77px;
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.survey-score-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.survey-score-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    color: #5c6368;
    background: #ffffff;
    border: 1px solid #dfe1e1;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.survey-score-option small {
    display: block;
    margin-top: 6px;
    color: #93989b;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
}

.survey-score-option:hover .survey-score-box {
    color: #844046;
    background: #faf3f3;
    border-color: #d9bfc1;
    transform: translateY(-2px);
}

.survey-score-option input:checked + .survey-score-box {
    color: #ffffff;
    background: #854148;
    border-color: #854148;
    box-shadow: 0 7px 18px rgba(78, 46, 49, 0.13);
}

.survey-score-option input:checked ~ small {
    color: #5d4547;
    font-weight: 600;
}

.survey-empty {
    padding: 22px;
    color: #737a7e;
    background: #f7f7f6;
    border: 1px solid #e1e3e3;
    font-size: 13px;
}

.survey-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 30px;
    background: #202427;
}

.survey-submit-area > div {
    display: flex;
    flex-direction: column;
}

.survey-submit-area strong {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.survey-submit-area span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    line-height: 1.6;
}

.survey-submit {
    flex: 0 0 auto;
    min-height: 49px;
    padding: 0 22px;
    color: #ffffff;
    background: #98474d;
    border: 0;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.survey-submit:hover {
    background: #803c41;
    transform: translateY(-2px);
}

.survey-side {
    position: relative;
}

.survey-side-inner {
    position: sticky;
    top: 110px;
    padding: 27px 25px;
    background: #f0f0ee;
    border: 1px solid #dedfdf;
}

.survey-side-label {
    display: block;
    color: #9b464b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.survey-side h3 {
    margin: 5px 0 0;
    color: #22272a;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 700;
}

.survey-scale {
    margin-top: 22px;
    border-top: 1px solid #d7d9d9;
}

.survey-scale > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 49px;
    border-bottom: 1px solid #d7d9d9;
}

.survey-scale strong {
    color: #8f4247;
    font-size: 13px;
    font-weight: 700;
}

.survey-scale span {
    color: #666e73;
    font-size: 13px;
}

.survey-side-note {
    margin-top: 26px;
    padding-top: 23px;
    border-top: 1px solid #d7d9d9;
}

.survey-side-note > span {
    display: block;
    color: #3c4246;
    font-size: 12px;
    font-weight: 700;
}

.survey-side-note p {
    margin: 7px 0 0;
    color: #7b8286;
    font-size: 12px;
    line-height: 1.75;
}

.survey-success {
    max-width: 850px;
    margin: 20px auto;
    padding: 65px 60px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dedfdf;
}

.survey-success-label {
    display: block;
    color: #95454b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.survey-success h2 {
    margin: 12px 0 0;
    color: #202427;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.survey-success p {
    max-width: 620px;
    margin: 17px auto 0;
    color: #6c7479;
    font-size: 14px;
    line-height: 1.85;
}

@media (max-width: 1199.98px) {

    .survey-layout {
        grid-template-columns: minmax(0, 1fr) 245px;
        gap: 25px;
    }

}

@media (max-width: 991.98px) {

    .survey-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .survey-layout {
        grid-template-columns: 1fr;
    }

    .survey-side-inner {
        position: static;
    }

    .survey-scale {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .survey-scale > div {
        display: flex;
        min-height: 70px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
        border-right: 1px solid #d7d9d9;
    }

    .survey-scale > div:last-child {
        border-right: 0;
    }

}

@media (max-width: 767.98px) {

    .survey-page {
        padding: 72px 0;
    }

    .survey-intro-heading h2 {
        font-size: 31px;
    }

    .survey-contact-grid {
        grid-template-columns: 1fr;
    }

    .survey-block {
        padding: 28px 24px;
    }

    .survey-score-options {
        padding-left: 0;
    }

    .survey-question legend {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .survey-submit-area {
        align-items: stretch;
        flex-direction: column;
    }

    .survey-submit {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .survey-score-options {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 5px;
    }

    .survey-question {
        padding: 19px 15px;
    }

    .survey-score-box {
        height: 43px;
    }

    .survey-score-option small {
        font-size: 12px;
        text-align: center;
    }

    .survey-scale {
        grid-template-columns: 1fr;
    }

    .survey-scale > div {
        display: grid;
        grid-template-columns: 35px minmax(0, 1fr);
        min-height: 43px;
        border-right: 0;
    }

    .survey-success {
        padding: 45px 24px;
    }

    .survey-success h2 {
        font-size: 27px;
    }

}

/* =========================================================
   BELGELERİMİZ
   ========================================================= */

.documents-page-intro {
    padding: 90px 0 82px;
    background: #ffffff;
}

.documents-page-intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
    gap: 90px;
}

.documents-page-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #9b464b;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.documents-page-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #9b464b;
}

.documents-page-intro h2 {
    max-width: 670px;
    margin: 11px 0 0;
    color: #1c2023;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.documents-page-intro h2 strong {
    display: block;
    font-weight: 700;
}

.documents-page-intro-text {
    padding-top: 27px;
    border-top: 1px solid #dfe1e1;
}

.documents-page-intro-text p {
    margin: 0 0 16px;
    color: #697176;
    font-size: 14px;
    line-height: 1.9;
}

.documents-page-intro-text p:last-child {
    margin-bottom: 0;
}

.documents-page-list {
    padding: 85px 0 105px;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(155, 70, 75, 0.045),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f6f6f4 0%,
            #eeeeeb 100%
        );
}

.documents-page-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.documents-page-list-head h2 {
    margin: 7px 0 0;
    color: #202427;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.documents-page-count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #979da0;
    font-size: 12px;
    line-height: 1.4;
}

.documents-page-count strong {
    color: #8d4247;
    font-size: 19px;
    font-weight: 700;
}

.documents-page-item {
    position: relative;
    display: flex;
    min-height: 285px;
    padding: 28px 29px 25px;
    overflow: hidden;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.72);
    border-right: 1px solid #d7dada;
    border-bottom: 1px solid #d7dada;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.documents-page-item::before {
    position: absolute;
    content: "";
    right: -85px;
    top: -85px;
    width: 180px;
    height: 180px;
    background: rgba(155, 70, 75, 0.035);
    border-radius: 50%;
    transition: transform 0.4s ease;
}

.documents-page-item:hover {
    z-index: 2;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(29, 31, 33, 0.07);
    transform: translateY(-3px);
}

.documents-page-item:hover::before {
    transform: scale(1.25);
}

.documents-page-item-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.documents-page-number {
    color: #9ca1a4;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.documents-page-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 27px;
    padding: 0 10px;
    color: #8c4247;
    background: #f2e7e8;
    border-radius: 30px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.documents-page-item-content {
    position: relative;
    z-index: 2;
    margin-top: 52px;
}

.documents-page-item-label {
    display: block;
    color: #999fa2;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.documents-page-item h3 {
    max-width: 500px;
    margin: 7px 0 0;
    color: #202427;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.documents-page-item-bottom {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 23px;
    border-top: 1px solid #e2e4e4;
}

.documents-page-item-bottom a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #575e62;
}

.documents-page-item-bottom a span {
    font-size: 12px;
    font-weight: 600;
}

.documents-page-item-bottom a i {
    color: #914248;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.documents-page-item-bottom a:hover {
    color: #272c2f;
}

.documents-page-item-bottom a:hover i {
    transform: translate(3px, -3px);
}

.documents-page-unavailable {
    color: #a2a7aa;
    font-size: 12px;
    font-weight: 600;
}

.documents-page-empty {
    padding: 55px 40px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dcdfdf;
}

.documents-page-empty > span {
    display: block;
    color: #292e31;
    font-size: 17px;
    font-weight: 700;
}

.documents-page-empty p {
    margin: 7px 0 0;
    color: #7c8387;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {

    .documents-page-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}

@media (max-width: 767.98px) {

    .documents-page-intro {
        padding: 72px 0 65px;
    }

    .documents-page-intro h2 {
        font-size: 31px;
    }

    .documents-page-list {
        padding: 70px 0 80px;
    }

    .documents-page-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575.98px) {

    .documents-page-list-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .documents-page-item {
        min-height: 250px;
        padding: 24px 21px;
    }

    .documents-page-item-content {
        margin-top: 38px;
    }

    .documents-page-item h3 {
        font-size: 17px;
    }

}



.documents-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.documents-page-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe1e1;
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.documents-page-item:hover {
    border-color: #d3c1c2;
    box-shadow: 0 22px 50px rgba(30, 32, 34, 0.08);
    transform: translateY(-5px);
}

.documents-page-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 390px;
    overflow: hidden;
    background: #e9e9e7;
    border-bottom: 1px solid #e0e2e2;
}

.documents-page-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 55px);
    border: 0;
    pointer-events: none;
    background: #ffffff;
}

.documents-page-preview-shade {
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 76%,
            rgba(23, 25, 27, 0.12) 100%
        );
}

.documents-page-preview-type {
    position: absolute;
    z-index: 3;
    right: 15px;
    top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 29px;
    padding: 0 11px;
    color: #844046;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(132, 64, 70, 0.12);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.documents-page-preview-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9fa2;
    background:
        linear-gradient(
            145deg,
            #eeeeec,
            #e5e5e2
        );
}

.documents-page-preview-empty > span {
    font-size: 20px;
    font-weight: 700;
}

.documents-page-item-body {
    padding: 23px 24px 22px;
}

.documents-page-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.documents-page-number {
    color: #99464c;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.documents-page-item-meta > span:last-child {
    color: #979da0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.documents-page-item h3 {
    min-height: 52px;
    margin: 10px 0 0;
    color: #202427;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.documents-page-item-bottom {
    padding-top: 18px;
    border-top: 1px solid #e3e5e5;
}

.documents-page-item-bottom a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #545b60;
}

.documents-page-item-bottom a span {
    font-size: 12px;
    font-weight: 600;
}

.documents-page-item-bottom a i {
    color: #914248;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.documents-page-item-bottom a:hover {
    color: #202427;
}

.documents-page-item-bottom a:hover i {
    transform: translate(3px, -3px);
}

.documents-page-unavailable {
    color: #9ba0a3;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1199.98px) {

    .documents-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {

    .documents-page-grid {
        grid-template-columns: 1fr;
    }

    .documents-page-preview {
        height: 430px;
    }

}

@media (max-width: 575.98px) {

    .documents-page-preview {
        height: 360px;
    }

    .documents-page-item-body {
        padding: 20px;
    }

}

/* =========================================================
   BİRİMLER LİSTE
   ========================================================= */

.unitlist-intro {
    padding: 90px 0 80px;
    background: #ffffff;
}

.unitlist-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    align-items: start;
    gap: 85px;
}

.unitlist-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #96484d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.unitlist-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #96484d;
}

.unitlist-intro h2 {
    max-width: 660px;
    margin: 11px 0 0;
    color: #1d2124;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.5px;
}

.unitlist-intro h2 strong {
    display: block;
    font-weight: 700;
}

.unitlist-intro-text {
    padding-top: 27px;
    border-top: 1px solid #dfe1e1;
}

.unitlist-intro-text p {
    margin: 0 0 15px;
    color: #687176;
    font-size: 14px;
    line-height: 1.9;
}

.unitlist-intro-text p:last-child {
    margin-bottom: 0;
}

.unitlist-section {
    padding: 85px 0 105px;
    background:
        linear-gradient(
            180deg,
            #f6f6f4 0%,
            #efefec 100%
        );
}

.unitlist-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.unitlist-section-head h2 {
    margin: 7px 0 0;
    color: #202427;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -1px;
}

.unitlist-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #999fa2;
}

.unitlist-count strong {
    color: #93464b;
    font-size: 19px;
    font-weight: 700;
}

.unitlist-count span {
    font-size: 12px;
}

.unitlist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.unitlist-card {
    display: flex;
    width: calc((100% - 40px) / 3);
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dde0e0;
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.unitlist-card:hover {
    border-color: #d3c2c3;
    box-shadow: 0 22px 50px rgba(29, 31, 33, 0.08);
    transform: translateY(-5px);
}

.unitlist-card-image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: #e9e9e6;
}

.unitlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.unitlist-card:hover .unitlist-card-image img {
    transform: scale(1.035);
}

.unitlist-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 48%,
            rgba(20, 22, 24, 0.36) 100%
        );
}

.unitlist-card-number {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.unitlist-card-content {
    display: flex;
    min-height: 265px;
    padding: 25px 24px 22px;
    flex-direction: column;
}

.unitlist-card-category {
    color: #985057;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.unitlist-card h3 {
    margin: 8px 0 0;
    color: #202427;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
}

.unitlist-card p {
    margin: 11px 0 0;
    color: #6b7378;
    font-size: 13px;
    line-height: 1.75;
}

.unitlist-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    color: #555d61;
    border-top: 1px solid #e3e5e5;
}

.unitlist-card-link span {
    font-size: 12px;
    font-weight: 600;
}

.unitlist-card-link i {
    color: #93464b;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.unitlist-card-link:hover i {
    transform: translateX(5px);
}

.unitlist-empty {
    padding: 55px 35px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dfe1e1;
}

.unitlist-empty strong {
    color: #252a2d;
    font-size: 17px;
    font-weight: 700;
}

.unitlist-empty p {
    margin: 6px 0 0;
    color: #7e8589;
    font-size: 13px;
}


/* =========================================================
   BİRİM DETAY
   ========================================================= */

.unitdetail-main {
    padding: 95px 0 105px;
    background: #ffffff;
}

.unitdetail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: start;
    gap: 75px;
}

.unitdetail-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #96484d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.unitdetail-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #96484d;
}

.unitdetail-content-head {
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e2e2;
}

.unitdetail-content-head h2 {
    max-width: 720px;
    margin: 11px 0 0;
    color: #1d2124;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1.3px;
}

.unitdetail-richtext {
    margin-top: 31px;
    color: #5f686d;
    font-size: 14px;
    line-height: 1.95;
}

.unitdetail-richtext p {
    margin: 0 0 18px;
}

.unitdetail-richtext h2,
.unitdetail-richtext h3,
.unitdetail-richtext h4 {
    margin: 32px 0 13px;
    color: #202427;
    line-height: 1.4;
    font-weight: 700;
}

.unitdetail-richtext h2 {
    font-size: 24px;
}

.unitdetail-richtext h3 {
    font-size: 19px;
}

.unitdetail-richtext h4 {
    font-size: 16px;
}

.unitdetail-richtext ul,
.unitdetail-richtext ol {
    margin: 18px 0;
    padding-left: 20px;
}

.unitdetail-richtext li {
    margin-bottom: 8px;
}

.unitdetail-richtext strong,
.unitdetail-richtext b {
    color: #252a2d;
    font-weight: 700;
}

.unitdetail-side {
    position: sticky;
    top: 105px;
}

.unitdetail-main-image {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #e9e9e6;
}

.unitdetail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.unitdetail-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18, 20, 22, 0.48)
        );
}

.unitdetail-main-image > span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
}

.unitdetail-info {
    padding: 26px 25px;
    background: #f3f3f1;
    border: 1px solid #dfe1e1;
    border-top: 0;
}

.unitdetail-info-label {
    display: block;
    margin-bottom: 18px;
    color: #8e4348;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.unitdetail-info-row {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 49px;
    border-top: 1px solid #dcdddd;
}

.unitdetail-info-row span {
    color: #a2a7aa;
    font-size: 12px;
    font-weight: 700;
}

.unitdetail-info-row strong {
    color: #3c4347;
    font-size: 13px;
    font-weight: 600;
}

.unitdetail-gallery {
    padding: 90px 0 100px;
    background: #f5f5f3;
}

.unitdetail-gallery-head {
    margin-bottom: 32px;
}

.unitdetail-gallery-head h2,
.unitdetail-other-head h2 {
    margin: 9px 0 0;
    color: #202427;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -1px;
}

.unitdetail-gallery-head h2 strong,
.unitdetail-other-head h2 strong {
    display: block;
    font-weight: 700;
}

.unitdetail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.unitdetail-gallery-item {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
    background: #e4e4e1;
}

.unitdetail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.unitdetail-gallery-item:hover img {
    transform: scale(1.04);
}

.unitdetail-gallery-item::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(18, 20, 22, 0.30)
        );
}

.unitdetail-gallery-item > span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.unitdetail-other {
    padding: 95px 0 105px;
    background: #ffffff;
}

.unitdetail-other-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.unitdetail-other-head > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #545b60;
    font-size: 12px;
    font-weight: 600;
}

.unitdetail-other-head > a i {
    color: #93464b;
}

.unitdetail-other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dcdede;
    border-bottom: 1px solid #dcdede;
}

.unitdetail-other-card {
    display: flex;
    min-height: 275px;
    padding: 28px 26px 24px;
    flex-direction: column;
    border-right: 1px solid #dcdede;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.unitdetail-other-card:last-child {
    border-right: 0;
}

.unitdetail-other-card:hover {
    background: #f7f7f5;
}

.unitdetail-other-card > span {
    color: #975057;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.unitdetail-other-card h3 {
    margin: 10px 0 0;
    color: #202427;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.unitdetail-other-card p {
    margin: 11px 0 0;
    color: #6c7479;
    font-size: 13px;
    line-height: 1.75;
}

.unitdetail-other-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    color: #60676b;
    border-top: 1px solid #e0e2e2;
    font-size: 12px;
    font-weight: 600;
}

.unitdetail-other-card > div i {
    color: #93464b;
    font-size: 12px;
}

@media (max-width: 1199.98px) {

    .unitlist-card {
        width: calc((100% - 20px) / 2);
    }

    .unitdetail-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 45px;
    }

}

@media (max-width: 991.98px) {

    .unitlist-intro-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .unitdetail-layout {
        grid-template-columns: 1fr;
    }

    .unitdetail-side {
        position: static;
    }

    .unitdetail-main-image {
        height: 520px;
    }

}

@media (max-width: 767.98px) {

    .unitlist-intro {
        padding: 72px 0 65px;
    }

    .unitlist-intro h2 {
        font-size: 31px;
    }

    .unitlist-section {
        padding: 70px 0 80px;
    }

    .unitlist-card {
        width: 100%;
    }

    .unitdetail-main {
        padding: 72px 0 80px;
    }

    .unitdetail-content-head h2 {
        font-size: 31px;
    }

    .unitdetail-gallery,
    .unitdetail-other {
        padding: 72px 0;
    }

    .unitdetail-gallery-grid,
    .unitdetail-other-grid {
        grid-template-columns: 1fr;
    }

    .unitdetail-other-card {
        border-right: 0;
        border-bottom: 1px solid #dcdede;
    }

    .unitdetail-other-card:last-child {
        border-bottom: 0;
    }

}

@media (max-width: 575.98px) {

    .unitlist-section-head,
    .unitdetail-other-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .unitlist-card-image {
        height: 250px;
    }

    .unitlist-card-content {
        min-height: 245px;
        padding: 23px 21px 20px;
    }

    .unitdetail-main-image {
        height: 340px;
    }

    .unitdetail-gallery-item {
        height: 270px;
    }

}


/* =========================================================
   BİRİM DETAY V2
   ========================================================= */

.unitd-overview {
    padding: 85px 0 95px;
    background: #ffffff;
}

.unitd-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: 520px;
    overflow: hidden;
    background: #f5f5f3;
    border: 1px solid #dfe1e1;
    border-radius: 12px;
}

.unitd-overview-media {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #e5e5e2;
}

.unitd-overview-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.unitd-overview-grid:hover .unitd-overview-media img {
    transform: scale(1.025);
}

.unitd-overview-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(18, 20, 22, 0.42) 100%
        );
}

.unitd-overview-media-info {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 23px;
    display: flex;
    flex-direction: column;
}

.unitd-overview-media-info span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 12px;
    line-height: 1.4;
}

.unitd-overview-media-info strong {
    margin-top: 3px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.unitd-overview-content {
    display: flex;
    min-width: 0;
    height: 520px;
    padding: 48px 45px 35px;
    flex-direction: column;
}

.unitd-overview-content-main {
    margin: auto 0;
}

.unitd-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.unitd-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #98474d;
}

.unitd-overview-content h2 {
    max-width: 520px;
    margin: 13px 0 0;
    color: #202427;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1.4px;
}

.unitd-overview-content-main > p {
    max-width: 600px;
    margin: 19px 0 0;
    color: #687176;
    font-size: 14px;
    line-height: 1.9;
}

.unitd-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: auto;
    border-top: 1px solid #d8dada;
}

.unitd-process-item {
    min-width: 0;
    padding: 18px 13px 4px;
    border-right: 1px solid #d8dada;
}

.unitd-process-item:last-child {
    border-right: 0;
}

.unitd-process-item span {
    display: block;
    color: #98474d;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.unitd-process-item strong {
    display: block;
    margin-top: 7px;
    color: #4a5155;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

.unitd-content-section {
    background: #ffffff;
}

.unitd-content-layout {
    display: grid;
    align-items: start;
    gap: 80px;
}

.unitd-content-side {
    position: sticky;
    top: 110px;
}

.unitd-content-side h2 {
    margin: 14px 0 0;
    color: #202427;
    font-size: 25px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.unitd-content-side-line {
    width: 100%;
    height: 1px;
    margin: 25px 0 18px;
    background: #dfe1e1;
}

.unitd-content-side > p {
    margin: 0;
    color: #92989c;
    font-size: 12px;
    line-height: 1.7;
}

.unitd-richtext {
    min-width: 0;
    color: #5f686d;
    font-size: 14px;
    line-height: 1.95;
}

.unitd-richtext > *:first-child {
    margin-top: 0;
}

.unitd-richtext p {
    margin: 0 0 18px;
}

.unitd-richtext strong,
.unitd-richtext b {
    color: #202427;
    font-weight: 700;
}

.unitd-richtext h2,
.unitd-richtext h3,
.unitd-richtext h4 {
    color: #202427;
    line-height: 1.4;
    font-weight: 700;
}

.unitd-richtext h2 {
    margin: 34px 0 14px;
    font-size: 23px;
}

.unitd-richtext h3 {
    margin: 31px 0 13px;
    font-size: 19px;
}

.unitd-richtext h4 {
    margin: 28px 0 12px;
    font-size: 16px;
}

.unitd-richtext ul,
.unitd-richtext ol {
    margin: 18px 0;
    padding-left: 21px;
}

.unitd-richtext li {
    margin-bottom: 8px;
}

.unitd-gallery {
    padding: 90px 0 100px;
    background:
        linear-gradient(
            180deg,
            #f6f6f4 0%,
            #eeeeeb 100%
        );
}

.unitd-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.unitd-section-heading h2 {
    margin: 9px 0 0;
    color: #202427;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -1px;
}

.unitd-section-heading h2 strong {
    display: block;
    font-weight: 700;
}

.unitd-gallery-count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #989da0;
}

.unitd-gallery-count strong {
    color: #97484e;
    font-size: 18px;
    font-weight: 700;
}

.unitd-gallery-count span {
    font-size: 12px;
}

.unitd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.unit-detail-gallery-item,
.unitd-gallery-item {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
    background: #e3e3e0;
    border-radius: 8px;
}

.unit-detail-gallery-item img,
.unitd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.unit-detail-gallery-item:hover img,
.unitd-gallery-item:hover img {
    transform: scale(1.04);
}

.unit-detail-gallery-overlay,
.unitd-gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 62%,
            rgba(18, 20, 22, 0.32)
        );
}

.unit-detail-gallery-item small,
.unitd-gallery-item small {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.unitd-other {
    padding: 95px 0 105px;
    background: #ffffff;
}

.unitd-other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.unit-detail-other-card,
.unitd-other-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe1e1;
    border-radius: 9px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.unit-detail-other-card:hover,
.unitd-other-card:hover {
    border-color: #d2c0c1;
    box-shadow: 0 20px 48px rgba(29, 31, 33, 0.07);
    transform: translateY(-4px);
}

.unit-detail-other-image,
.unitd-other-image {
    height: 215px;
    overflow: hidden;
    background: #e5e5e2;
}

.unit-detail-other-image img,
.unitd-other-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.unit-detail-other-card:hover .unit-detail-other-image img,
.unitd-other-card:hover .unitd-other-image img {
    transform: scale(1.04);
}

.unit-detail-other-content,
.unitd-other-content {
    padding: 23px 22px 21px;
}

.unit-detail-other-content > span,
.unitd-other-content > span {
    color: #985057;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.unit-detail-other-content h3,
.unitd-other-content h3 {
    min-height: 51px;
    margin: 8px 0 0;
    color: #202427;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.unit-detail-other-content p,
.unitd-other-content p {
    min-height: 68px;
    margin: 10px 0 0;
    color: #6c7479;
    font-size: 13px;
    line-height: 1.7;
}

.unit-detail-other-link,
.unitd-other-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 17px;
    color: #585f63;
    border-top: 1px solid #e2e4e4;
}

.unit-detail-other-link span,
.unitd-other-link span {
    font-size: 12px;
    font-weight: 600;
}

.unit-detail-other-link i,
.unitd-other-link i {
    color: #98474d;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.unit-detail-other-card:hover .unit-detail-other-link i,
.unitd-other-card:hover .unitd-other-link i {
    transform: translateX(5px);
}

@media (max-width: 1199.98px) {

    .unitd-overview-content {
        padding-left: 35px;
        padding-right: 35px;
    }

    .unitd-overview-content h2 {
        font-size: 33px;
    }

    .unitd-content-layout {
        gap: 50px;
    }

}

@media (max-width: 991.98px) {

    .unitd-overview-grid {
        grid-template-columns: 1fr;
    }

    .unitd-overview-media {
        height: 470px;
    }

    .unitd-overview-content {
        height: auto;
        min-height: 420px;
    }

    .unitd-overview-content-main {
        margin: 0;
    }

    .unitd-process {
        margin-top: 40px;
    }

    .unitd-content-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .unitd-content-side {
        position: static;
    }

    .unitd-content-side-line {
        max-width: 300px;
    }

}

@media (max-width: 767.98px) {

    .unitd-overview {
        padding: 70px 0 75px;
    }

    .unitd-overview-media {
        height: 370px;
    }

    .unitd-overview-content {
        min-height: 0;
        padding: 35px 27px 29px;
    }

    .unitd-overview-content h2 {
        font-size: 29px;
    }

    .unitd-content-section {
        padding: 75px 0;
    }

    .unitd-gallery,
    .unitd-other {
        padding: 72px 0;
    }

    .unitd-gallery-grid,
    .unitd-other-grid {
        grid-template-columns: 1fr;
    }

    .unit-detail-gallery-item,
    .unitd-gallery-item {
        height: 380px;
    }

}

@media (max-width: 575.98px) {

    .unitd-overview-media {
        height: 290px;
    }

    .unitd-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .unitd-process-item {
        padding-bottom: 15px;
        border-bottom: 1px solid #d8dada;
    }

    .unitd-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .unit-detail-gallery-item,
    .unitd-gallery-item {
        height: 275px;
    }

}

/* =========================================================
   MEDYA
   ========================================================= */

.media-page {
    padding: 85px 0 80px;
    background: #ffffff;
}

.media-page-lead {
    max-width: 780px;
}

.media-page-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.media-page-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #98474d;
}

.media-page-lead h2 {
    margin: 10px 0 0;
    color: #202427;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.media-page-lead h2 strong {
    display: block;
    font-weight: 700;
}

.media-page-lead > p {
    max-width: 660px;
    margin: 17px 0 0;
    color: #697176;
    font-size: 14px;
    line-height: 1.85;
}

.media-page-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 23px;
    border-top: 1px solid #e0e2e2;
}

.media-page-stats > div {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.media-page-stats strong {
    color: #8e4348;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.media-page-stats span {
    color: #90969a;
    font-size: 12px;
}

.media-photos {
    padding: 85px 0 100px;
    background:
        linear-gradient(
            180deg,
            #f6f6f4,
            #eeeeeb
        );
}

.media-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.media-section-head h2 {
    margin: 9px 0 0;
    color: #202427;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -1px;
}

.media-section-head h2 strong {
    display: block;
    font-weight: 700;
}

.media-section-count {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #999fa2;
    font-size: 12px;
}

.media-section-count strong {
    color: #94464b;
    font-size: 18px;
    font-weight: 700;
}

.media-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.media-photo-card {
    position: relative;
    display: block;
    width: 100%;
    height: 330px;
    padding: 0;
    overflow: hidden;
    background: #e3e3e0;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
}

.media-photo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.media-photo-card:hover img {
    transform: scale(1.04);
}

.media-photo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(20, 22, 24, 0.38)
        );
}

.media-photo-number {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.media-photo-view {
    position: absolute;
    right: 16px;
    bottom: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: rgba(24, 27, 29, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 12px;
    backdrop-filter: blur(7px);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.media-photo-card:hover .media-photo-view {
    background: #914248;
    transform: scale(1.05);
}

.media-videos {
    padding: 95px 0 105px;
    background: #ffffff;
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.media-video-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe1e1;
    border-radius: 10px;
}

.media-video-frame {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: #171a1c;
}

.media-video-frame iframe,
.media-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.media-video-content {
    padding: 24px 25px 25px;
}

.media-video-content > span {
    display: block;
    color: #985057;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.media-video-content h3 {
    margin: 7px 0 0;
    color: #202427;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.media-video-content p {
    margin: 10px 0 0;
    color: #6c7479;
    font-size: 13px;
    line-height: 1.75;
}

.media-empty-section {
    padding: 70px 0 100px;
    background: #f6f6f4;
}

.media-empty {
    padding: 55px 35px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dfe1e1;
}

.media-empty strong {
    display: block;
    color: #252a2d;
    font-size: 17px;
    font-weight: 700;
}

.media-empty p {
    margin: 7px 0 0;
    color: #7d8488;
    font-size: 13px;
}

.media-lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition:
        visibility 0.25s ease,
        opacity 0.25s ease;
}

.media-lightbox.active {
    visibility: visible;
    opacity: 1;
}

.media-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 14, 0.90);
    backdrop-filter: blur(8px);
}

.media-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1180px, 90vw);
    max-height: 88vh;
}

.media-lightbox-dialog img {
    display: block;
    width: 100%;
    max-height: 88vh;
    object-fit: contain;
}

.media-lightbox-close {
    position: absolute;
    z-index: 3;
    right: 0;
    top: -48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    font-size: 14px;
}

.media-lightbox-index {
    position: absolute;
    left: 0;
    bottom: -35px;
}

#mediaLightboxIndex {
    position: absolute;
    left: 0;
    bottom: -33px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991.98px) {

    .media-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-video-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767.98px) {

    .media-page {
        padding: 70px 0 65px;
    }

    .media-page-lead h2 {
        font-size: 31px;
    }

    .media-photos,
    .media-videos {
        padding: 72px 0;
    }

    .media-photo-card {
        height: 290px;
    }

    .media-video-frame {
        height: 300px;
    }

}

@media (max-width: 575.98px) {

    .media-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .media-photo-grid {
        grid-template-columns: 1fr;
    }

    .media-photo-card {
        height: 300px;
    }

    .media-video-frame {
        height: 235px;
    }

}


/* =========================================================
   BLOGLAR
   ========================================================= */

.blogs-page {
    padding: 90px 0 105px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f5f3 100%
        );
}

.blogs-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid #dedfdf;
}

.blogs-page-head > div:first-child {
    max-width: 720px;
}

.blogs-page-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.blogs-page-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #98474d;
}

.blogs-page-head h2 {
    margin: 10px 0 0;
    color: #202427;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.blogs-page-head h2 strong {
    font-weight: 700;
}

.blogs-page-head p {
    max-width: 650px;
    margin: 15px 0 0;
    color: #697176;
    font-size: 14px;
    line-height: 1.85;
}

.blogs-page-count {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-bottom: 5px;
    color: #999fa2;
}

.blogs-page-count strong {
    color: #96474d;
    font-size: 21px;
    font-weight: 700;
}

.blogs-page-count span {
    font-size: 12px;
}

.blogs-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.blogs-filter-button {
    min-height: 39px;
    padding: 0 16px;
    color: #686f74;
    background: #ffffff;
    border: 1px solid #dcdede;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.blogs-filter-button:hover {
    color: #823e43;
    border-color: #d4bfc1;
}

.blogs-filter-button.active {
    color: #ffffff;
    background: #884348;
    border-color: #884348;
}

.blogs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 34px;
}

.blogs-card {
    display: flex;
    width: calc((100% - 40px) / 3);
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dcdfdf;
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        opacity 0.25s ease;
}

.blogs-card:hover {
    border-color: #d2c0c2;
    box-shadow: 0 22px 50px rgba(29, 31, 33, 0.08);
    transform: translateY(-5px);
}

.blogs-card-hidden {
    display: none;
}

.blogs-card-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
    background: #e4e4e1;
}

.blogs-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blogs-card:hover .blogs-card-image img {
    transform: scale(1.04);
}

.blogs-card-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(18, 20, 22, 0.40)
        );
}

.blogs-card-number {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 17px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 12px;
    font-weight: 700;
}

.blogs-card-category {
    position: absolute;
    z-index: 2;
    right: 15px;
    top: 15px;
    max-width: calc(100% - 30px);
    padding: 6px 11px;
    color: #6d3b3f;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 30px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
    backdrop-filter: blur(7px);
}

.blogs-card-content {
    display: flex;
    min-height: 295px;
    padding: 23px 22px 21px;
    flex-direction: column;
}

.blogs-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    color: #999fa2;
    font-size: 12px;
    line-height: 1.4;
}

.blogs-card-meta span + span {
    position: relative;
    padding-left: 14px;
}

.blogs-card-meta span + span::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background: #b7bbbd;
    border-radius: 50%;
    transform: translateY(-50%);
}

.blogs-card h3 {
    margin: 12px 0 0;
    color: #202427;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
}

.blogs-card h3 a {
    color: inherit;
}

.blogs-card p {
    margin: 11px 0 0;
    color: #6d757a;
    font-size: 13px;
    line-height: 1.75;
}

.blogs-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 19px;
    color: #585f63;
    border-top: 1px solid #e2e4e4;
}

.blogs-card-link span {
    font-size: 12px;
    font-weight: 600;
}

.blogs-card-link i {
    color: #98474d;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.blogs-card:hover .blogs-card-link i {
    transform: translateX(5px);
}

.blogs-empty {
    margin-top: 35px;
    padding: 55px 35px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dcdfdf;
}

.blogs-empty strong {
    display: block;
    color: #252a2d;
    font-size: 17px;
    font-weight: 700;
}

.blogs-empty p {
    margin: 7px 0 0;
    color: #7d8488;
    font-size: 13px;
}

@media (max-width: 1199.98px) {

    .blogs-card {
        width: calc((100% - 20px) / 2);
    }

}

@media (max-width: 767.98px) {

    .blogs-page {
        padding: 72px 0 80px;
    }

    .blogs-page-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .blogs-page-head h2 {
        font-size: 31px;
    }

    .blogs-card {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .blogs-card-image {
        height: 235px;
    }

    .blogs-card-content {
        min-height: 270px;
        padding: 21px 19px;
    }

    .blogs-card h3 {
        font-size: 18px;
    }

}


/* =========================================================
   BLOG DETAY
   ========================================================= */

.blogd-page {
    padding: 80px 0 105px;
    background: #ffffff;
}

.blogd-meta {
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    border-top: 1px solid #dedfdf;
    border-bottom: 1px solid #dedfdf;
}

.blogd-meta > div {
    min-width: 170px;
    padding: 16px 25px 16px 0;
    margin-right: 25px;
    border-right: 1px solid #dedfdf;
}

.blogd-meta > div:last-child {
    border-right: 0;
}

.blogd-meta span,
.blogd-meta strong {
    display: block;
}

.blogd-meta span {
    color: #999fa2;
    font-size: 12px;
    line-height: 1.4;
}

.blogd-meta strong {
    margin-top: 4px;
    color: #363c40;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.blogd-cover {
    height: 590px;
    overflow: hidden;
    background: #e4e4e1;
    border-radius: 10px;
}

.blogd-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogd-content-wrap {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    align-items: start;
    max-width: 1120px;
    margin: 85px auto 0;
    gap: 70px;
}

.blogd-side {
    position: sticky;
    top: 110px;
}

.blogd-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.blogd-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #98474d;
}

.blogd-side h2 {
    margin: 13px 0 0;
    color: #202427;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

.blogd-side-line {
    width: 100%;
    height: 1px;
    margin: 23px 0 17px;
    background: #dedfdf;
}

.blogd-side-date {
    color: #979da0;
    font-size: 12px;
    line-height: 1.6;
}

.blogd-content {
    min-width: 0;
    color: #596267;
    font-size: 15px;
    line-height: 1.95;
}

.blogd-content > *:first-child {
    margin-top: 0;
}

.blogd-content p {
    margin: 0 0 20px;
}

.blogd-content strong,
.blogd-content b {
    color: #202427;
    font-weight: 700;
}

.blogd-content h2,
.blogd-content h3,
.blogd-content h4 {
    color: #202427;
    line-height: 1.4;
    font-weight: 700;
}

.blogd-content h2 {
    margin: 37px 0 16px;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.blogd-content h3 {
    margin: 33px 0 14px;
    font-size: 21px;
}

.blogd-content h4 {
    margin: 29px 0 12px;
    font-size: 17px;
}

.blogd-content ul,
.blogd-content ol {
    margin: 20px 0 22px;
    padding-left: 22px;
}

.blogd-content li {
    margin-bottom: 8px;
}

.blogd-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

.blogd-content blockquote {
    margin: 30px 0;
    padding: 22px 26px;
    color: #454d51;
    background: #f5f5f3;
    border-left: 3px solid #98474d;
}

.blogd-content a {
    color: #8d4348;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blogd-content table {
    width: 100%;
    margin: 27px 0;
    border-collapse: collapse;
}

.blogd-content th,
.blogd-content td {
    padding: 12px 14px;
    border: 1px solid #dcdfdf;
    text-align: left;
    vertical-align: top;
}

.blogd-content th {
    color: #252a2d;
    background: #f3f3f1;
    font-weight: 700;
}

.blogd-other {
    padding: 90px 0 105px;
    background:
        linear-gradient(
            180deg,
            #f6f6f4,
            #eeeeeb
        );
}

.blogd-other-head {
    margin-bottom: 34px;
}

.blogd-other-head h2 {
    margin: 9px 0 0;
    color: #202427;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 400;
    letter-spacing: -1px;
}

.blogd-other-head h2 strong {
    font-weight: 700;
}

.blogd-other-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blogd-other-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dcdfdf;
    border-radius: 10px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.blogd-other-card:hover {
    border-color: #d2c0c2;
    box-shadow: 0 22px 48px rgba(29, 31, 33, 0.07);
    transform: translateY(-4px);
}

.blogd-other-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #e5e5e2;
}

.blogd-other-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blogd-other-card:hover .blogd-other-image img {
    transform: scale(1.04);
}

.blogd-other-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(18, 20, 22, 0.30)
        );
}

.blogd-other-category {
    position: absolute;
    z-index: 2;
    right: 13px;
    top: 13px;
    max-width: calc(100% - 26px);
    padding: 6px 10px;
    color: #703d41;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 25px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 600;
}

.blogd-other-content {
    padding: 22px 21px 20px;
}

.blogd-other-date {
    display: block;
    color: #989ea1;
    font-size: 12px;
}

.blogd-other-content h3 {
    min-height: 51px;
    margin: 8px 0 0;
    color: #202427;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.blogd-other-content p {
    min-height: 67px;
    margin: 10px 0 0;
    color: #6c7479;
    font-size: 13px;
    line-height: 1.7;
}

.blogd-other-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 17px;
    color: #585f63;
    border-top: 1px solid #e2e4e4;
}

.blogd-other-link span {
    font-size: 12px;
    font-weight: 600;
}

.blogd-other-link i {
    color: #98474d;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.blogd-other-card:hover .blogd-other-link i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {

    .blogd-cover {
        height: 480px;
    }

    .blogd-content-wrap {
        grid-template-columns: 1fr;
        margin-top: 60px;
        gap: 30px;
    }

    .blogd-side {
        position: static;
    }

    .blogd-side-line {
        max-width: 280px;
    }

    .blogd-other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 767.98px) {

    .blogd-page {
        padding: 65px 0 75px;
    }

    .blogd-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blogd-meta > div {
        min-width: 0;
        margin: 0;
        padding: 13px 15px;
        border-right: 1px solid #dedfdf;
        border-bottom: 1px solid #dedfdf;
    }

    .blogd-cover {
        height: 360px;
    }

    .blogd-content {
        font-size: 14px;
    }

    .blogd-other {
        padding: 72px 0;
    }

    .blogd-other-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 575.98px) {

    .blogd-meta {
        grid-template-columns: 1fr;
    }

    .blogd-meta > div {
        border-right: 0;
    }

    .blogd-cover {
        height: 260px;
    }

    .blogd-content h2 {
        font-size: 22px;
    }

    .blogd-other-head h2 {
        font-size: 28px;
    }

}


/* =========================================================
   İLETİŞİM
   ========================================================= */

.contact-page {
    padding: 85px 0 80px;
    background: #ffffff;
}

.contact-page-head {
    max-width: 760px;
}

.contact-page-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.contact-page-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #98474d;
}

.contact-page-head h2,
.contact-form-head h2 {
    margin: 10px 0 0;
    color: #202427;
    font-size: 39px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.contact-page-head h2 strong,
.contact-form-head h2 strong {
    font-weight: 700;
}

.contact-page-head > p,
.contact-form-head > p {
    max-width: 650px;
    margin: 15px 0 0;
    color: #697176;
    font-size: 14px;
    line-height: 1.85;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid #dcdfdf;
    border-bottom: 1px solid #dcdfdf;
}

.contact-info-item {
    min-width: 0;
    min-height: 150px;
    padding: 25px 24px;
    border-right: 1px solid #dcdfdf;
}

.contact-info-item:last-child {
    border-right: 0;
}

.contact-info-item > span {
    display: block;
    margin-bottom: 13px;
    color: #9b4a50;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.contact-info-item a {
    display: block;
    width: fit-content;
    margin-top: 5px;
    color: #292e31;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: #914248;
}

.contact-info-item p {
    margin: 0;
    color: #646d72;
    font-size: 13px;
    line-height: 1.75;
}

.contact-main {
    padding: 90px 0 105px;
    background:
        linear-gradient(
            180deg,
            #f6f6f4 0%,
            #eeeeeb 100%
        );
}

.contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    align-items: stretch;
    gap: 22px;
}

.contact-form-area {
    padding: 42px 40px;
    background: #ffffff;
    border: 1px solid #dcdfdf;
    border-radius: 10px;
}

.contact-form-head {
    max-width: 650px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2e4e4;
}

.contact-form {
    margin-top: 30px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.contact-field {
    min-width: 0;
    margin-bottom: 18px;
}

.contact-form-row .contact-field {
    margin-bottom: 0;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #42494d;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.contact-input {
    display: block;
    width: 100%;
    min-height: 51px;
    padding: 0 15px;
    color: #262b2e;
    background: #fafafa;
    border: 1px solid #dbdede;
    border-radius: 7px;
    outline: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-input::placeholder {
    color: #abb0b3;
}

.contact-input:focus {
    background: #ffffff;
    border-color: #b17d80;
    box-shadow: 0 0 0 3px rgba(152, 71, 77, 0.06);
}

.contact-textarea {
    min-height: 165px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
    line-height: 1.7;
}

.contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 23px;
    border-top: 1px solid #e2e4e4;
}

.contact-form-bottom p {
    max-width: 430px;
    margin: 0;
    color: #969ca0;
    font-size: 12px;
    line-height: 1.7;
}

.contact-submit {
    flex: 0 0 auto;
    min-height: 48px;
    padding: 0 22px;
    color: #ffffff;
    background: #8f4449;
    border: 0;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-submit:hover {
    background: #78393e;
    transform: translateY(-2px);
}

.contact-form-message {
    margin-top: 25px;
    padding: 14px 17px;
    color: #7a3439;
    background: #f8eeee;
    border: 1px solid #ead4d6;
    border-left: 3px solid #914248;
    font-size: 13px;
    line-height: 1.7;
}

.contact-success {
    margin-top: 28px;
    padding: 27px 25px;
    background: #f4f4f1;
    border: 1px solid #dcdfdf;
}

.contact-success strong {
    display: block;
    color: #202427;
    font-size: 17px;
    font-weight: 700;
}

.contact-success p {
    margin: 6px 0 0;
    color: #70787c;
    font-size: 13px;
    line-height: 1.75;
}

.contact-map-area {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #dddeda;
    border: 1px solid #dcdfdf;
    border-radius: 10px;
}

.contact-map-area iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 660px;
    border: 0;
    filter:
        saturate(0.72)
        contrast(0.96);
}

.contact-map-info {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 20px 21px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(34, 38, 41, 0.09);
    border-radius: 8px;
    backdrop-filter: blur(9px);
}

.contact-map-info > span {
    display: block;
    color: #99494f;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-map-info strong {
    display: block;
    margin-top: 5px;
    color: #202427;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.contact-map-info p {
    margin: 8px 0 0;
    color: #6a7277;
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 1199.98px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-item:nth-child(2) {
        border-right: 0;
    }

    .contact-info-item:nth-child(-n+2) {
        border-bottom: 1px solid #dcdfdf;
    }

}

@media (max-width: 991.98px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-area iframe {
        min-height: 500px;
    }

}

@media (max-width: 767.98px) {

    .contact-page {
        padding: 70px 0 65px;
    }

    .contact-page-head h2,
    .contact-form-head h2 {
        font-size: 31px;
    }

    .contact-main {
        padding: 72px 0;
    }

    .contact-form-area {
        padding: 32px 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit {
        width: 100%;
    }

}

@media (max-width: 575.98px) {

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dcdfdf;
    }

    .contact-info-item:last-child {
        border-bottom: 0;
    }

    .contact-map-area iframe {
        min-height: 400px;
    }

    .contact-map-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

}



/* =========================================================
   YASAL SAYFALAR
   ========================================================= */

.legal-page {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f6f6f4 100%
        );
}

.legal-page::after {
    position: absolute;
    content: "";
    right: -190px;
    bottom: -210px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(35, 38, 40, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.legal-page .container {
    position: relative;
    z-index: 2;
}

.legal-page-head {
    max-width: 760px;
    margin-bottom: 42px;
    padding-bottom: 31px;
    border-bottom: 1px solid #dcdfdf;
}

.legal-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #98474d;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.legal-label::before {
    content: "";
    width: 24px;
    height: 1px;
    background: #98474d;
}

.legal-page-head h2 {
    margin: 10px 0 0;
    color: #202427;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: -1.4px;
}

.legal-page-head h2 strong {
    font-weight: 700;
}

.legal-page-head > p {
    margin: 13px 0 0;
    color: #8a9094;
    font-size: 13px;
    line-height: 1.7;
}

.legal-page-content {
    padding: 46px 50px;
    color: #5e676c;
    background: #ffffff;
    border: 1px solid #dfe1e1;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.95;
}

.legal-page-content > *:first-child {
    margin-top: 0;
}

.legal-page-content > *:last-child {
    margin-bottom: 0;
}

.legal-page-content p {
    margin: 0 0 19px;
}

.legal-page-content strong,
.legal-page-content b {
    color: #202427;
    font-weight: 700;
}

.legal-page-content h1,
.legal-page-content h2,
.legal-page-content h3,
.legal-page-content h4,
.legal-page-content h5,
.legal-page-content h6 {
    color: #202427;
    line-height: 1.4;
    font-weight: 700;
}

.legal-page-content h2 {
    margin: 36px 0 14px;
    font-size: 24px;
}

.legal-page-content h3 {
    margin: 32px 0 13px;
    font-size: 20px;
}

.legal-page-content h4 {
    margin: 28px 0 12px;
    font-size: 17px;
}

.legal-page-content ul,
.legal-page-content ol {
    margin: 20px 0;
    padding-left: 22px;
}

.legal-page-content li {
    margin-bottom: 9px;
}

.legal-page-content a {
    color: #914248;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page-content blockquote {
    margin: 27px 0;
    padding: 20px 23px;
    color: #4e565a;
    background: #f5f5f3;
    border-left: 3px solid #98474d;
}

.legal-page-content table {
    width: 100%;
    margin: 27px 0;
    border-collapse: collapse;
}

.legal-page-content th,
.legal-page-content td {
    padding: 12px 14px;
    border: 1px solid #dcdfdf;
    text-align: left;
    vertical-align: top;
}

.legal-page-content th {
    color: #24292c;
    background: #f3f3f1;
    font-weight: 700;
}

@media (max-width: 767.98px) {

    .legal-page {
        padding: 70px 0 80px;
    }

    .legal-page-head {
        margin-bottom: 30px;
    }

    .legal-page-head h2 {
        font-size: 31px;
    }

    .legal-page-content {
        padding: 32px 27px;
    }

}

@media (max-width: 575.98px) {

    .legal-page-content {
        padding: 27px 21px;
        font-size: 14px;
    }

    .legal-page-content h2 {
        font-size: 21px;
    }

    .legal-page-content h3 {
        font-size: 18px;
    }

}


.ks-footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px 18px;
}

.ks-footer-legal a {
    position: relative;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.2s ease;
}

.ks-footer-legal a:hover {
    color: #ffffff;
}

.ks-footer-legal a + a::before {
    position: absolute;
    content: "";
    left: -10px;
    top: 50%;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767.98px) {

    .ks-footer-legal {
        justify-content: flex-start;
    }

}

@media (max-width: 575.98px) {

    .ks-footer-legal {
        gap: 6px 14px;
    }

    .ks-footer-legal a {
        font-size: 12px;
    }

    .ks-footer-legal a + a::before {
        left: -8px;
    }

}

