/* =============================================================================
   BAYİLER
============================================================================= */
/* ===========================
   SVG TÜRKİYE HARİTASI
   =========================== */
#svg-turkiye-haritasi path {
    cursor: pointer;
    fill: var(--text-sec);
    transition: all 0.3s ease;
}

#svg-turkiye-haritasi .selected-il path {
    fill: var(--accent) !important;
}

/* ===========================
   BAYİ SECTION & CONTAINER
   =========================== */
.bayi-section {
    background-color: var(--background-dark);
    padding-top: 0;
    padding-bottom: 180px;
}

.bayi-section .header-container {
    flex-direction: column;
}

.bayi-section .iwcf-top {
    margin-bottom: 110px;
}

.title.bayi {
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* ===========================
   MAP WRAP & MARKERS
   =========================== */
.map-wrap {
    position: relative;
    width: 100%;
}

.map-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--black);
    cursor: pointer;
    transform: translate(-50%, -100%);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
}

.map-marker:hover {
    background: var(--black);
    border: 4px solid var(--accent);
    z-index: 10;
}

.marker-card {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-light);
    padding: 14px 16px;
    border-radius: 16.5px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
}

.marker-card::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--background-light);
}

.map-marker:hover .marker-card {
    opacity: 1;
    pointer-events: auto;
}

.marker-card strong {
    display: block;
    font-size: 14px;
    color: var(--text-thr);
}

/* ===========================
   BAYİ LİSTELEME KARTLARI
   =========================== */
.bayi-section.bayi {
    display: none;
}

.bayi-section.section-padding.open {
    padding-bottom: 0 !important;
}

.bayi-section .about-card {
    background: var(--background-dark);
    padding: 0;
    width: 100%;
}

.bayi-title {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    text-align: start;
    align-items: center;
}

.bayi-title .title {
    text-transform: uppercase;
}

.bayi-line {
    height: 2px;
    background: var(--accent);
    margin: 18px 0;
}

.bayi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 50px;
}

.bayi-item {
    border-radius: 16.5px;
    padding: 28px;
    box-shadow: 0px 0px 20px 0px #f9d6010d;
    transition: 0.25s;
    background: var(--background-dark);
}

.bayi-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 20px 0px #f9d60126;
}

.bayi-desc-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.bayi-desc-row span:first-child {
    flex: 0 0 120px;
    font-weight: 600;
}

.bayi-desc-row span:last-child {
    flex: 1;
    text-align: end;
}

/* ===========================
   MOBİL UYUMLULUK
   =========================== */
@media (max-width: 1010px) {
    .bayi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .slider-controls-kalite{
        width:40% !important;
    }
}
@media (max-width: 768px) {
    .bayi-item {
        padding: 20px;
        border-radius: 12px;
    }

    .bayi-desc-row span:first-child {
        flex: 0 0 100px;
        font-size: 13px;
    }

    .bayi-desc-row span:last-child {
        font-size: 13px;
        word-break: break-word;
    }

    .bayi-title {
        font-size: 15px;
    }
    .slider-controls-kalite{
        width:100% !important;
    }
}




/* =============================================================================
   İLETİŞİM
============================================================================= */
/* ========== MAP ========== */
.map {
    position: relative;
    height: 60vh;
    overflow: hidden;
    background: #000;
}

.map-map {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.map-map.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.map-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg);
}

