:root {
    --font-primary: 'Manrope', sans-serif;
    --color-bg: #101010;
    --color-panel: #181818;
    --color-text: #f5f5f5;
    --color-muted: #a3a3a3;
    --color-highlight: #D71920;
    --color-border: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
input,
button,
select,
textarea,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span:not(.material-icons-outlined),
div,
nav,
header,
footer,
section,
article {
    font-family: var(--font-primary) !important;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
}

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

/* ========================================
   TOPBAR - İletişim Bilgileri
   ======================================== */
.topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    padding: 24px 48px;
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.topbar.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.topbar__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    transition: color 0.2s ease, transform 0.2s ease;
}

.topbar__contact-item:hover {
    color: var(--color-text);
    transform: translateY(-1px);
}

.topbar__icon {
    font-family: 'Material Icons Outlined' !important;
    font-size: 22px;
    color: var(--color-highlight);
}

.topbar__contact-item svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.topbar__contact-item:hover svg {
    opacity: 1;
}

.topbar__divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    user-select: none;
}

.topbar__language {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    cursor: pointer;
}

.topbar__language-label {
    color: var(--color-muted);
    font-weight: 400;
}

.topbar__language-current {
    color: var(--color-text);
    font-weight: 600;
}

.topbar__language-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.topbar__language:hover .topbar__language-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .topbar {
        padding: 8px 20px;
    }

    .topbar__inner {
        justify-content: center;
    }

    .topbar__contact {
        gap: 12px;
    }

    .topbar__contact-item {
        font-size: 11px;
        gap: 5px;
    }

    .topbar__contact-item svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .topbar__contact {
        flex-direction: column;
        gap: 6px;
    }

    .topbar__divider {
        display: none;
    }
}



.mast-header {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    padding: 24px 48px;
    /* backdrop-filter: blur(6px); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mast-header.sticky {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    backdrop-filter: blur(12px);
    padding: 26px 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mast-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.mast-header__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex-shrink: 0;
    margin-top: -12px;
}

@media (max-width: 991px) {
    .mast-header__brand {
        margin-top: 0;
    }
}

.mast-header__slogan {
    height: auto;
    width: auto;
    max-width: 180px;
}

.mast-header__brand img {
    width: auto;
    object-fit: contain;
}

.mast-header__tagline {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

.mast-header__tagline-title {
    color: var(--color-muted);
}

.mast-header__tagline-highlight {
    color: var(--color-highlight);
    font-weight: 700;
}

.mast-header__tagline-sub {
    color: var(--color-muted);
}

.mast-header__logo {
    font-size: 28px;
    letter-spacing: 0.3em;
}

.mast-header__nav {
    display: flex;
    justify-content: flex-start;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-muted);
    flex: 1;
}

.mast-header__nav>a {
    transition: color 0.2s ease;
}

.mast-header__nav>a:hover,
.mast-header__nav>a.active {
    color: var(--color-highlight);
}

.mast-header__nav-item>a {
    transition: color 0.2s ease;
}

.mast-header__nav-item>a:hover {
    color: var(--color-text);
}

.mast-header__nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mast-header__caret svg {
    display: block;
}

.mast-header__caret img {
    display: block;
    width: 12px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.mast-header__nav-item:hover .mast-header__caret img {
    opacity: 1;
}

/* Caret hover media query içinde */

/* Dropdown Menu */
.mast-header__dropdown {
    position: relative;
}

.mast-header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    min-width: 240px;
    background: #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(-8px);
    z-index: 1000;
    overflow: hidden;
}

/* Dropdown Hover efekti media query'e taşındı */

.mast-header__dropdown-item {
    display: block;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    border-bottom: 1px solid #d0d0d0;
    transition: font-weight 0.2s ease;
}

.mast-header__dropdown-item:last-child {
    border-bottom: none;
}

.mast-header__dropdown-item:hover {
    font-weight: 600;
}

.mast-header__meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mast-header__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mast-header__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

.mast-header__contact-item:hover {
    color: var(--color-text);
}

.mast-header__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-highlight);
}

.mast-header__language {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    cursor: pointer;
}

.mast-header__language-label {
    color: var(--color-muted);
    font-weight: 400;
}

.mast-header__language-current {
    color: var(--color-text);
    font-weight: 600;
}

.mast-header__language-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.mast-header__language:hover .mast-header__language-icon {
    opacity: 1;
}

/* Language Dropdown */
.mast-header__lang-dropdown {
    position: relative;
}

.mast-header__lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    min-width: 80px;
    background: #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateY(-8px);
    z-index: 1000;
    overflow: hidden;
}

/* Language hover media query içinde */

.mast-header__language-icon {
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.mast-header__lang-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 1px solid #d0d0d0;
    transition: font-weight 0.2s ease;
}

.mast-header__lang-item:last-child {
    border-bottom: none;
}

.mast-header__lang-item:hover {
    font-weight: 700;
}

.mast-header__lang-item.active {
    font-weight: 700;
    color: var(--color-highlight);
}

@media (max-width: 1200px) {
    .mast-header {
        padding: 20px 32px;
    }

    .mast-header__inner {
        gap: 40px;
    }

    .mast-header__nav {
        gap: 20px;
    }
}

/* Hamburger Button */
.mast-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mast-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

.mast-header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mast-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.mast-header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .mast-header {
        padding: 16px 24px;
    }

    .mast-header.sticky {
        padding: 12px 24px;
    }

    .mast-header.sticky .mast-header__hamburger span {
        background-color: #1a1a1a;
    }

    .mast-header.sticky .mast-header__hamburger.active span {
        background-color: var(--color-text);
    }

    .mast-header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .mast-header__hamburger {
        display: flex;
    }

    .mast-header__hamburger.active {
        position: fixed;
        top: 16px;
        right: 24px;
    }

    .mast-header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(16, 16, 16, 0.98);
        backdrop-filter: blur(12px);
        display: flex;
        /* Flex eklendi */
        flex-direction: column;
        justify-content: flex-start;
        /* Ortalamak yerine üstten başlat */
        align-items: flex-end;
        padding: 120px 40px 40px 40px;
        /* Üstten boşluk bırak */
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        /* İçerik taşarsa scroll olabilsin */
        -webkit-overflow-scrolling: touch;
        /* Mobil scroll akıcılığı */
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
        z-index: 1000;
    }

    .mast-header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ana Linkler */
    .mast-header__nav>a,
    .mast-header__nav-item>a {
        font-size: 24px;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: -0.02em;
        text-transform: capitalize;
    }

    .mast-header__nav>a.active,
    .mast-header__nav-item>a:hover {
        color: var(--color-highlight);
    }

    .mast-header__nav-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    /* Mobil Dropdown Tasarımı */
    .mast-header__dropdown-menu {
        position: static;
        transform: none !important;
        width: 100%;
        margin-top: 0;
        /* Kapalıyken boşluk yok */
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        border-right: 2px solid rgba(255, 255, 255, 0.1);
        padding-right: 20px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
    }

    .mast-header__dropdown.open .mast-header__dropdown-menu {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        margin-top: 20px;
        /* Sadece açılınca boşluk ver */
        margin-bottom: 10px;
        border-color: var(--color-highlight);
    }

    .mast-header__dropdown-item {
        color: rgba(255, 255, 255, 0.6);
        background: transparent;
        border-bottom: none;
        padding: 12px 0;
        text-align: right;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.2s ease, transform 0.2s ease;
    }

    .mast-header__dropdown-item:hover {
        color: #ffffff;
        transform: translateX(-5px);
    }

    /* Dropdown Ok İkonu */
    .mast-header__caret img {
        width: 14px;
        opacity: 0.6;
    }

    .mast-header__dropdown.open .mast-header__caret img {
        transform: rotate(180deg);
        opacity: 1;
        filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(6011%) hue-rotate(341deg) brightness(86%) contrast(115%);
        /* Kırmızı renk filtresi */
    }

    .mast-header__language {
        display: none;
    }

    .mobile-only {
        display: flex;
        margin-top: auto;
        /* En alta it */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 24px;
        width: 100%;
        justify-content: flex-end;
        padding-bottom: 40px;
        /* Alttan extra boşluk */
    }

    .mobile-only .mast-header__caret img {
        width: 20px;
        opacity: 0.8;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .topbar {
        display: none;
    }
}

@media (min-width: 993px) {

    /* Masaüstü Hover Efekleri - Sadece büyük ekranlarda çalışır */
    .mast-header__dropdown:hover .mast-header__dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .mast-header__lang-dropdown:hover .mast-header__lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mast-header__dropdown:hover .mast-header__caret img,
    .mast-header__lang-dropdown:hover .mast-header__language-icon {
        transform: rotate(180deg);
    }

    .mobile-only {
        display: none;
    }

    /* Sticky Header Renk Değişiklikleri - Sadece Desktop */
    .mast-header.sticky .mast-header__nav>a,
    .mast-header.sticky .mast-header__nav-item>a {
        color: #1a1a1a;
    }

    .mast-header.sticky .mast-header__nav>a:hover,
    .mast-header.sticky .mast-header__nav>a.active,
    .mast-header.sticky .mast-header__nav-item>a:hover {
        color: var(--color-highlight);
    }

    .mast-header.sticky .mast-header__language-label {
        color: #666666;
    }

    .mast-header.sticky .mast-header__language-current {
        color: #1a1a1a;
    }

    .mast-header.sticky .mast-header__caret img,
    .mast-header.sticky .mast-header__language-icon {
        filter: invert(1);
    }

    .mast-header.sticky .mast-header__hamburger span {
        background-color: #1a1a1a;
    }

    .mast-header.sticky .mast-header__hamburger.active span {
        background-color: var(--color-text);
    }
}

@media (max-width: 768px) {
    .mast-header {
        padding: 16px 20px;
    }

    .mast-header.sticky {
        padding: 12px 20px;
    }

    .topbar {
        padding: 12px 20px;
    }

    .topbar--subpage {
        padding: 0;
    }

    .topbar__contact {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        gap: 0;
    }

    .topbar__contact-item {
        font-size: 11px;
    }

    /* Mobilde topbar sağa/sola yaslama */
    .topbar__contact-item:first-child {
        margin-right: auto;
    }

    .topbar__contact-item:last-child {
        margin-left: auto;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 0;
    background-color: var(--color-bg);
}

.hero__glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
    /* SVG altındaki boşluğu kaldır */
    opacity: 0.9;
    mix-blend-mode: normal;
    /* SVG içindeki blend-modelar çalışsın */
}

.hero__glow svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}

.hero__bg-image {
    position: relative;
    z-index: 2;
    width: 160%;
    height: 140%;
    margin-left: -12%;
    margin-top: -30%;
    object-fit: contain;
}

.hero__particles {
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: -50%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(16, 16, 16, 0.95) 0%,
            rgba(16, 16, 16, 0.6) 40%,
            transparent 70%);
}

.hero__container {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 60px;
}

.hero__container .row {
    width: 100%;
}

.hero__text {
    max-width: 600px;
}

.hero__title {
    margin: 0 0 24px;
    line-height: 1.1;
}