/* ========== CONTACT INFO (where-we-are, call-us) ========== */
.contact-content-right {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.where-we-are {
    position: relative;
}

.wwa-head {
    margin-bottom: 0;
}

.wwa-title {
    background-color: #ffffff;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    color: #0b2239;
    border-radius: var(--b-radius) var(--b-radius) 0 0;
    position: relative;
    z-index: 2;
}

.wwa-body {
    background-color: var(--white);
    border-radius: 0 0 var(--b-radius) var(--b-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.wwa-left {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.wwa-right {
    width: 280px;
    flex-shrink: 0;
    display: flex;
}

.wwa-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wwa-address,
.wwa-metro {
    border-bottom: 1px solid var(--background-light);
    padding-bottom: 25px;
    gap: 15px;
}

.wwa-metro {
    border-bottom: none;
    padding-bottom: 0;
}

.wwa-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wwa-pin-icon {
    background-color: transparent;
}

.wwa-pin-icon i,
.wwa-metro-icon i {
    color: var(--accent);
    font-size: 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwa-metro-icon {
    color: var(--accent);
    font-weight: bold;
}

.wwa-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wwa-address-title {
    font-weight: 700;
    color: #0b2239;
    font-size: 16px;
}

.wwa-address-desc p {
    color: var(--text-thr);
}

.wwa-metro-title {
    font-weight: 700;
    color: #0b2239;
    font-size: 15px;
}

.wwa-metro-desc {
    color: var(--text-thr);
    font-size: 15px;
    margin-top: 2px;
}

.contact-call {
    flex-wrap: nowrap;
    gap: 25px;
}

.call-us {
    background-color: #ffffff;
    border-radius: 0 var(--b-radius) var(--b-radius) var(--b-radius);
    padding: 20px 30px;
    width: calc(50% - 12.5px);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.call-us-body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
}

.call-us-body .contact-e-mail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.call-us-icon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    width: 60px;
    height: 55px;
    border-radius: 0 var(--b-radius) 0 var(--b-radius);
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-us-head {
    margin-bottom: 12px;
}

.call-us-title {
    font-size: 24px;
    font-weight: 500;
    color: #0b2239;
}

/* ========== CONTACT FORM ========== */
.contact-form-card {
    margin-top: -292px;
    z-index: 2;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--b-radius);
    height: 100%;
}

.contact-section .title {
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--black);
}

.contact-title {
    padding-bottom: 45px;
}

.contact-form .form-control {
    border-radius: var(--b-radius);
    padding: 14px 16px;
    background-color: #efefef;
    font-size: 14px;
    color: var(--text-thr);
    border-color: var(--background-light);
}

.contact-form textarea {
    resize: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-thr);
    opacity: 1;
}

.kvkk {
    font-size: 14px;
    color: var(--text-thr);
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .kvkk {
        margin-top:16px;
    }
}

.kvkk input[type="checkbox"] {
    accent-color: var(--accent);
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    padding-bottom: 20px;
}

.contact-form .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* ========== FAKE RECAPTCHA ========== */
.fake-recaptcha {
    margin-top: 10px;
    padding: 12px 14px;
    background: #efefef;
    border: 1px solid var(--background-light);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 320px;
}

.recaptcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.recaptcha-box input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    background: #fff;
    position: relative;
}

.recaptcha-box input:checked+.checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--accent);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.recaptcha-text {
    font-size: 14px;
    color: #000;
    padding-right: 16px;
}

.recaptcha-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 3px;
}

.recaptcha-label {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

/* ========== RESPONSIVE (max-width: 768px, 575px, 480px) ========== */
@media (max-width: 768px) {
    .contact-form-card {
        margin-top: 1rem !important;
        margin-bottom: 2rem;
    }

    .contact-section .row {
        align-items: flex-start !important;
    }

    .contact-call {
        flex-wrap: wrap !important;
    }

    .contact-call .call-us {
        width: 100% !important;
    }

    .wwa-body {
        flex-direction: column;
    }

    .wwa-right {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .wwa-right img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
    }

    .wwa-left {
        padding: 20px;
    }

    .contact-card {
        padding: 25px;
    }

    .wwa-title {
        padding: 12px 20px;
        font-size: 18px;
    }

    .call-us-title {
        font-size: 20px;
    }

    .contact-section .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    .contact-form .row .col-md-6.text-md-end {
        text-align: left !important;
        margin-top: 15px;
    }

    .fake-recaptcha {
        max-width: 100%;
    }

    .contact-call .call-us {
        padding: 20px;
    }

    .contact-call {
        gap: 20px;
    }

    .call-us-icon {
        width: 50px;
        height: 50px;
    }

    .call-us-icon i {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .wwa-left {
        padding: 15px;
        gap: 18px;
    }

    .contact-card {
        padding: 20px;
    }

    .wwa-title {
        font-size: 16px;
        padding: 10px 15px;
    }

    .call-us-title {
        font-size: 18px;
    }

    .wwa-icon i {
        font-size: 28px;
    }

    .wwa-address,
    .wwa-metro {
        gap: 12px;
    }

    .contact-call {
        gap: 15px;
    }

    .contact-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .contact-form .form-control,
    .select-selected {
        padding: 12px 14px;
    }

    .tab-content.active {
        gap: 18px;
    }

    .contact-title {
        padding-bottom: 20px;
    }

    .contact-section .title {
        font-size: 1.5rem;
    }

    .kvkk {
        font-size: 12px;
    }

    .gen-btn.filled .text a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .wwa-left {
        padding: 20px 12px;
    }

    .wwa-address-desc p,
    .wwa-metro-desc {
        font-size: 13px;
    }

    .call-us-body .contact-e-mail a {
        font-size: 13px;
        word-break: break-word;
    }

    .contact-card {
        padding: 16px;
    }

    .fake-recaptcha {
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-section .row {
        margin: 0;
    }

    .contact-section .col-12 {
        padding-right: 0;
        padding-left: 0;
    }
}

/* ========== VALIDATION ========== */
/* MESAJ ALANI */
#formMesaj{
    max-width: 300px;
    margin-left: auto;
    margin-top: 15px;
}

/* BAŞARILI */
.form-success{
    background: #2ecc71;
    color: #fff;
    padding: 10px;
    font-size: 13px;
}

/* HATA */
.form-error{
    background: #e74c3c;
    color: #fff;
    padding: 10px;
    font-size: 13px;
}
/* ========== RESPONSIVE (others) ========== */

@media (max-width: 1300px) {
    .wwa-right{
        display:none;
    }
}

@media (max-width: 1050px) {
    .contact-card{
        padding:20px;
    }
    .contact-form .gen-btn .rolling-text{
        font-size:14px;
    }
}
@media (max-width: 992px) {
    .contact-form-card{
        margin-top:var(--bs-gutter-y);
    }
    .contact-card{
        padding:40px;
    }
    .contact-form .gen-btn .rolling-text{
        font-size:16px;
    }
    
}
/* =============================================================================
   YÖNETİM KURULU
============================================================================= */
/* ========== MAIN WRAPPER & BOARD CONTAINER ========== */
.yk-board-wrap {
    background: #e4e4e4;
    padding: 80px 0;
}

.yk-board {
    font-family: 'Montserrat', sans-serif;
    --yk-dark: #1a1a1a;
    --yk-muted: #6f6f6f;
}

/* ========== PRESIDENT SECTION ========== */
.yk-president-wrap {
    margin-bottom: 50px;
    gap: 24px;
}

.yk-president-card {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    border-radius: var(--b-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yk-president-card.message {
    max-width: none;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yk-name-lg {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
}

.yk-role {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    padding: 0 16px;
    border-radius: var(--b-radius);
    margin-bottom: 12px;
    min-height: 36px;
    align-content: center;
    line-height:36px;
}

/* ========== DIVIDER ========== */
.yk-divider {
    height: 1px;
    background: rgba(0, 0, 0, .08);
    margin: 40px 0;
}

/* ========== MEMBERS GRID ========== */
.yk-member-card {
    background: var(--white);
    border-radius: var(--b-radius);
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .25s;
}

.yk-member-card:hover {
    transform: translateY(-5px);
}

.yk-name-sm {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

/* ========== CHAIRMAN'S MESSAGE ========== */
.chairman-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-thr);
}

.chairman-text h3 {
    font-size: 16px;
    font-weight:700;
    margin-bottom: 4px;
    color: var(--text-thr);
}

.chairman-text h2 {
    font-size: 32px;
    font-weight:500;
    margin-bottom: 4px;
    color: var(--text-thr);
}

.chairman-text .title {
    color: var(--black);
    line-height: 1;
    padding-bottom: 16px;
}

.chairman-text .title::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background-color: var(--accent);
    margin: 10px 0 0;
    border-radius: 2px;
}

@media (max-width: 1401px) {
    .yk-president-card.message{
        width:100%
    }
}

/* =============================================================================
   YK BAŞKANI MESAJI
============================================================================= */
/* ========== SIGNATURE ========== */
.signature {
    margin-top: 40px;
}

.sign-name {
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
}

.sign-role {
    color: #666;
    font-size: 14px;
}

/* ========== BAYI TITLE ========== */
.title.bayi {
    text-align: center;
    display: flex;
    flex-direction: column;
}




/* =============================================================================
   KVKK - GİZLİLİK
============================================================================= */
.message-subtitle {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
}




/* =============================================================================
   KARİYER
============================================================================= */
.contact-section .title::after,
.chairman-text .title::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background-color: var(--accent);
    margin: 10px 0 0;
    border-radius: 2px;
}

.contact-content-right ol li::marker {
    font-size: 18px;
    font-weight: 600;
}

.fake-recaptcha-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==================== FILE UPLOAD ==================== */
.file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-upload input[type="file"] {
    display: none;
}

.upload-btn {
    display: inline-block;
    padding: 10px 14px;
    background: var(--accent);
    color: var(--text-pri);
    border-radius: var(--b-radius);
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.upload-btn:hover {
    opacity: 0.85;
}

.upload-btn.icon-upload {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
}

.upload-icon {
    width: 22px;
    height: 22px;
    color: var(--black);
}

.upload-label {
    display: block;
    font-size: 12px;
    color: var(--text-thr);
    text-align: center;
    margin-top: 6px;
}



/* =============================================================================
   GRUP ŞİRKETLERİ
============================================================================= */
/* ========== COMPANIES GRID ========== */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 50px;
}

.company-item {
    border-radius: var(--b-radius);
    padding: 28px;
    transition: 0.25s;
    box-shadow: 0px 0px 20px 0px #f9d6010d;
    background: #ffffff2e;
}

.company-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 20px 0px #f9d6010d;
}

.company-top {
    display: flex;
    align-items: center;
    gap: 18px;
    max-height: 40px;
}

.company-logo img {
    width: 150px;
    height: auto;
}

.company-info {
    flex: 1;
}

.company-title {
    font-size: 16px;
    font-weight: 600;
    text-align: end;
}

.company-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-thr);
    text-align: end;
}