.hero__title-line {
    display: block;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.hero__title-line--highlight {
    color: var(--color-text);
}

.hero__description {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0 0 32px;
    max-width: 480px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-highlight);
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero__cta:hover {
    background: var(--color-highlight);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(215, 25, 32, 0.3);
}

.hero__cta svg {
    transition: transform 0.3s ease;
}

.hero__cta:hover svg {
    transform: translateX(4px);
}

/* Yaklaşan Etkinlikler */
.hero__events {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

.hero__events-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

.hero__events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.hero__event {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.hero__event-day {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.hero__event-month {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__event-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__event-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.hero__event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-muted);
}

.hero__event-location svg {
    color: var(--color-highlight);
}

/* Hero Responsive */
@media (max-width: 1400px) {
    .hero__bg-image {
        width: 140%;
        height: 130%;
        margin-left: -8%;
        margin-top: -25%;

    }

    .hero__particles {
        bottom: 180px;
        width: 65%;
    }
}

@media (max-width: 1200px) {
    .hero__bg-image {
        width: 100%;
        height: 100%;
        margin: 0;
        object-fit: contain;
        object-position: center;
    }

    .hero__particles {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        height: auto;
        padding-top: 100px;
    }

    .hero__background {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 350px;
        order: -1;
    }

    .hero__bg-image {
        width: 100%;
        height: 100%;
        margin: 0;
        object-fit: contain;
        object-position: center bottom;
        transform: scale(1.7);
        transform-origin: 60px;
    }

    .hero__particles {
        display: none;
    }

    .hero__container {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .hero__background {
        height: 60vh;
        min-height: 450px;
        overflow: hidden;
        /* Taşmaları gizle */
    }

    .hero__bg-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        transform: scale(1.7);
        transform-origin: 60px;
    }

    .hero__title-line {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero__description {
        font-size: 14px;
    }

    .hero__cta {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero__events {
        padding: 30px 20px;
    }

    .hero__content {
        padding: 0;
    }
}

/* Hero Large Screens */
@media (min-width: 1600px) {
    .hero__bg-image {
        margin-top: -25%;
        width: 150%;

    }

    .hero__particles {
        bottom: 220px;
        width: 65%;
    }
}

@media (min-width: 1920px) {
    .hero__bg-image {
        margin-top: -20%;
        width: 140%;
        margin-left: -10%;
    }

    .hero__particles {
        bottom: 280px;
        width: 50%;
    }
}

/* Services Section */
.services {
    background-color: #000;
    padding: 120px 0 200px 0;
    /* Alt boşluk artırıldı (görsel için) */
    color: #fff;
    position: relative;
    z-index: 2;
    /* Tekrar düşürüldü, ürünler görseli bunun üstünde olacak */
    overflow: visible;
    /* Görsel taşacak */
}






.services__label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.services__title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -1px;
}

.services__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFF99;
    font-weight: 400;
    margin-bottom: 24px;
}

.services__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services__cta:hover {
    background: var(--color-highlight);
    border-color: var(--color-highlight);
    color: #fff;
}

.services__cta svg {
    transition: transform 0.3s ease;
}

.services__cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .services__title {
        font-size: 56px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .services__container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services__label {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .services__title {
        font-size: 40px;
    }

    .services__desc {
        font-size: 16px;
    }
}


.services__decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

/* Products Section */
.products-section {
    background-color: #FBFBFB;
    padding-top: 350px;
    /* Tank görseli bittikten sonra başlık başlar */
    padding-bottom: 120px;
    position: relative;
    z-index: 20;
}

.products__label {
    display: inline-block;
    background-color: #F3F3F3;
    color: #333;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.products__title {
    font-size: 45px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

/* Floating Tank Image */
.products__floating-image-container {
    position: absolute;
    top: -220px;
    /* Metnin hemen altında başlayacak şekilde yukarı çekildi */
    right: 0;
    width: 65%;
    /* Görsel büyütüldü */
    z-index: 50;
    /* En üstte olması için */
    pointer-events: none;
}

.products__floating-image {
    /* width: 100%; */
    height: auto;
    object-fit: contain;
    z-index: 321321312;
    transform: translateX(10%);
    /* Hafif sağa taşır */
}

@media (max-width: 992px) {
    .services::after {
        display: none;
        /* Mobilde köşe kesimini kaldır */
    }

    .services {
        padding-bottom: 60px;
        /* Mobilde normal boşluk */
    }

    .products-section {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        /* Görsel üstte olacağı için padding'i sıfırla/azalt */
    }

    .products__floating-image-container {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 500px;
        margin: 40px auto;
        /* Üst ve alt boşluk */
        order: -1;
        /* En başa taşı */
        transform: none;
    }

    .products__floating-image {
        width: 100%;
        /* Resize düzgün çalışsın */
        transform: none;
    }
}


/* Products Description */
.products__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Products Grid */
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    padding: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 79.5%;
    height: 31.4%;
    background: #BCBEC0;
    z-index: 0;
    transition: background 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-card:hover::before {
    background: #D71920;
}

.product-card__image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1;
}

.product-card__image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.product-card__link_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* Karttaki diğer elementlerden (metinler vs) üstte olmalı */
}

.product-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    min-height: 50px;
    padding-left: 30px;
    padding-right: 20px;
    margin-top: 240px;
    position: relative;
    z-index: 1;
}

.product-card__specs {
    font-size: 16px;
    color: #BCBEC0;
    padding-left: 30px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

/* Products CTA */
.products__cta-wrapper {
    text-align: left;
    margin-top: 40px;
}

.products__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #D71920;
    color: #fff;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.products__cta:hover {
    background-color: #b01519;
    color: #fff;
}

.products__cta svg {
    transition: transform 0.3s ease;
}

.products__cta:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .products-section {
        display: flex;
        flex-direction: column;
        padding-bottom: 50px;
        /* Görsel üstte olacağı için padding'i sıfırla/azalt */
    }
    .product-card {
        padding: 20px 15px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 16px;
    }

    .products__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}

/* Products Description */
.products__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 50px;
}

/* Products Grid */
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}



/* Products CTA */
.products__cta-wrapper {
    text-align: left;
    margin-top: 40px;
}

.products__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #D71920;
    color: #fff;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.products__cta:hover {
    background-color: #b01519;
    color: #fff;
}

.products__cta svg {
    transition: transform 0.3s ease;
}

.products__cta:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        padding: 20px 15px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 16px;
    }

    .products__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}

/* Experience Section */
.experience-section {
    background-color: #FBFBFB;
    padding-top: 10px;
    padding-bottom: 80px;}

.experience__label {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid #F2F2F2;
    padding: 14px 24px;
    border-radius: 4px;
    background-color: #F2F2F2;
}

.experience__title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0;
}

.experience__description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

.experience__stats {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.experience__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.experience__stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.experience__stat-content {
    flex: 1;
    text-align: left;
}

.experience__stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #D71920;
    margin-bottom: 5px;
    line-height: 1;
}

.experience__stat-label {
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .experience__title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .experience__stats {
        gap: 30px;
    }

    .experience__stat-value {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 0px 0;
    }

    .experience__title {
        font-size: 36px;
    }

    .experience__stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .experience__stat-value {
        font-size: 24px;
    }
}

/* References Section */
.references-section {
    background-color: #FBFBFB;
    /* padding: 100px 0; */
}

.references__title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 60px;
}

.references__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 60px;
}

.references__item {
    background: #FFFFFF;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.references__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.references__item img {
    max-width: 100%;
    object-fit: contain;

    transition: all 0.3s ease;
}

.references__item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .references__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }

    .references__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .references__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        row-gap: 30px;
    }

    .references__item {
        padding: 30px;
        min-height: 120px;
    }

    .references__item img {
        max-height: 60px;
    }
}

/* @media (max-width: 480px) {
    .references__grid {
        grid-template-columns: 1fr;
    }
} */

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section {
    padding: 80px 0 100px;
    background: #FBFBFB;
}

.gallery__title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: left;
}

.gallery__grid {
    display: flex;
    grid-template-columns: auto auto;
    gap: 20px;
    max-width: 1760px;
    margin: 0 auto 60px;
    justify-content: center;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item--large {
    grid-row: span 2;
}

.gallery__small-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.gallery__small-group .gallery__item {
    flex: 1;
}

/* Galeri Sayfası için Özel Stiller */
.gallery__grid--page {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: none;
    margin: 0;
    /* offset-lg-1 */
    align-items: flex-start;
}

.gallery__grid--page .gallery__item--large {
    width: 942.4px;
    height: 434.53px;
    flex-shrink: 0;
    grid-row: initial;
    /* grid özelliğini kaldır */
}

.gallery__grid--page .gallery__small-group {
    flex: 1;
    /* Sağa tamamen uzasın */
}

.gallery__grid--page .gallery__item--small {
    width: 337.54px;
    height: 202.8px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}



.gallery__item:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.gallery__cta-wrapper {
    display: flex;
    justify-content: flex-start;
}

.gallery__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 50px;
    background: var(--color-highlight);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: 200px;
}

.gallery__cta:hover {
    background: #b01419;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-section {
        padding: 60px 20px 80px;
    }

    .gallery__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .gallery__grid {
        max-width: 100%;
        gap: 15px;
        flex-direction: column;
    }

    .gallery__item--large {
        width: 100%;
    }

    .gallery__item--large img {
        height: 400px;
    }

    .gallery__small-group {
        width: 100%;
    }

    .gallery__item--small {
        width: 100%;
    }

    .gallery__item--small img {
        height: 250px;
    }

    /* Galeri Sayfası Responsive */
    .gallery__grid--page {
        flex-direction: column;
        padding-left: 0;
    }

    .gallery__grid--page .gallery__item--large {
        width: 100%;
        height: auto;
    }

    .gallery__grid--page .gallery__item--small {
        width: 100%;
        height: auto;
    }

    .gallery__bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 50px 15px 60px;
    }


    .gallery__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery__item--large {
        grid-row: auto;
        width: 100%;
    }

    .gallery__small-group {
        flex-direction: row;
        gap: 15px;
    }

    .gallery__item--large img {
        height: 400px;
    }

    .gallery__item--small {
        flex: 1;
        width: auto;
    }

    .gallery__item--small img {
        height: 250px;
    }

    .gallery__cta {
        padding: 12px 40px;
        font-size: 15px;
    }

    /* Galeri Sayfası Responsive */
    .gallery__grid--page .gallery__item--large img {
        height: 300px;
    }

    .gallery__grid--page .gallery__item--small img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery__title {
        font-size: 28px;
    }

    .gallery__small-group {
        flex-direction: column;
    }

    .gallery__item--large img {
        height: 300px;
    }

    .gallery__item--small img {
        height: 200px;
    }

    .gallery__cta {
        padding: 12px 35px;
        font-size: 14px;
    }

    /* Galeri Sayfası Responsive */
    .gallery__bottom-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   NEWS SECTION
   =================================== */
.news-section {
    padding: 100px 0 120px;
    padding-top: 120px;
    background: #FFFFFF;
    position: relative;
}

.news__decoration {
    position: absolute;
    top: -5%;
    left: 0;
    width: 335px;
    height: 52px;
    z-index: 1;
}

.news__decoration svg {
    width: 100%;
    height: 100%;
}

.news__title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: left;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* News Card */
.news-card {
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card__image img {
    transform: scale(1.1);
}

.news-card__content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-shrink: 0;
}

.news-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
    flex: 1;
}

.news-card__button {
    display: inline-block;
    padding: 10px 30px;
    background: #E0E0E0;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    flex-shrink: 0;
}

.news-card__button:hover {
    background: var(--color-highlight);
    color: #ffffff;
}

/* Main CTA Button */
.news__cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}