.company-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0);
}

.company-line {
    height: 2px;
    background: var(--accent);
    margin: 18px 0;
}

.company-desc {
    font-size: 16px;
    color: var(--text-thr);
}

/* ========== ABOUT CARD (GROUP SECTION) ========== */
.group-section .about-card {
    background: var(--background-light);
    width: 100%;
}

/* ========== RESPONSIVE (max-width: 768px) ========== */
@media (max-width: 1060px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 560px) {
    
    .company-logo img {
        width: 100%;
        max-width: 100px;
        height: auto;
    }

    .company-info {
        text-align: left;
    }

    .company-sub {
        font-size: 14px;
    }

    .company-title {
        font-size: 16px;
    }

    .company-icon {
        display: none;
    }

    .company-item {
        padding: 14px;
    }

    .about-card.sirket {
        padding: 40px 0;
        box-shadow: none;
    }

    .group-section .row {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .about-card {
        margin-bottom: 20px;
        padding: 40px 15px;
    }
}




/* =============================================================================
   KALİTE
============================================================================= */
/* ========== GENERAL TITLE UNDERLINE ========== */
.quality-hero .title::after,
.roadmap-section .title::after,
.quality-final .title::after,
.product-list-section .title::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background-color: var(--accent);
    margin: 10px 0 0;
    border-radius: 2px;
}

.about-count .iwcf-stats .title::after{
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background-color: var(--accent);
    margin: 10px auto;
    border-radius: 2px;
}

/* ========== HERO SECTION (ÜST ALAN) ========== */
.quality-hero .q-text .title::after {
    margin: 10px auto;
}

.quality-text {
    max-width: 800px;
}

.q-text {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.urn-grup .q-text {
    max-width:900px;
}

/* ========== ROADMAP SECTION ========== */
.roadmap-section {
    position: relative;
    background: url(../../img/kategori-img.png) no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.roadmap-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.roadmap-section .row {
    margin: 0 auto;
}

.sticky-title {
    position: sticky;
    top: 120px;
}

.sticky-title p {
    margin-top: 20px;
    max-width: 400px;
}

.roadmap-right {
    padding-left: 60px;
}

.roadmap-item {
    border-top: 1px solid var(--accent);
    padding: 22px 0;
}

.roadmap-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-item p {
    margin-bottom: 0;
}
.iwcf-stat img{
    width: 60%;
}

/* ========== SLIDER (QUALITY FINAL) ========== */
.quality-slider-container {
    position: relative;
    width: 100%;
}

.quality-slide {
    display: none;
    animation: fadeEffect 0.6s ease-in-out;
}

.quality-slide.active {
    display: block;
}

.overlap-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
}

.quality-final-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
}

.quality-final-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--b-radius);
}

.quality-card-content {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: none;
    height: 600px;
    margin-top: 100px;
    background: var(--background-light);
    padding: 70px;
    border-radius: var(--b-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quality-card-content .title {
    padding-bottom: 32px;
}

.quality-card-content .sub-title {
    font-weight: 600;
}

.quality-card-content ul {
    color: var(--text-thr);
}

.mini-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.slider-controls-kalite-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: -70px;
}

.slider-controls-kalite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 10;
    width: 50%;
}
.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: var(--circle);
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--text-pri);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
}


.slider-btn:hover {
  background: var(--accent);
  color: var(--text-pri);
}

.dots-containe-kaliter {
    display: flex;
    gap: 10px;
}

.dot-kalite {
    height: 10px;
    width: 10px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot-kalite.active,
.dot-kalite:hover {
    background-color: var(--accent);
    transform: scale(1.3);
}

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1260px) {
    .quality-card-content{
        padding:50px;
    }
}
@media (max-width: 1130px) {
    .quality-card-content{
        padding:30px;
    }
}
@media (max-width: 1030px) {
    .quality-card-content, .quality-final-img img{
        height:650px;
    }
}
@media (max-width: 1030px) {
    .quality-card-content, .quality-final-img img{
        height:700px;
    }
}
@media (max-width: 994px) {  
    .roadmap-right{
        padding-left:0;
    }
}
@media (max-width: 910px) {  
    .quality-card-content .title{
        padding-bottom:0;
    }
}
@media (max-width: 810px) {  
    .quality-card-content, .quality-final-img img{
        height:740px;
    }
}
@media (max-width: 768px) {
    .overlap-container {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
    }

    .quality-final-img {
        position: relative;
        width: 100%;
        padding-bottom:90px;
        margin-top:60px;
    }

    .quality-final-img img {
        height: 400px;
    }

    .quality-card-content {
        width: 100%;
        margin-top: -50px;
        padding: 40px;
    }

    .slider-controls-kalite-container {
        justify-content: center;
        position: relative;
        top: 525px;
        order:1;
    }

    .slider-controls-kalite {
        width: 100%;
    }
    .quality-card-content{
        margin-top: 0;
        height: auto;
        position: relative;
        padding: 25px;
        min-height: 550px;
    }
    .quality-slider-container{
        display: flex;
        flex-direction: column;
    }
    .quality-slide{
        order:2;
    }
}




/* =============================================================================
   SSS - BLOG
============================================================================= */
.roadmap-section.blog,
.roadmap-section.about {
    background: var(--background-light);
}

.roadmap-section.blog::before,
.roadmap-section.about::before {
    display: none;
}

.roadmap-section.blog .quality-img img {
    border-radius: var(--b-radius);
}

.roadmap-section.blog .roadmap-item {
    border-top: none;
}




/* =============================================================================
   HAKKIMIZDA
============================================================================= */
.inner-banner.about .iwcf-img-main {
    max-width: 70%;
}

.quality-hero.section-padding.section-light.about {
    padding-bottom: 0;
}

.quality-text.about-first {
    max-width: 750px;
}

.quality-text.about {
    max-width: 650px;
}

.quality-text.about-full {
    max-width: none;
}