.news__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 50px;
    background: var(--color-highlight);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news__cta:hover {
    background: #b01419;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .news-section {
        padding: 80px 0 100px;
    }

    .news__decoration {
        display: none;
    }

    .news__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .news__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0 80px;
    }

    .news__decoration {
        width: 250px;
        height: 39px;
    }

    .news__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card:last-child {
        max-width: 100%;
    }

    .news-card__image {
        height: 200px;
    }

    .news-card__content {
        padding: 25px 20px;
    }

    .news__cta {
        padding: 12px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news__decoration {
        width: 200px;
        height: 31px;
    }

    .news__title {
        font-size: 28px;
    }

    .news-card__image {
        height: 180px;
    }

    .news-card__title {
        font-size: 16px;
    }

    .news-card__description {
        font-size: 13px;
    }

    .news__cta {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    padding: 100px 0 120px;
    background: #F3F3F3;
    position: relative;
}

.blog__decoration {
    position: absolute;
    top: -3.5%;
    left: 0;
    width: 335px;
    height: 52px;
    z-index: 1;
}

.blog__decoration svg {
    width: 100%;
    height: 100%;
}

.blog__title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: left;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__image {
    width: 280px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__content {
    padding: 25px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__content a {
    text-decoration: none;
}

.blog-card__content a:hover .blog-card__title {
    color: #D71920;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card__button {
    display: inline-block;
    padding: 10px 30px;
    background: #E0E0E0;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card__button:hover {
    background: var(--color-highlight);
    color: #ffffff;
}

.blog-card__date {
    font-size: 13px;
    color: #999999;
}

/* Main CTA Button */
.blog__cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}

.blog__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 50px;
    background: var(--color-highlight);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog__cta:hover {
    background: #b01419;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-section {
        padding: 80px 0 100px;
    }

    .blog__decoration {
        display: none;
    }

    .blog__title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .blog__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .blog-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 80px;
    }

    .blog__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .blog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card:last-child {
        max-width: 100%;
    }

    .blog-card__image {
        height: 200px;
    }

    .blog__cta {
        padding: 12px 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog__title {
        font-size: 28px;
    }

    .blog-card__image {
        height: 180px;
    }

    .blog-card__title {
        font-size: 16px;
    }

    .blog-card__description {
        font-size: 13px;
    }

    .blog__cta {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: #ffffff;
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
}

/* Sol Panel - Kırmızı */
.contact__info {
    background: var(--color-highlight);
    color: #ffffff;
    display: flex;
    align-items: center;
}

.contact__info-inner {
    padding: 60px 40px;
    padding-left: calc((100vw - 1320px) / 2 + 1320px * 0.0833 + 15px);
    max-width: 100%;
}

.contact__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact__description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 400px;
}

.contact__locations {
    margin-bottom: 50px;
}

.contact__subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact__location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact__location-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.contact__location-btn:hover,
.contact__location-btn.active {
    opacity: 1;
}

.contact__details {
    display: flex;
    gap: 40px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact__detail-icon {
    font-size: 18px;
    opacity: 0.8;
}

.contact__detail-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact__detail-value {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

.contact__detail-value:hover {
    text-decoration: underline;
}

/* Sağ Panel - Harita */
.contact__map {
    position: relative;
    background: #f0f0f0;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Custom Info Bubble */
.contact__map-bubble {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.contact__map-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}

.contact__map-bubble-icon {
    width: 32px;
    height: 32px;
    background: var(--color-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.contact__map-bubble-icon svg {
    width: 16px;
    height: 16px;
}

.contact__map-bubble-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-highlight);
    white-space: nowrap;
}

.contact__map-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-highlight);
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact__map-location {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.contact__map-route {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #ffffff;
    color: var(--color-highlight);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact__map-route:hover {
    background: #f0f0f0;
    color: var(--color-highlight);
}

.contact__map-route svg {
    stroke: var(--color-highlight);
}

/* Responsive */
@media (max-width: 992px) {
    .contact__wrapper {
        grid-template-columns: 1fr;
    }

    .contact__info-inner {
        padding: 60px 40px;
    }

    .contact__title {
        font-size: 36px;
    }

    .contact__map iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact__info-inner {
        padding: 50px 30px;
    }

    .contact__title {
        font-size: 32px;
    }

    .contact__description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .contact__location-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .contact__location-btn {
        text-align: left;
        padding: 6px 0;
    }

    .contact__details {
        flex-direction: column;
        gap: 25px;
    }

    .contact__map iframe {
        min-height: 350px;
    }

    .contact__map-footer {
        flex-direction: row;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact__info-inner {
        padding: 40px 20px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__map iframe {
        min-height: 300px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.site-footer {
    background-color: #ffffff;
    padding-top: 80px;
    border-top: 1px solid #e8e8e8;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__brand {
    max-width: 220px;
    flex-shrink: 0;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 28px;
    width: auto;
}

.footer__slogan {
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

.footer__column {
    flex-shrink: 0;
}

.footer__column-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 14px;
}

.footer__links li:last-child {
    margin-bottom: 0;
}

.footer__links a {
    font-size: 13px;
    color: #666666;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--color-highlight);
}

.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    font-size: 13px;
    color: #666666;
    margin-bottom: 14px;
}

.footer__contact li:last-child {
    margin-bottom: 0;
}

.footer__contact a {
    color: #666666;
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: var(--color-highlight);
}

.footer__column--social {
    flex-shrink: 0;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid #D719204A;
    color: var(--color-highlight);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background-color: var(--color-highlight);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer__content {
        gap: 30px;
    }

    .footer__brand {
        max-width: 180px;
    }
}

@media (max-width: 992px) {
    .site-footer {
        padding: 60px 0;
    }

    .footer__content {
        flex-wrap: wrap;
        gap: 40px 30px;
    }

    .footer__brand {
        width: 100%;
        max-width: none;
        margin-bottom: 10px;
    }

    .footer__column {
        width: calc(50% - 15px);
    }

    .footer__column--social {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0;
    }
	
    .footer__content {
        gap: 35px 20px;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__slogan {
        font-size: 12px;
    }

    .footer__column {
        width: calc(50% - 10px);
    }

    .footer__column-title {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .footer__links a,
    .footer__contact li {
        font-size: 12px;
    }

    .footer__column--social {
        text-align: left;
    }

    .footer__social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0 0;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__column {
        width: 100%;
    }

    .footer__links,
    .footer__contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }
}

/* Footer Bottom Bar */
.footer__bottom {
    background-color: var(--color-highlight);
    padding: 20px 0;
    margin-top: 60px;
}

.footer__bottom-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.footer__adshub-logo {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

.footer__adshub-logo:hover {
    opacity: 0.85;
}

.footer__adshub-logo img {
    height: 35px;
    width: auto;
}

.footer__copyright {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .footer__bottom {
        margin-top: 40px;
        padding: 16px 0;
    }

    .footer__adshub-logo img {
        height: 25px;
    }

    .footer__copyright {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer__bottom {
        margin-top: 30px;
        padding: 14px 0;
    }

    .footer__adshub-logo img {
        height: 20px;
    }

    .footer__copyright {
        font-size: 10px;
    }
}

/* ========================================
   ABOUT PAGE - ROOTED EXPERIENCE
   ======================================== */
.about-rooted__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.about-rooted__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    max-width: 90%;
}

.about-rooted__image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.about-rooted__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-rooted__title {
        font-size: 48px;
    }

    .about-rooted__image {
        margin-top: 40px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-rooted__title {
        font-size: 36px;
    }

    .about-rooted__desc {
        max-width: 100%;
    }

    .about-rooted__image {
        height: 300px;
    }
}

/* ========================================
   SUBPAGE HEADER STYLES (Moved to end for priority)
   ======================================== */
.topbar--subpage {
    position: relative;
    background-color: #fff;
    padding: 12px 12px;
    z-index: 1001;
    /* Header'ın üstünde kalsın */
}

.topbar--subpage .topbar__contact-item {
    color: #333333;
    font-weight: 600;
}

.topbar--subpage .topbar__contact-item:hover {
    color: var(--color-highlight);
}

.topbar--subpage .topbar__divider {
    color: #ddd;
}

.mast-header--subpage {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    padding: 26px 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 0px;
    border-bottom: 1px solid #eaeaea;
    border-radius: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    z-index: 1000;
}

.mast-header--subpage .mast-header__nav>a,
.mast-header--subpage .mast-header__nav-item>a,
.mast-header--subpage .mast-header__language-current {
    color: #1a1a1a;
}

.mast-header--subpage .mast-header__language-label {
    color: #666666;
}

.mast-header--subpage .mast-header__nav>a:hover,
.mast-header--subpage .mast-header__nav>a.active,
.mast-header--subpage .mast-header__nav-item>a:hover,
.mast-header--subpage .mast-header__nav-item>a.active {
    color: var(--color-highlight);
}

.mast-header--subpage .mast-header__caret img,
.mast-header--subpage .mast-header__language-icon {
    filter: invert(1);
}

.mast-header--subpage .mast-header__hamburger span {
    background-color: #1a1a1a;
}

@media (max-width: 992px) {
    .mast-header--subpage {
        padding: 12px 24px;
        width: 100%;
        top: 0;
        margin-bottom: 0;
        border-radius: 0;
    }

    /* Mobilde menu açıldığında linkleri beyaz yap */
    .mast-header--subpage .mast-header__nav {
        background-color: #101010;
        /* Mobil menü arkaplanı */
    }

    .mast-header--subpage .mast-header__nav>a,
    .mast-header--subpage .mast-header__nav-item>a,
    .mast-header--subpage .mast-header__dropdown-item {
        color: #ffffff !important;
        /* Mobilde beyaz olsun */
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .mast-header--subpage .mast-header__nav>a:hover,
    .mast-header--subpage .mast-header__nav-item>a:hover {
        color: var(--color-highlight) !important;
    }

    .mast-header--subpage .mast-header__caret img {
        filter: none;
        /* İkonu tekrar beyaz yap */
    }

    /* Menü açıldığında (active) hamburger butonu beyaz olsun */
    .mast-header--subpage .mast-header__hamburger.active span {
        background-color: #ffffff !important;
    }
}

@media (max-width: 768px) {
    .mast-header--subpage {
        padding: 12px 20px;
    }
}

/* -------------------------------------------------------------------------- */
/*                                Breadcrumb                                  */
/* -------------------------------------------------------------------------- */
.breadcumb {
    padding: 60px 0;
    /* Soldan %70 kırmızı, sağdan %30 gri - Görsele uygun split background */
    background: linear-gradient(90deg, #cf202f 0%, #cf202f 70%, #ebebeb 70%, #ebebeb 100%);
    display: flex;
    align-items: center;
}

.breadcumb__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.breadcumb__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    /* Kırmızı zemin üzerinde beyaz yazı */
    margin: 0;
    line-height: 1.2;
}

.breadcumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    /* Gri zemin üzerinde koyu yazı */
}

.breadcumb__item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcumb__item a:hover {
    color: #cf202f;
    /* Hover rengi kırmızı */
}

.breadcumb__separator {
    color: #999;
    font-size: 14px;
}

.breadcumb__item.active {
    color: #cf202f;
    /* Aktif sayfa kırmızı */
}

@media (max-width: 992px) {
    .breadcumb {
        /* Mobilde tamamen kırmızı olsun */
        background: #cf202f;
        padding: 40px 0;
    }

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

    .breadcumb__list {
        /* Mobilde linkler de beyaz olsun çünkü zemin kırmızı */
        color: #ffffff;
    }

    .breadcumb__item a {
        color: #e0e0e0;
    }

    .breadcumb__item.active {
        color: #ffffff;
        font-weight: 700;
        text-decoration: underline;
    }

    .breadcumb__separator {
        color: rgba(255, 255, 255, 0.5);
    }
}

.gallery__bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: none;
    /* Sınır kaldırıldı */
    width: 100%;
    /* Tam genişlik */
    margin: 30px 0 0;
    justify-content: center;
}

.gallery__bottom-grid .gallery__item {
    width: 100%;
    height: 250px;
}

.gallery__bottom-grid .gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 1400px) {

    /* gallery__grid için marginler var mıydı bilmiyorum ama responsive olması iyi */
    .gallery__bottom-grid {
        max-width: 95%;
    }
}

@media (max-width: 1200px) {
    .gallery__bottom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery__bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */

.blog-page-section {
    background: #F3F3F3;
}

.blog-page__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Pagination */
.blog-page__pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-page__pagination-prev,
.blog-page__pagination-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: 'TT Commons', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page__pagination-prev:hover:not(:disabled),
.blog-page__pagination-next:hover:not(:disabled) {
    background: #D71920;
    color: #fff;
    border-color: #D71920;
}

.blog-page__pagination-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-page__pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-page__pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-family: 'TT Commons', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-page__pagination-number:hover {
    background: #D71920;
    color: #fff;
    border-color: #D71920;
}

.blog-page__pagination-number.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.blog-page__pagination-dots {
    font-family: 'TT Commons', sans-serif;
    font-size: 14px;
    color: #999;
    padding: 0 5px;
}

/* Results Info */
.blog-page__results-info {
    text-align: left;
    font-family: 'TT Commons', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-page__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-page-section {
        padding: 60px 0 80px !important;
    }

    .blog-page__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-page__pagination {
        flex-wrap: wrap;
    }

    .blog-page__pagination-prev,
    .blog-page__pagination-next {
        padding: 8px 16px;
        font-size: 13px;
    }

    .blog-page__pagination-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-page__pagination-numbers {
        gap: 3px;
    }

    .blog-page__pagination-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* ===================================
   BLOG DETAIL PAGE STYLES
   =================================== */

.blog-detail-section {
    background: #fff;
}

.blog-detail__image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 0;
}

.blog-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail__content {
    max-width: 100%;
}

.blog-detail__title {
    font-family: 'TT Commons', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.blog-detail__description {
    font-family: 'TT Commons', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.blog-detail__main-content {
    font-family: 'TT Commons', sans-serif;
}

.blog-detail__section-title {
    font-family: 'TT Commons', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px 0;
    line-height: 1.4;
}

.blog-detail__text {
    font-family: 'TT Commons', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.blog-detail__list,
.blog-detail__numbered-list {
    font-family: 'TT Commons', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    margin: 0 0 20px 0;
    padding-left: 25px;
}

.blog-detail__list li,
.blog-detail__numbered-list li {
    margin-bottom: 10px;
}

/* Related Blogs Section */
.blog-related-section {
    background: #F3F3F3;
}

.blog-related__title {
    font-family: 'TT Commons', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px 0;
    line-height: 1.3;
}

.blog-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-detail__image {
        height: 400px;
    }

    .blog-detail__title {
        font-size: 28px;
    }

    .blog-detail__description {
        font-size: 16px;
    }

    .blog-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 60px 0 80px !important;
    }

    .blog-related-section {
        padding: 60px 0 80px !important;
    }

    .blog-detail__image {
        height: 300px;
        margin-bottom: 30px;
    }

    .blog-detail__title {
        font-size: 24px;
    }

    .blog-detail__description {
        font-size: 15px;
    }

    .blog-detail__section-title {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }

    .blog-detail__text {
        font-size: 14px;
    }

    .blog-detail__list,
    .blog-detail__numbered-list {
        font-size: 14px;
    }

    .blog-related__title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .blog-related__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .blog-detail__image {
        height: 250px;
    }

    .blog-detail__title {
        font-size: 20px;
    }

    .blog-detail__description {
        font-size: 14px;
    }

    .blog-detail__section-title {
        font-size: 18px;
    }

    .blog-detail__text,
    .blog-detail__list,
    .blog-detail__numbered-list {
        font-size: 13px;
    }

    .blog-related__title {
        font-size: 22px;
    }
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-form__wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form__info {
    flex: 0 0 40%;
}

.contact-form__form {
    flex: 1;
}

.contact-form__block {
    margin-bottom: 40px;
}

.contact-form__block:last-child {
    margin-bottom: 0;
}

.contact-form__block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-form__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.contact-form__icon svg {
    width: 24px;
    height: 24px;
}

.contact-form__block-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.contact-form__locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-form__locations-list li {
    font-size: 16px;
    color: #666666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-form__locations-list li:last-child {
    margin-bottom: 0;
}

.contact-form__link {
    font-size: 16px;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-form__link:hover {
    color: #C8102E;
}

/* Form Stilleri */
.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-primary);
    color: #1a1a1a;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: #999999;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-bottom-color: #C8102E;
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    display: inline-block;
    padding: 14px 40px;
    background-color: #C8102E;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover {
    background-color: #a30d24;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-form__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form__info {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form__block-title {
        font-size: 18px;
    }

    .contact-form__locations-list li,
    .contact-form__link {
        font-size: 15px;
    }

    .contact-form__field input,
    .contact-form__field textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ========================================
   WHY MACSTOFF SECTION
   ======================================== */
.why-macstoff {
    padding: 0;
    background: #ffffff;
}

.why-macstoff__image {
    width: 100%;
}

.why-macstoff__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   WHY FEATURES SECTION
   ======================================== */
.why-features {
    position: relative;
    padding: 80px 0;
    background: #ffffff;
}

.why-features__line {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 1px;
    background-color: #e5e5e5;
}

.why-features__line--top {
    top: 0;
}

.why-features__line--bottom {
    bottom: 0;
}

.why-features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.why-features__item {
    position: relative;
    padding-bottom: 60px;
    border-bottom: 1px solid #e5e5e5;
}

.why-features__item:nth-last-child(-n+2) {
    border-bottom: none;
    padding-bottom: 0;
}

.why-features__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.why-features__desc {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.why-features__desc:last-child {
    margin-bottom: 0;
}

.why-features__desc strong {
    color: #1a1a1a;
    font-weight: 600;
}

.why-features__highlight {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 16px 0 0 0;
}

.why-features__desc a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.why-features__desc a:hover {
    color: #C8102E;
}

/* Responsive */
@media (max-width: 992px) {
    .why-features {
        padding: 60px 0;
    }

    .why-features__grid {
        gap: 40px 50px;
    }

    .why-features__title {
        font-size: 24px;
    }

    .why-features__item {
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .why-features {
        padding: 50px 0;
    }

    .why-features__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-features__item {
        padding-bottom: 40px;
        border-bottom: 1px solid #e5e5e5;
    }

    .why-features__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .why-features__item:nth-last-child(2) {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 40px;
    }

    .why-features__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .why-features__desc,
    .why-features__highlight {
        font-size: 14px;
    }
}

/* ========================================
   WHAT WE DO / NELER YAPIYORUZ
   ======================================== */
.what-we-do {
    padding: 60px 0 100px;
    background: #fff;
}

.what-we-do__list {
    display: flex;
    flex-direction: column;
}

.what-we-do__item {
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    gap: 20px;
}

.what-we-do__item:first-child {
    border-top: 1px solid #e5e5e5;
}

.what-we-do__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
    width: 220px;
}

.what-we-do__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #bbb;
    transition: color 0.3s ease;
}

.what-we-do__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

.what-we-do__item.active .what-we-do__icon img,
.what-we-do__item:hover .what-we-do__icon img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(95%) saturate(2000%) hue-rotate(345deg) brightness(90%) contrast(95%);
}

.what-we-do__item.active .what-we-do__icon,
.what-we-do__item:hover .what-we-do__icon {
    color: #D32F2F;
}

.what-we-do__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #333;
    transition: color 0.3s ease;
}

.what-we-do__item.active .what-we-do__title,
.what-we-do__item:hover .what-we-do__title {
    color: #D32F2F;
}

.what-we-do__content {
    flex: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.what-we-do__item.active .what-we-do__content {
    max-height: 300px;
    opacity: 1;
}

.what-we-do__content p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Mobile - What We Do */
@media (max-width: 992px) {
    .what-we-do__item {
        flex-direction: column;
        gap: 15px;
    }

    .what-we-do__header {
        width: 100%;
    }

    .what-we-do__icon {
        width: 40px;
        height: 40px;
    }

    .what-we-do__icon svg,
    .what-we-do__icon img {
        width: 32px;
        height: 32px;
    }

    .what-we-do__title {
        font-size: 15px;
    }

    .what-we-do__content p {
        font-size: 14px;
        padding-left: 60px;
    }
}

/* ========================================
   PRODUCT GROUPS / ÜRÜN GRUPLARI PAGE
   ======================================== */

/* Ürün Grupları Hero */
.product-hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.product-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.product-hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 600px;
    padding-top: 50px;
}

.product-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 700px;
}

.product-hero__description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 32px;
}

.product-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C8102E;
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: none;
}

.product-hero__btn:hover {
    background: #a50d25;
    color: #fff;
    box-shadow: none;
}

.product-hero__btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .product-hero {
        min-height: 400px;
    }

    .product-hero__content {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }

    .product-hero__title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .product-hero__description {
        font-size: 13px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .product-hero__btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Product Categories Section */
.product-categories {
    background: #FFFFFF;
}

.product-categories__header {
    margin-bottom: 48px;
}

.product-categories__badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.product-categories__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.product-categories__subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.product-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 24px;
    justify-content: left;
}

/* Product Category Card */
.product-category-card {
    background: #fff;
    width: 260px;
    height: 420px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-category-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}

.product-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-category-card:hover .product-category-card__image img {
    transform: scale(1.05);
}

.product-category-card__title-link {
    text-decoration: none;
}

.product-category-card__title-link:hover .product-category-card__title {
    color: #C8102E;
}

.product-category-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category-card__description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

.product-category-card__btn {
    display: inline-block;
    background: #CDCDCD;
    color: #fff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-category-card__btn:hover {
    background: #C8102E;
    color: #fff;
}

/* Product Categories Responsive */
@media (max-width: 1200px) {
    .product-categories__grid {
        grid-template-columns: repeat(3, 260px);
    }
}

@media (max-width: 992px) {
    .product-categories__grid {
        grid-template-columns: repeat(2, 260px);
    }

    .product-categories__title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .product-categories__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-category-card {
        width: 100%;
        height: auto;
        padding: 16px;
    }

    .product-category-card__image {
        height: 160px;
    }

    .product-category-card__description {
        min-height: auto;
        -webkit-line-clamp: 2;
    }

    .product-categories__title {
        font-size: 28px;
    }
}

/* ========================================
   PRODUCT LIST PAGE - MACSTOFF URUNLER SAYFASI
   ======================================== */

.product-list_macstoff_urunler_sayfasi {
    background: #FBFBFB;
    padding: 120px 0 80px;
}

/* Breadcrumb */
.product-list__breadcrumb_macstoff_urunler_sayfasi {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.product-list__breadcrumb_macstoff_urunler_sayfasi a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-list__breadcrumb_macstoff_urunler_sayfasi a:hover {
    color: #1a1a1a;
}

.product-list__breadcrumb-separator_macstoff_urunler_sayfasi {
    color: #999;
}

.product-list__breadcrumb-current_macstoff_urunler_sayfasi {
    color: #C8102E;
    font-weight: 500;
}

/* Header */
.product-list__header_macstoff_urunler_sayfasi {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.product-list__header-left_macstoff_urunler_sayfasi {
    flex: 1;
}

.product-list__title_macstoff_urunler_sayfasi {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.product-list__count_macstoff_urunler_sayfasi {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.product-list__header-right_macstoff_urunler_sayfasi {
    display: flex;
    align-items: center;
}

.product-list__sort_macstoff_urunler_sayfasi {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    background-color: white;
    padding: 10px 16px;
    transition: all 0.3s ease;
}

.product-list__sort_macstoff_urunler_sayfasi:hover {
    border-color: #1a1a1a;
}

.product-list__sort_macstoff_urunler_sayfasi svg {
    width: 16px;
    height: 16px;
}

.product-list__divider_macstoff_urunler_sayfasi {
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 48px;
}

/* Content Layout */
.product-list__content_macstoff_urunler_sayfasi {
    display: flex;
    gap: 48px;
}

/* Sidebar */
.product-list__sidebar_macstoff_urunler_sayfasi {
    width: 240px;
    flex-shrink: 0;
}

.product-list__sidebar-title_macstoff_urunler_sayfasi {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.product-list__categories_macstoff_urunler_sayfasi {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.product-list__category_macstoff_urunler_sayfasi {
    margin-bottom: 1px;
}

.product-list__category_macstoff_urunler_sayfasi a {
    display: block;
    padding: 14px 16px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    background: #F7F7F7;
}

.product-list__category_macstoff_urunler_sayfasi a:hover {
    color: #C8102E;
}

.product-list__category_macstoff_urunler_sayfasi.active a {
    color: #C8102E;
}

/* Products Grid */
.product-list__grid_macstoff_urunler_sayfasi {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product Card */
.product-card_macstoff_urunler_sayfasi {
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Product Card - Anasayfa stili */
.product-card_macstoff_urunler_sayfasi {
    background: #FFFFFF;
    padding: 0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.product-card_macstoff_urunler_sayfasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 79.5%;
    height: 31.4%;
    background: #BCBEC0;
    z-index: 0;
    transition: background 0.3s ease;
}

.product-card_macstoff_urunler_sayfasi:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-card_macstoff_urunler_sayfasi:hover::before {
    background: #D71920;
}

.product-card__image_macstoff_urunler_sayfasi {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1;
}

.product-card__image_macstoff_urunler_sayfasi img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
}

.product-card__title_macstoff_urunler_sayfasi {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    min-height: 50px;
    padding-left: 30px;
    padding-right: 20px;
    margin-top: 240px;
    position: relative;
    z-index: 1;
}

.product-card__description_macstoff_urunler_sayfasi {
    font-size: 14px;
    color: #BCBEC0;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding-left: 30px;
    padding-right: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-card__btn_macstoff_urunler_sayfasi {
    display: inline-block;
    background: #C8102E;
    color: #fff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 30px 30px 30px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.product-card__btn_macstoff_urunler_sayfasi:hover {
    background: #a50d25;
    color: #fff;
}

/* Pagination */
.product-list__pagination_macstoff_urunler_sayfasi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 60px;
    padding-top: 40px;
}

.product-list__pagination-prev_macstoff_urunler_sayfasi,
.product-list__pagination-next_macstoff_urunler_sayfasi {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-list__pagination-prev_macstoff_urunler_sayfasi:hover,
.product-list__pagination-next_macstoff_urunler_sayfasi:hover {
    color: #1a1a1a;
}

.product-list__pagination-numbers_macstoff_urunler_sayfasi {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-list__pagination-numbers_macstoff_urunler_sayfasi a,
.product-list__pagination-numbers_macstoff_urunler_sayfasi span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-list__pagination-numbers_macstoff_urunler_sayfasi a:hover {
    color: #C8102E;
}

.product-list__pagination-numbers_macstoff_urunler_sayfasi span.active {
    background: #1a1a1a;
    color: #fff;
    border-radius: 4px;
}

.product-list__pagination-numbers_macstoff_urunler_sayfasi span.dots {
    background: transparent;
    color: #666;
}

.product-list__info_macstoff_urunler_sayfasi {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}

/* Sort Dropdown */
.product-list__sort-dropdown_macstoff_urunler_sayfasi {
    position: relative;
}

.product-list__sort-icon_macstoff_urunler_sayfasi {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.8;
    filter: invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-list__sort-dropdown_macstoff_urunler_sayfasi:hover .product-list__sort-icon_macstoff_urunler_sayfasi {
    transform: rotate(180deg);
}

.product-list__sort-menu_macstoff_urunler_sayfasi {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 100;
    overflow: hidden;
}

.product-list__sort-dropdown_macstoff_urunler_sayfasi:hover .product-list__sort-menu_macstoff_urunler_sayfasi {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-list__sort-item_macstoff_urunler_sayfasi {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.product-list__sort-item_macstoff_urunler_sayfasi:last-child {
    border-bottom: none;
}

.product-list__sort-item_macstoff_urunler_sayfasi:hover {
    background: #f9f9f9;
    color: #1a1a1a;
}

.product-list__sort-item_macstoff_urunler_sayfasi.active {
    color: #C8102E;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-list__grid_macstoff_urunler_sayfasi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .product-list__content_macstoff_urunler_sayfasi {
        flex-direction: column;
    }

    .product-list__sidebar_macstoff_urunler_sayfasi {
        width: 100%;
        margin-bottom: 32px;
    }

    .product-list__categories_macstoff_urunler_sayfasi {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-list__category_macstoff_urunler_sayfasi {
        border-bottom: none;
    }

    .product-list__category_macstoff_urunler_sayfasi a {
        padding: 8px 16px;
        background: #f5f5f5;
        border-radius: 20px;
        font-size: 13px;
    }

    .product-list__category_macstoff_urunler_sayfasi.active a {
        background: #C8102E;
        color: #fff;
    }

    .product-list__title_macstoff_urunler_sayfasi {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .product-list_macstoff_urunler_sayfasi {
        padding: 100px 0 60px;
    }

    .product-list__header_macstoff_urunler_sayfasi {
        flex-direction: column;
        gap: 16px;
    }

    .product-list__grid_macstoff_urunler_sayfasi {
        grid-template-columns: 1fr;
    }

    .product-list__title_macstoff_urunler_sayfasi {
        font-size: 28px;
    }

    .product-list__pagination_macstoff_urunler_sayfasi {
        flex-wrap: wrap;
    }
}

/* ========================================
   ÜRÜN DETAY SAYFASI
======================================== */
.product-detail_urundetay {
    padding: 40px 0 80px;
    background: #fff;
}

/* Breadcrumb */
.product-detail__breadcrumb_urundetay {
    font-size: 13px;
    color: #666;
    margin-bottom: 40px;
}

.product-detail__breadcrumb_urundetay a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-detail__breadcrumb_urundetay a:hover {
    color: #C8102E;
}

.product-detail__breadcrumb_urundetay .separator {
    margin: 0 8px;
    color: #999;
}

.product-detail__breadcrumb_urundetay .current {
    color: #C8102E;
}

/* Hero Section */
.product-detail__hero_urundetay {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail__content_urundetay {
    flex: 1;
    max-width: 500px;
}

.product-detail__title_urundetay {
    font-size: 42px;
    font-weight: 700;
    color: #C8102E;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.product-detail__short-desc_urundetay {
    font-size: 14px;
    color: #BCBDBF;
    line-height: 1.8;
    margin: 0;
}

.product-detail__image_urundetay {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.product-detail__image_urundetay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: #C8102E;
    z-index: 0;
}

.product-detail__image_urundetay img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 40px auto 0;
    display: block;
}

/* Teknik Özellikler */
.product-detail__specs_urundetay {
    margin-bottom: 60px;
}

.product-detail__specs-title_urundetay {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.product-detail__table_urundetay {
    width: 100%;
}

.product-detail__table-header_urundetay {
    display: grid;
    grid-template-columns: 100px 1fr 120px 150px 100px;
    padding: 16px 0;
    border-bottom: none;
}

.product-detail__table-header_urundetay .product-detail__table-cell_urundetay {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.product-detail__table-row_urundetay {
    display: grid;
    grid-template-columns: 100px 1fr 120px 150px 100px;
    padding: 24px 20px;
    border-top: 1px solid #e8e8e8;
}

.product-detail__table-row_urundetay:nth-child(even) {
    background: #F7F7F7;
}

.product-detail__table-cell_urundetay {
    font-size: 14px;
    color: #666;
}

/* Detaylı Açıklama */
.product-detail__description_urundetay {
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.product-detail__description_urundetay p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail__hero_urundetay {
        flex-direction: column;
        gap: 40px;
    }

    .product-detail__content_urundetay {
        max-width: 100%;
    }

    .product-detail__title_urundetay {
        font-size: 32px;
    }

    .product-detail__table-header_urundetay,
    .product-detail__table-row_urundetay {
        grid-template-columns: repeat(5, 1fr);
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .product-detail_urundetay {
        padding: 30px 0 60px;
    }

    .product-detail__title_urundetay {
        font-size: 28px;
    }

    .product-detail__table-header_urundetay,
    .product-detail__table-row_urundetay {
        grid-template-columns: 1fr 1.5fr 0.8fr 1fr 0.8fr;
    }

    .product-detail__table-cell_urundetay {
        font-size: 12px;
        padding: 0 5px;
    }
}