.quality-img img {
    width: 100%;
    height:650px;
    object-fit: cover;
    border-radius: var(--b-radius);
}
.sol-yazi{
    text-align: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.quality-hero .sol-yazi .title::after {
    margin: 10px 0 0 auto;
}

.counter-section {
    background: linear-gradient(to bottom, var(--background-light) 0%, var(--background-light) 50%, var(--background-dark) 50%, var(--background-dark) 100%);
}

/* ========== COUNT ========== */
.about-count {
    width: 70%;
    background: var(--background-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--b-radius) var(--b-radius) 0 0;
    padding: 60px 45px;
    gap: 75px;
    text-align: center;
    padding-bottom: 0;
}

.about-count .iwcf-stats {
    width: 100%;
    gap: 0;
}

.about-count h3 {
    color: var(--text-pri);
}

.about-count p {
    color: var(--text-sec);
}

.about .roadmap-item{
    border-top:none;
}

@media (max-width: 768px) {
    .counter-section{
        background:var(--background-dark);
    }
    .about-count{
        width:100%;
    }
    #vizyonumuz{
        padding-top:16px;
    }
    .sol-yazi {
        text-align: start;
        align-items: flex-start;
    }
    .quality-hero .sol-yazi .title::after{
        margin: 10px auto 0 0;
    }
}
/* =============================================================================
   KATEGORİLER
============================================================================= */
/* ========== CATEGORY CARD ========== */
.category-card {
    background: var(--white);
    transition: all .3s;
    height: 100%;
    padding:50px 40px !important;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.category-desc {
    font-size: 16px;
    min-height: 80px;
}

.category-img {
    margin: 25px 0;
}

.category-img img {
    max-height: 170px;
}

/* ========== INFO CARD (LAST ITEM) ========== */
.category-info {
    background: var(--background-dark);
    border-radius: 0 0 var(--b-radius) 0;
}

.category-info p,
.category-info h2 {
    color: var(--text-pri);
}

/* ========== PRODUCT GRID WRAPPER ========== */
.urun-grp {
    border-radius: 20px;
    overflow: hidden;
    border-collapse: separate;
}

.urun-grp>div:last-child {
    border-bottom: none !important;
}

.quality-hero.section-padding.section-light.urn-grup{
    padding-top: 90px;
}

.urn-grup .column.w-100.g-4{
    display:flex;
    justify-content:center;
}
.urn-grup .gen-btn.filled{
    margin-top:32px;
}



/* =============================================================================
   ÜRÜNLER
============================================================================= */
/* ========== BANNER + SLIDER ========== */
.inner-banner.urunler {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding-top: 90px;
}

.inner-banner.urunler .row {
    width: 100%;
    align-items: center !important;
}

.inner-banner.urunler .col-lg-6:first-child {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
}

.inner-banner.urunler .col-lg-6:last-child {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    height: 1px;
    position: relative;
}

.inner-banner.urunler .iwcf-desc {
    text-align: left !important;
    max-width: 100% !important;
    margin-left: 0 !important;
}

.inner-banner.urunler .iwcf-images {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    align-items: center;
    width: 100%;
    padding-top: 40px;
}

.inner-banner.urunler .iwcf-img-main {
    max-width: 80%;
    width: 100%;
    height: 700px;
    border-radius: 20px;
    position: relative;
    top: 160px;
    z-index: 5;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    top: 180px;
    position: relative;
    z-index: 10;
    justify-content: center;
}

.dots-container {
    display: flex;
    gap: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--black);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--accent);
    transform: scale(1.3);
}

/* ========== QUALITY HERO SECTION ========== */
.quality-hero.urunler .gen-btn {
    margin-top: 16px;
}

.quality-hero.urunler .title strong {
    display: flex;
    justify-content: flex-start;
}

.grup-desc {
    text-align: start;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
}

.urunler .quality-text {
    line-height: 1.7;
    max-width: 50%;
}
.quality-hero h1{
    text-transform:uppercase;
}

/* ========== PRODUCT LIST SECTION ========== */
.product-list-section .title {
    text-align: start;
    margin-bottom: 16px;
}

.pr-li-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:100%;
}

.product-row {
    background: var(--background-light);
    border: 1px solid #d3cece;
    padding: 20px;
    transition: .3s;
    border-radius: var(--b-radius);
}

.product-row:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-img {
    max-height: 80px;
}

.product-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}
.product-label p{
    margin:0;
}

.product-value {
    font-size: 14px;
    color: var(--text-thr);
}
.product-list-section h1{
    text-transform:uppercase;
}
/* ========== PRODUCT LIST REVEAL ANIMATION ========== */
#product-list {
    opacity: 1;
    display: block;
    transition: all 0.6s ease;
}

#product-list.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 1300px){
    .product-row .gen-btn .rolling-text{
        font-size:14px;
    }
}
@media (max-width: 992px){
    .quality-hero .urnlr-desc {
        margin-top: 270px;
    }
    .urunler .quality-text, .inner-banner.urunler .iwcf-img-main{
        max-width:100%;
    }
}

@media (max-width: 768px){
    .inner-banner.urunler{
        padding-top:0;
    }
}



/* =============================================================================
   ÜRÜN DETAY
============================================================================= */
/* ========== UYUMLU MARKA BÖLÜMÜ ========== */
.quality-hero.uym-marka {
    align-items: flex-start;
    flex-direction: column;
    gap: 45px;
}

.quality-hero.uym-marka .title::after {
    width: 100%;
    height: 8px;
    background-color: var(--accent);
    margin: 10px 0;
}

.uym-marka .grup-desc {
    text-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    top: -75px;
    position: relative;
}

.uym-marka .title {
    color: var(--accent);
}

.marka-slider.swiper {
    width: 100%;
    margin: 0;
}

.marka-slider .swiper-slide {
    width: 180px;
    height: 150px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f7f7f7;
    border-radius: var(--b-radius);
    padding: 10px;
}

.partner-item img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.25s ease;
    position: relative;
    z-index: 2;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.quality-hero.section-padding.section-light {
    padding-top: 0;
}

.quality-hero.section-padding.section-light.uym-marka {
    padding-bottom: 0;
    max-height: 223px;
}

/* ========== AÇIKLAMA / TEKNİK ÖZELLİKLER ========== */
.grup-desc.rgt {
    align-items: center !important;
}

.quality-hero .gen-btn {
    margin-top: 16px;
}

/* Teknik Özellikler tablosu */
.grup-desc.rgt .title {
    background: var(--background-dark);
    color: var(--text-pri) !important;
    width: 80%;
    padding: 14px 20px;
    border-radius: var(--b-radius) var(--b-radius) 0 0;
    margin-bottom: 0 !important;
    text-align: center !important;
}

.grup-desc.rgt .title::after {
    display: none;
}

.tekn-table {
    width: 80%;
}

.urun-detay .product-row {
    background: #f5f5f5;
    border-radius: 0 0 var(--b-radius) var(--b-radius);
    overflow: hidden;
    padding: 0;
}

.urun-detay .product-row .col {
    padding: 20px;
}

.urun-detay .product-row .col-md-3,
.urun-detay .product-row .col-md-2,
.urun-detay .product-row .col-md-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.urun-detay .product-row .col-md-3:last-child,
.urun-detay .product-row .col-md-2:last-child,
.urun-detay .product-row .col-md-1:last-child {
    border-bottom: none;
}

.urun-detay .product-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    position: relative;
}

.urun-detay .product-label::after {
    content: ":";
    margin-left: 8px;
}

.urun-detay .product-value {
    font-size: 16px;
    color: var(--text-thr);
    text-align: right;
}

.uy-mark{
    width:50%;
}

@media (max-width: 992px){
    
    .grup-desc.rgt .title {
        width: 100%;
    }
    
    .tekn-table {
        width: 100%;
    }
    .quality-hero .detay-desc{
        margin-top:400px;
    }
    .uym-marka .grup-desc{
        top:340px;
    }
    .uy-mark{
        width:100%;
    }
    .uym-marka .title{
        color:var(--black);
    }
    .quality-hero.uym-marka .title::after{
        content: "";
        display: block;
        width: 64px;
        height: 2px;
        background-color: var(--accent);
        margin: 10px 0 0;
        border-radius: 2px;
    }
    .marka-slider .swiper-slide{
        width:170px;
    }
    .grup-desc.rgt{
        padding-top:45px;
    }
    .inner-banner.urunler .iwcf-img-main{
        max-width:100%;
    }
    .quality-hero .urnlr-desc{
        margin-top: 270px;
    }
    .urunler .quality-text{
        max-width:100%;
    }
    .roadmap-right{
        padding-left: 0;
        padding-top:16px;
    }
    .pr-li-title{
        flex-direction: column;
        align-items: flex-start;
    }
    .inner-banner.urunler .gen-btn{
        z-index:4;
    }
}



/* =============================================================================
   YK + MESAJ
============================================================================= */
.message-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.message-title .close-wave {
    background: var(--background-dark);
    color: var(--white);
}

.message-title .close-wave:hover {
    background: var(--white);
    color: var(--background-dark);
}

.gizli {
    display: none;
}

.goster,
.gizli {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}




/* =============================================================================
   KARİYER
============================================================================= */
.external-apply {
    padding-top: 20px;
    /* border-top: 1px solid var(--background-light); */
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* border: 1px solid var(--white); */
    padding: 40px;
    padding-left: 0;
    border-radius: var(--b-radius);
}

.external-apply-text {
    font-size: 18px;
    color: var(--black);
    text-align: center;
}

.external-apply-links {
    display: flex;
    gap: 12px;
}

.external-link {
    flex: 1;
    background: var(--background-light);
    border-radius: var(--b-radius);
    /* border: 2px solid var(--white); */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 10%);
}

.external-link img {
    width: 100%;
    height: 22px;
    object-fit: contain;
}

.external-link span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.external-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.external-link:hover span {
    color: var(--black);
}