@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
    --brand-navy: #123C91;
    --brand-orange: #F5831F;
    --border-light: #DDEAF5;
    --white: #FFFFFF;
    --bg-light: rgba(247, 248, 250, 0.60);
    --brand-cyan: #17AEEA;
    --text-secondary: #5D6F8C;
    --text-main: #0B234A;
    --text-muted: #8A9AB3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: #FFFFFF;
    color: var(--brand-navy);
    min-height: 100vh;
}

/* ========== HEADER ========== */
.site-header {
    width: 100%;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 200px;
}

.header-inner {
    display: flex;
    width: 1520px;
    max-width: 100%;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    gap: 24px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    width: 150px;
    height: 69px;
    object-fit: contain;
    aspect-ratio: 50 / 23;
    display: block;
}

/* Nav Menu */
.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: var(--brand-navy);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 20px;
    transition: background 0.2s ease;
    font-feature-settings: 'liga' off;
}

.nav-link:hover {
    background: rgba(18, 60, 145, 0.06);
}

.nav-link svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(18, 60, 145, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--brand-navy);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
    background: rgba(18, 60, 145, 0.05);
    color: var(--brand-orange);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Search Button */
.btn-search {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid var(--brand-navy);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.btn-search:hover {
    background: rgba(18, 60, 145, 0.06);
}

.btn-search svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-navy);
}

/* Language Selector */
.btn-lang {
    display: flex;
    height: 44px;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 30px;
    border: 1px solid var(--brand-navy);
    background: transparent;
    cursor: pointer;
    color: var(--brand-navy);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.btn-lang:hover {
    background: rgba(18, 60, 145, 0.06);
}

.btn-lang svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 8px 24px rgba(18, 60, 145, 0.10);
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.btn-lang-wrap:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-lang-wrap:hover .btn-lang svg {
    transform: rotate(180deg);
}

.btn-lang-wrap {
    position: relative;
}

.lang-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--brand-navy);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
}

.lang-dropdown a:hover {
    background: rgba(18, 60, 145, 0.05);
}

/* Contact Button */
.btn-contact {
    display: flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--brand-orange);
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-contact:hover {
    background: #d9701a;
    transform: translateY(-1px);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 30px;
    border: 1px solid var(--brand-navy);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-nav-header img {
    width: 120px;
    height: auto;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--brand-navy);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    color: var(--brand-navy);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-item a svg {
    width: 24px;
    height: 24px;
    aspect-ratio: 1 / 1;
    stroke: var(--brand-navy);
    transition: transform 0.25s ease;
}

.mobile-nav-item.open>a svg {
    transform: rotate(180deg);
}

.mobile-sub-links {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-item.open .mobile-sub-links {
    display: flex;
}

.mobile-sub-links a {
    border-bottom: none;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    color: var(--brand-navy);
    opacity: 0.8;
}

.mobile-nav-footer {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.mobile-nav-footer .btn-contact {
    flex: 1;
    min-width: 120px;
}

.mobile-nav-footer .btn-lang {
    flex-shrink: 0;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}

.search-overlay.open {
    display: flex;
}

.search-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 600px;
    max-width: 90vw;
    box-shadow: 0 16px 48px rgba(18, 60, 145, 0.15);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: var(--brand-navy);
    background: transparent;
}

.search-box input::placeholder {
    color: rgba(18, 60, 145, 0.4);
}

.search-box button {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: var(--brand-orange);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.search-box button svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

/* ========== HERO SLIDER ========== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 127px);
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Arka plan görselleri --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-bg-slide.active {
    opacity: 1;
}

/* Tam görüntü — kesmeden, yakınlaştırmadan, alta yapışık */
.slide-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 80%;
    display: block;
}

/* Sol taraf beyaz geçiş */
.slide-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #fff 18%,
            rgba(255, 255, 255, 0.85) 32%,
            rgba(255, 255, 255, 0.30) 52%,
            rgba(255, 255, 255, 0.00) 68%);
    z-index: 1;
}

/* --- Slayt göstergeleri (sol 48px) --- */
.hero-indicators {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ind-num {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    font-feature-settings: 'liga' off;
    user-select: none;
    display: block;
    transition: color 0.4s ease, font-size 0.4s ease, letter-spacing 0.4s ease;
}

.hero-ind.active .ind-num {
    color: var(--brand-navy, #123C91);
    font-size: 35px;
    letter-spacing: 0.25px;
    animation: numSlideUp 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes numSlideUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

/* Progress bar */
.ind-track {
    display: none;
    width: 2px;
    height: 75px;
    background: var(--border-light, #DDEAF5);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.hero-ind.active .ind-track {
    display: block;
}

.ind-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--brand-navy, #123C91);
    border-radius: 1px;
}

.hero-ind.active .ind-fill {
    animation: indFill 5s linear forwards;
}

@keyframes indFill {
    from {
        height: 0%;
    }

    to {
        height: 100%;
    }
}

/* --- İçerik alanı --- */
.hero-content-wrap {
    position: relative;
    z-index: 10;
    padding-left: 200px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-bottom: 24px;
}

/* Metin slaytları */
.hero-text-slides {
    position: relative;
}

.hero-text-slide {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.hero-text-slide.active {
    display: flex;
    animation: slideIn 0.7s ease forwards;
}

.hero-text-slide.exit {
    animation: slideOut 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-16px);
    }
}

/* Üst küçük başlık */
.slide-sub {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
    text-transform: uppercase;
}

/* Ana büyük başlık */
.slide-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 98px;
    font-weight: 700;
    line-height: 98px;
    letter-spacing: -1.5px;
    max-width: 720px;
}

/* Açıklama */
.slide-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
    max-width: 520px;
}

/* --- Butonlar --- */
.hero-action-btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-hero-primary {
    display: flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--brand-orange, #F5831F);
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: #d9701a;
    transform: translateY(-1px);
}

.btn-hero-primary svg {
    stroke: #fff;
    flex-shrink: 0;
}

.btn-hero-outline {
    display: flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--border-light, #DDEAF5);
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-hero-outline:hover {
    border-color: var(--brand-navy);
    background: rgba(18, 60, 145, 0.04);
}

/* Mobil kontroller — desktop'ta gizli */
.hero-mobile-controls {
    display: none;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

/* --- Gezinme butonları --- */
.hero-nav-btns {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-prev,
.hero-next {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: transparent;
    cursor: pointer;
    color: var(--brand-navy);
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.hero-prev:hover,
.hero-next:hover {
    border-color: var(--brand-navy);
    background: rgba(18, 60, 145, 0.04);
}

/* --- Alt bilgi çubuğu --- */
.hero-info-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 200px;
    background: linear-gradient(180deg, rgba(221, 234, 245, 0.00) 0%, rgba(221, 234, 245, 0.30) 100%);
    flex-shrink: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.info-item svg {
    width: 46px;
    height: 50px;
    aspect-ratio: 23 / 25;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-line1 {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.info-line2 {
    color: var(--text-main, #0B234A);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.info-divider {
    width: 1px;
    height: 50px;
    background: var(--brand-navy, #123C91);
    flex-shrink: 0;
    opacity: 0.2;
}

/* ========== KURUMSAL BÖLÜMÜ ========== */

.about-section {
    width: 100%;
    display: flex;
    justify-content: center;
    /* 90px slider boşluğu + 42px görsel taşması */
    padding: 90px 200px 80px;
}

.about-card {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 1520px;
    max-width: 100%;
    height: 400px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #fff;
    overflow: visible;
}

/* Sol metin alanı */
.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 48px 48px 48px 60px;
    min-width: 0;
    z-index: 2;
}

.about-subtitle {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    font-feature-settings: 'liga' off;
}

.about-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.about-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    max-width: 420px;
}

.btn-about {
    display: inline-flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    border: 2px solid var(--border-light, #DDEAF5);
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.btn-about:hover {
    border-color: var(--brand-navy);
    background: rgba(18, 60, 145, 0.04);
}

.btn-about svg {
    stroke: var(--brand-navy);
    flex-shrink: 0;
}

/* Orta: İnsan fotosu — kutunun üstüne taşıyor, sol/sağ sınırda ortalı */
.about-person-wrap {
    position: absolute;
    /* Sağ alandan (772px) yarı kişi genişliği (221px) çıkarılınca merkez */
    right: calc(772px - 221px);
    bottom: 0;
    width: 442px;
    height: 442px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.about-person-img {
    width: 442px;
    height: 442px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

/* Sağ: Arka plan görseli */
.about-right {
    width: 772px;
    flex-shrink: 0;
    height: 400px;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
    /* background inline style'dan geliyor */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1600px) {
    .site-header {
        padding: 16px 100px;
    }

    .hero-content-wrap {
        padding-left: 120px;
    }

    .hero-info-bar {
        padding: 20px 120px;
    }

    .slide-title {
        font-size: 80px;
        line-height: 82px;
    }
}

@media (max-width: 1280px) {
    .site-header {
        padding: 16px 40px;
    }

    .header-inner {
        width: 100%;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 10px;
    }

    .hero-content-wrap {
        padding-left: 80px;
    }

    .hero-info-bar {
        padding: 20px 80px;
    }

    .slide-title {
        font-size: 64px;
        line-height: 68px;
    }

    .slide-sub,
    .slide-desc {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .site-header {
        padding: 12px 20px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-actions .btn-search,
    .header-actions .btn-lang-wrap,
    .header-actions .btn-contact {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    /* Hero mobil — tamamen yeniden yapılandırılıyor */
    .hero {
        height: auto;
        min-height: unset;
        display: flex;
        flex-direction: column;
    }

    /* Sıralama: metin üstte, görsel altta, bilgi çubuğu en altta */
    .hero-content-wrap { order: 1; }
    .hero-bg           { order: 2; }
    .hero-info-bar     { order: 3; }

    /* Görsel: metnin hemen altında, yukarı çekili */
    .hero-bg {
        position: relative;
        height: 40vh;
        min-height: 240px;
        flex-shrink: 0;
        margin-top: -12px;
    }

    .hero-bg-slide {
        position: absolute;
        inset: 0;
    }

    .slide-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center top;
    }

    /* Gradient: çok ince beyaz geçiş, görsel hemen netleşir */
    .slide-gradient {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.85) 0%,
                rgba(255, 255, 255, 0.3) 6%,
                rgba(255, 255, 255, 0) 16%);
    }

    /* Desktop indicators gizle */
    .hero-indicators {
        display: none;
    }

    /* İçerik: görselin üstünde, beyaz zemin */
    .hero-content-wrap {
        position: relative;
        z-index: 5;
        padding: 24px 24px 8px;
        flex: unset;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 0;
    }

    .hero-text-slides {
        /* metin alanı */
    }

    .hero-text-slide.active {
        gap: 12px;
    }

    .slide-sub {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .slide-title {
        font-size: 36px;
        line-height: 38px;
        letter-spacing: -0.5px;
        max-width: 100%;
    }

    .slide-desc {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.5;
    }

    /* Butonlar: yan yana, tam genişlik */
    .hero-action-btns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        padding: 0 16px;
        font-size: 14px;
    }

    /* Desktop nav butonları gizle */
    .hero-nav-btns {
        display: none;
    }

    /* Mobil: Prev + Dots + Next */
    .hero-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding-top: 4px;
    }

    .hero-dots {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-light, #DDEAF5);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background 0.3s ease, width 0.3s ease;
        flex-shrink: 0;
    }

    .hero-dot.active {
        width: 24px;
        border-radius: 4px;
        background: var(--brand-navy, #123C91);
    }

    /* Info bar: görselin içinde, en altta */
    .hero-info-bar {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 6;
        padding: 16px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
        align-items: start;
        margin-top: 0;
        background: linear-gradient(to top, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0) 100%);
    }

    .info-divider {
        display: none;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .info-item svg {
        width: 32px;
        height: 35px;
    }

    .info-line1,
    .info-line2 {
        font-size: 11px;
        letter-spacing: 0;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 10px 12px;
    }

    .header-logo img {
        width: 110px;
        height: auto;
    }

    .hero-bg {
        height: 38vh;
    }

    .slide-title {
        font-size: 30px;
        line-height: 33px;
    }

    .hero-action-btns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-info-bar {
        padding: 12px 16px 16px;
        gap: 8px;
    }
}

/* ========== ÜRÜNLERİMİZ ========== */

.products-section {
    width: 100%;
    padding: 0 200px 100px;
}

/* Başlık satırı */
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.products-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.products-subtitle {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    font-feature-settings: 'liga' off;
}

.products-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.products-see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    transition: gap 0.2s ease;
    flex-shrink: 0;
}

.products-see-all:hover {
    gap: 12px;
}

.products-see-all svg {
    stroke: var(--brand-navy);
    flex-shrink: 0;
}

/* Kartlar grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Ürün kartı */
.product-card {
    display: flex;
    width: 100%;
    height: 370px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(18, 60, 145, 0.10);
    transform: translateY(-4px);
}

/* Ürün görseli */
.product-img {
    width: 100%;
    height: 214px;
    flex-shrink: 0;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* İsim + açıklama + buton */
.product-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    flex: 1;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.product-name {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.product-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.product-btn {
    display: flex;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-btn:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.product-btn svg {
    width: 44px;
    height: 44px;
}

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

@media (max-width: 1280px) {
    .products-section {
        padding: 0 40px 60px;
    }

    .product-card {
        height: auto;
    }

    .product-img {
        height: 180px;
    }

    .product-name {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .products-section {
        padding: 0 20px 48px;
    }

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

    .products-title {
        font-size: 28px;
        line-height: 28px;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 0 16px 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .product-img {
        height: 200px;
    }

    .product-name {
        font-size: 20px;
    }
}

/* ========== ÜRETİM YOLCULUĞU ========== */

.production-section {
    position: relative;
    width: 100%;
    background: #041E4C;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Dalga arka plan SVG */
.production-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.production-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 28px 200px;
}

/* Sol: başlıklar */
.production-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 340px;
    max-width: 360px;
}

.production-subtitle {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    font-feature-settings: 'liga' off;
}

.production-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

/* Sağ: adımlar */
.production-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: space-between;
}

/* Tek adım */
.production-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 64px;
    height: 64px;
    display: block;
}

.step-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.15px;
    text-align: center;
}

.step-sub {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-align: center;
}

/* Ok */
.step-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin-bottom: 44px;
    /* ikon merkeziyle hizalı */
}

.step-arrow svg {
    display: block;
}

/* Responsive */
@media (max-width: 1600px) {
    .production-inner {
        padding: 28px 200px;
        gap: 32px;
    }

    .production-left {
        min-width: 300px;
        max-width: 320px;
    }

    .production-title {
        font-size: 30px;
        line-height: 32px;
    }

    .step-icon svg {
        width: 56px;
        height: 56px;
    }

    .step-title {
        font-size: 18px;
        line-height: 20px;
    }

    .step-sub {
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .production-inner {
        padding: 32px 40px;
        gap: 24px;
        flex-wrap: wrap;
    }

    .production-left {
        min-width: 100%;
        max-width: 100%;
    }

    .production-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .step-arrow {
        display: none;
    }
}

@media (max-width: 1024px) {
    .production-inner {
        padding: 32px 24px;
    }

    .production-title {
        font-size: 24px;
        line-height: 26px;
    }

    .production-steps {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .production-inner {
        padding: 32px 20px;
    }

    /* Üretim alanı: sol başlık + kaydırmalı adımlar tam genişlik */
    .production-inner {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    /* Adımlar yatay kaydırmalı */
    .production-steps {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 0 12px;
        margin: 0;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .production-steps::-webkit-scrollbar {
        display: none;
    }

    .production-step {
        flex: 0 0 150px;
        width: 150px;
        min-height: 180px;
        box-sizing: border-box;
        scroll-snap-align: start;
        justify-content: flex-start;
        gap: 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 20px 12px;
    }

    .step-arrow {
        display: none;
    }

    .step-title {
        font-size: 14px;
    }

    .step-icon svg {
        width: 44px;
        height: 44px;
    }
}

/* ========== SÜRDÜRÜLEBİLİRLİK ========== */

.sustainability-section {
    width: 100%;
    padding: 90px 200px 100px;
}

.sustainability-card {
    display: flex;
    align-items: stretch;
    width: 1520px;
    max-width: 100%;
    height: 400px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #fff;
    overflow: hidden;
}

.sustain-image {
    width: 748px;
    height: 400px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-radius: 30px 0 0 30px;
}

.sustain-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 48px 60px;
}

.sustain-subtitle {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.sustain-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.sustain-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.15px;
    max-width: 420px;
}

.sustain-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 24px;
    border-radius: 30px;
    border: 2px solid var(--border-light, #DDEAF5);
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
    align-self: flex-start;
}

.sustain-btn:hover {
    border-color: var(--brand-navy);
}

/* ========== MEDYA ========== */

.media-section {
    width: 100%;
    padding: 0 200px 100px;
}

.media-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.media-header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.media-subtitle {
    color: var(--brand-orange, #F5831F);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
}

.media-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.media-see-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    transition: gap 0.2s ease;
    flex-shrink: 0;
}

.media-see-all:hover {
    gap: 12px;
}

/* Tablar — tek birleşik kutu */
.media-tabs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.media-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: var(--white, #FFF);
}

.media-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    padding: 0 28px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.media-tab.active {
    background: var(--brand-navy, #123C91);
    color: #FFF;
}

.media-tab:not(.active):hover {
    background: rgba(18, 60, 145, 0.06);
}

.media-tab svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Haber grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Panel görünürlük */
.media-panel {
    display: none;
}

.media-panel.active {
    display: grid;
    animation: fadeInPanel 0.4s ease;
}

@keyframes fadeInPanel {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.news-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.news-image {
    width: 100%;
    height: 214px;
    flex-shrink: 0;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 12px;
}

.news-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

/* Etiket + Tarih satırı (başlığın üstünde) */
.news-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.news-excerpt {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    margin-top: auto;
}

.news-readmore {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-readmore:hover {
    color: var(--brand-orange, #F5831F);
}

.news-badge {
    display: inline-flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--brand-navy, #123C91);
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-date {
    color: var(--text-muted, #8A9AB3);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.news-btn {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.news-btn:hover {
    transform: scale(1.08);
}

.news-btn svg {
    width: 44px;
    height: 44px;
}

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

    .media-section {
        padding: 0 100px 80px;
    }
}

@media (max-width: 1280px) {
    .sustainability-section {
        padding: 0 40px 60px;
    }

    .sustainability-card {
        flex-direction: column;
        height: auto;
    }

    .sustain-image {
        width: 100%;
        height: 280px;
        border-radius: 30px 30px 0 0;
    }

    .sustain-content {
        padding: 40px;
    }

    .media-section {
        padding: 0 40px 60px;
    }

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

@media (max-width: 1024px) {
    .sustainability-section {
        padding: 0 20px 48px;
    }

    .media-section {
        padding: 0 20px 48px;
    }

    .media-tabs-row {
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .sustainability-section {
        padding: 0 16px 40px;
    }

    .sustain-image {
        height: 200px;
    }

    .sustain-content {
        padding: 32px 24px;
    }

    .sustain-title {
        font-size: 28px;
        line-height: 30px;
    }

    .media-section {
        padding: 0 16px 40px;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        height: auto;
        padding: 16px;
    }

    .news-image {
        height: 180px;
        margin-bottom: 8px;
    }

    .news-title {
        font-size: 20px;
    }
}

/* ========== SERTİFİKALAR ========== */

.certificates-section {
    width: 100%;
    padding: 0 200px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificates-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 48px;
}

.certificates-subtitle {
    color: var(--brand-orange, #F5831F);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    font-feature-settings: 'liga' off;
}

.certificates-title {
    color: var(--brand-navy, #123C91);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.certificates-desc {
    color: var(--text-secondary, #5D6F8C);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.certificates-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.certificate-box {
    display: flex;
    width: 233px;
    height: 150px;
    padding: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: var(--white, #FFF);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.certificate-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

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

@media (max-width: 1280px) {
    .certificates-section {
        padding: 0 40px 60px;
    }

    .certificate-box {
        width: 200px;
        height: 130px;
        padding: 32px;
    }
}

@media (max-width: 1024px) {
    .certificates-section {
        padding: 0 20px 48px;
    }

    .certificates-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 600px) {
    .certificates-section {
        padding: 0 16px 40px;
    }

    .certificates-grid {
        gap: 16px;
    }

    .certificate-box {
        width: calc(50% - 8px);
        height: 110px;
        padding: 24px;
    }
}

/* ========== ÜRÜN DETAY ========== */

.product-detail {
    width: 100%;
    padding: 0 200px 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 748px 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    width: 100%;
    max-width: 748px;
    height: 480px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-detail-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-detail-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.product-detail-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
}

/* Özellik ikonları */
.product-features {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.product-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.product-feature-icon svg {
    width: 40px;
    height: 40px;
}

.product-feature-label {
    color: var(--text-main, #0B234A);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-align: center;
}

/* İnce çizgi */
.product-detail-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light, #DDEAF5);
}

/* Format kutuları */
.product-formats {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.product-format {
    display: flex;
    height: 96px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 15px;
    border: 2px solid var(--border-light, #DDEAF5);
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.product-format:hover {
    border-color: rgba(18, 60, 145, 0.5);
}

.product-format.active {
    border-color: var(--brand-navy, #123C91);
}

.product-format-title {
    color: var(--text-main, #0B234A);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.15px;
}

.product-format-desc {
    color: var(--text-main, #0B234A);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

/* Butonlar */
.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-detail-primary {
    display: flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 30px;
    background: var(--brand-navy, #123C91);
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-detail-primary:hover {
    background: #0d2f73;
    transform: translateY(-1px);
}

.btn-detail-primary svg {
    flex-shrink: 0;
}

.btn-detail-outline {
    display: flex;
    height: 44px;
    padding: 0 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 30px;
    border: 2px solid var(--border-light, #DDEAF5);
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-detail-outline:hover {
    border-color: var(--brand-navy);
    background: rgba(18, 60, 145, 0.04);
}

/* Responsive */
@media (max-width: 1600px) {
    .product-detail {
        padding: 0 100px 80px;
    }

    .product-detail-grid {
        grid-template-columns: 560px 1fr;
        gap: 40px;
    }
}

@media (max-width: 1280px) {
    .product-detail {
        padding: 0 40px 60px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .product-detail-image {
        height: 420px;
    }

    .product-detail-desc {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .product-detail {
        padding: 0 24px 48px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-image {
        max-width: 100%;
        height: 360px;
    }
}

@media (max-width: 600px) {
    .product-detail {
        padding: 0 16px 40px;
    }

    .product-detail-image {
        height: 260px;
    }

    .product-detail-title {
        font-size: 28px;
        line-height: 30px;
    }

    .product-detail-desc {
        font-size: 16px;
    }

    .product-features {
        gap: 12px;
    }

    .product-feature {
        min-width: calc(50% - 6px);
    }

    .product-formats {
        flex-direction: column;
    }

    .product-format {
        height: auto;
        min-height: 80px;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .btn-detail-primary,
    .btn-detail-outline {
        width: 100%;
        flex: none;
        height: 54px;
        min-height: 54px;
        padding: 0 24px;
    }
}

/* ========== ÜRÜN ÖZELLİKLERİ + BESİN ========== */

.product-specs {
    width: 100%;
    padding: 0 200px 100px;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 491px;
    gap: 60px;
    align-items: start;
}

.specs-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
    margin-bottom: 32px;
}

.specs-title-sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary, #5D6F8C);
    letter-spacing: 0;
}

/* Sol tablo */
.specs-table {
    border: 1px solid var(--border-light, #DDEAF5);
    border-radius: 15px;
    overflow: hidden;
}

.specs-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border-bottom: 1px solid var(--border-light, #DDEAF5);
}

.specs-row:last-child {
    border-bottom: none;
}

.specs-cell {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 24px;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.specs-key {
    border-right: 1px solid var(--border-light, #DDEAF5);
}

/* Sağ besin değerleri */
.nutrition-box {
    display: flex;
    width: 100%;
    max-width: 491px;
    min-height: 320px;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    border-radius: 30px;
    background: #F4F7FD;
}

.nutrition-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.nutrition-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.nutrition-key {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.nutrition-val {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-align: right;
}

.nutrition-note {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

/* Responsive */
@media (max-width: 1600px) {
    .product-specs {
        padding: 0 100px 80px;
    }

    .product-specs-grid {
        gap: 40px;
    }
}

@media (max-width: 1280px) {
    .product-specs {
        padding: 0 40px 60px;
    }

    .product-specs-grid {
        grid-template-columns: 1fr 380px;
        gap: 32px;
    }

    .specs-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 1024px) {
    .product-specs {
        padding: 0 24px 48px;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nutrition-box {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .product-specs {
        padding: 0 16px 40px;
    }

    .specs-cell {
        padding: 12px 16px;
        font-size: 14px;
    }

    .nutrition-box {
        padding: 24px;
        min-height: unset;
    }
}

/* ========== SAYFA BANNER ========== */

.page-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    /* Header'ın arkasına çek: header yüksekliği kadar yukarı + içeriden boşluk */
    margin-top: -125px;
    padding-top: 125px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Banner içinde header şeffaf, üstte — sticky korunur */
.page-banner .site-header {
    z-index: 5;
}

/* İçerik alanı, alta yaslı */
.page-banner-content {
    position: relative;
    z-index: 4;
    margin-top: auto;
    padding: 0 200px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.page-banner-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 61px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.breadcrumb-sep {
    color: var(--brand-navy, #123C91);
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-link {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.breadcrumb-link:hover {
    opacity: 1;
}

.breadcrumb-link.active {
    opacity: 0.6;
}

/* Paylaş */
.page-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-share-label {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1px;
    font-feature-settings: 'liga' off;
}

.page-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.page-share-icon:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* Banner responsive */
@media (max-width: 1600px) {
    .page-banner-content {
        padding: 0 100px 40px;
    }

    .page-banner-title {
        font-size: 52px;
    }
}

@media (max-width: 1280px) {
    .page-banner-content {
        padding: 0 40px 36px;
    }

    .page-banner-title {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .page-banner {
        min-height: 340px;
        margin-top: -117px;
        padding-top: 117px;
    }

    .page-banner-content {
        padding: 0 24px 32px;
        gap: 12px;
    }

    .page-banner-title {
        font-size: 36px;
    }

    #main-content {
        padding-top: 32px !important;
    }
}

@media (max-width: 600px) {
    .page-banner {
        min-height: 250px;
        margin-top: -117px;
        padding-top: 117px;
    }

    /* Başlığı yukarı al: alta yaslamak yerine görselin hemen altından başlat */
    .page-banner-content {
        margin-top: 0;
        padding: 16px 16px 24px;
    }

    .page-banner-title {
        font-size: 30px;
    }

    /* Banner ile içerik arasındaki boşluğu kısalt */
    #main-content {
        padding-top: 24px !important;
    }
}

@media (max-width: 480px) {
    .page-banner {
        margin-top: -96px;
        padding-top: 96px;
    }
}

/* ========== GENEL İÇERİK SAYFASI ========== */

.content-page {
    width: 100%;
    padding: 0 200px 100px;
}

.content-page-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1520px;
}

.content-heading {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-top: 8px;
}

.content-heading:first-child {
    margin-top: 0;
}

.content-para {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
}

/* İndirme kutuları */
.content-downloads {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.download-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 15px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    color: var(--brand-navy, #123C91);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.download-box:hover {
    background: var(--brand-navy, #123C91);
    border-color: var(--brand-navy, #123C91);
    color: #FFF;
    transform: translateY(-2px);
}

.download-icon {
    display: flex;
    flex-shrink: 0;
}

.download-icon svg {
    width: 32px;
    height: 32px;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.download-label {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.15px;
}

.download-sub {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 1600px) {
    .content-page {
        padding: 0 100px 80px;
    }
}

@media (max-width: 1280px) {
    .content-page {
        padding: 0 40px 60px;
    }

    .content-para {
        font-size: 17px;
    }

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

@media (max-width: 1024px) {
    .content-page {
        padding: 0 24px 48px;
    }
}

@media (max-width: 600px) {
    .content-page {
        padding: 0 16px 40px;
    }

    .content-para {
        font-size: 16px;
    }

    .content-heading {
        font-size: 20px;
    }

    .content-downloads {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ========== ÜRETİM SÜRECİ (TIMELINE) ========== */

.process-section {
    width: 100%;
    padding: 0 200px 100px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
}

.process-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    column-gap: 48px;
    align-items: start;
}

.process-media {
    grid-column: 1;
    grid-row: 1;
}

.process-center {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    height: 100%;
}

.process-text {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 56px;
}

/* Ters satır: görsel sağda, metin solda */
.process-row.reverse .process-media {
    grid-column: 3;
}

.process-row.reverse .process-text {
    grid-column: 1;
}

/* Görsel */
.process-img {
    width: 100%;
    max-width: 706px;
    height: 284px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 56px;
}

/* Reverse satırda görsel sağa hizalı */
.process-row.reverse .process-img {
    margin-left: auto;
}

/* Metin */
.process-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
}

.process-para {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
}

/* Orta sütun: numara + çizgi */
.process-num {
    display: flex;
    width: 60px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1.5px solid var(--brand-navy, #123C91);
    background: transparent;
    color: var(--brand-navy, #123C91);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15px;
    font-feature-settings: 'liga' off;
    flex-shrink: 0;
    transition: background 0.4s ease, color 0.4s ease;
}

/* Aktif numara dolu */
.process-row.active .process-num {
    background: var(--brand-navy, #123C91);
    color: #FFF;
}

/* Bağlantı çizgisi */
.process-line {
    width: 2px;
    flex: 1;
    min-height: 200px;
    background: var(--border-light, #DDEAF5);
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.process-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--brand-navy, #123C91);
    border-radius: 1px;
    transition: height 0.6s ease;
}

/* Çizgi yalnızca bir sonraki adım gelince dolar */
.process-row.line-filled .process-line-fill {
    height: 100%;
}

/* İçerik scroll ile açılır */
.process-media,
.process-text {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-row.active .process-media,
.process-row.active .process-text {
    opacity: 1;
    transform: translateY(0);
}

/* Metin görselden hafif gecikmeli gelsin */
.process-row.active .process-text {
    transition-delay: 0.12s;
}

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

@media (max-width: 1280px) {
    .process-section {
        padding: 0 40px 60px;
    }

    .process-row {
        column-gap: 32px;
    }

    .process-para {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .process-section {
        padding: 0 24px 48px;
    }

    /* Mobil: tek sütun, numara solda */
    .process-row,
    .process-row.reverse {
        grid-template-columns: 60px 1fr;
        column-gap: 20px;
    }

    .process-media,
    .process-row.reverse .process-media {
        grid-column: 2;
        grid-row: 1;
    }

    .process-center {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .process-text,
    .process-row.reverse .process-text {
        grid-column: 2;
        grid-row: 2;
        padding-bottom: 40px;
    }

    .process-img {
        height: 220px;
        margin-bottom: 20px;
        margin-left: 0 !important;
    }

    .process-line {
        min-height: 100%;
    }
}

@media (max-width: 600px) {
    .process-section {
        padding: 0 16px 40px;
    }

    .process-row,
    .process-row.reverse {
        grid-template-columns: 44px 1fr;
        column-gap: 14px;
    }

    .process-num {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .process-img {
        height: 180px;
    }

    .process-para {
        font-size: 16px;
    }
}

/* ========== İLETİŞİM ========== */

.contact-section {
    width: 100%;
    padding: 0 200px 100px;
}

.contact-card {
    display: flex;
    align-items: stretch;
    gap: 48px;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Sol form */
.contact-form-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    min-width: 0;
}

.contact-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
    margin-bottom: 16px;
}

.contact-subtitle {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
    margin-bottom: 32px;
    max-width: 560px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
    margin-bottom: 32px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-light, #DDEAF5);
    padding: 8px 0;
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1px;
    outline: none;
    resize: none;
    transition: border-color 0.2s ease;
}

.contact-field textarea {
    min-height: 80px;
}

/* Mesaj alanı: alttaki divider yeterli, kendi çizgisi olmasın */
.contact-field-full textarea {
    border-bottom: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: var(--text-muted, #8A9AB3);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-bottom-color: var(--brand-navy, #123C91);
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light, #DDEAF5);
    margin-bottom: 24px;
}

.contact-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

/* KVKK checkbox */
.contact-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    max-width: 420px;
}

.contact-kvkk input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--border-light, #DDEAF5);
    flex-shrink: 0;
    transition: background 0.2s ease;
    margin-top: 1px;
}

.contact-checkmark svg {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.contact-kvkk input:checked ~ .contact-checkmark {
    background: var(--brand-orange, #F5831F);
}

.contact-kvkk input:checked ~ .contact-checkmark svg {
    opacity: 1;
}

.contact-kvkk-text {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.contact-kvkk-text a {
    color: var(--brand-orange, #F5831F);
    text-decoration: underline;
}

.contact-required {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    max-width: 220px;
    flex-shrink: 0;
}

.contact-required::first-letter {
    color: var(--brand-orange, #F5831F);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 30px;
    background: var(--brand-orange, #F5831F);
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s ease, transform 0.15s ease;
}

.contact-submit:hover {
    background: #d9701a;
    transform: translateY(-1px);
}

/* Sağ görsel + bilgi kutusu */
.contact-visual {
    width: 595px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 220px 12px 12px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-info {
    display: flex;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: 30px;
    background: rgba(18, 60, 145, 0.80);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-info-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.15px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-icon {
    display: flex;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    flex-shrink: 0;
}

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

.contact-info-label {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
}

.contact-info-value {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1px;
    opacity: 0.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.contact-info-divider {
    width: 100%;
    height: 1px;
    background: #FFF;
    opacity: 0.2;
}

.contact-socials-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-socials-label {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-social {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--brand-orange, #F5831F);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-social:hover {
    transform: translateY(-2px);
    background: #d9701a;
}

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

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

    .contact-visual {
        width: 460px;
    }

    .contact-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 0 24px 48px;
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-visual {
        width: 100%;
        padding-top: 160px;
    }

    .contact-info {
        max-width: 595px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 0 16px 40px;
    }

    .contact-card {
        padding: 16px;
        gap: 24px;
    }

    .contact-form-wrap {
        padding: 12px;
    }

    .contact-fields {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-bottom {
        flex-direction: column;
        gap: 16px;
    }

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

    .contact-visual {
        padding: 120px 8px 8px;
    }
}

/* ========== TEKLİF TALEP FORMU ========== */

.quote-section {
    width: 100%;
    padding: 0 200px 100px;
}

.quote-card {
    display: flex;
    align-items: stretch;
    gap: 32px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

/* Sol form */
.quote-form-wrap {
    flex: 1;
    padding: 48px;
    min-width: 0;
}

.quote-group-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.quote-group-title:not(:first-child) {
    margin-top: 36px;
}

.quote-group-sub {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
    margin-bottom: 28px;
    max-width: 560px;
}

.quote-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-field {
    position: relative;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--border-light, #DDEAF5);
    padding: 8px 0;
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
    outline: none;
    resize: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.quote-field textarea {
    min-height: 70px;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: var(--text-muted, #8A9AB3);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-bottom-color: var(--brand-navy, #123C91);
}

/* ---- Özel select (JS) ---- */
.cs-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px 8px 0;
    border-bottom: 1px solid var(--border-light, #DDEAF5);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.quote-select.open .cs-trigger {
    border-bottom-color: var(--brand-navy, #123C91);
}

.cs-value {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.cs-value.cs-placeholder {
    color: var(--text-muted, #8A9AB3);
    font-size: 14px;
}

.quote-select .select-chev {
    transition: transform 0.25s ease;
}

.quote-select.open .select-chev {
    transform: rotate(180deg);
}

.cs-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #FFF;
    border: 1px solid var(--border-light, #DDEAF5);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(18, 60, 145, 0.14);
    padding: 6px;
    list-style: none;
    z-index: 60;
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.quote-select.open .cs-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-option {
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.cs-option:hover {
    background: rgba(18, 60, 145, 0.06);
}

.cs-option.selected {
    background: rgba(245, 131, 31, 0.10);
    color: var(--brand-orange, #F5831F);
}

/* Mesaj alanı: kendi alt çizgisi olmasın (alttaki divider yeterli) */
.quote-field-full textarea {
    border-bottom: none;
}

.quote-select {
    position: relative;
}

.quote-select .select-chev {
    position: absolute;
    right: 0;
    top: 10px;
    pointer-events: none;
}

.quote-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light, #DDEAF5);
    margin: 32px 0 24px;
}

/* Dosya yükleme */
.quote-upload-label {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.quote-upload-label span {
    color: var(--text-muted, #8A9AB3);
    font-weight: 500;
}

.quote-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px;
    border: 1.5px dashed var(--border-light, #DDEAF5);
    border-radius: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-bottom: 28px;
}

.quote-upload:hover {
    border-color: var(--brand-orange, #F5831F);
    background: rgba(245, 131, 31, 0.03);
}

.quote-upload-text {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.quote-upload-link {
    color: var(--brand-orange, #F5831F);
    font-weight: 600;
}

.quote-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 30px;
    background: var(--brand-orange, #F5831F);
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.quote-submit:hover {
    background: #d9701a;
    transform: translateY(-1px);
}

/* Sağ navy panel */
.quote-side {
    width: 560px;
    flex-shrink: 0;
    padding: 48px;
    background: linear-gradient(180deg, #123C91 0%, #0d2f73 100%);
    display: flex;
    flex-direction: column;
}

.quote-side-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.25px;
    margin-bottom: 16px;
}

.quote-side-sub {
    color: rgba(255, 255, 255, 0.9);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
    margin-bottom: 32px;
}

.quote-advantages {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quote-adv {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.quote-adv-icon {
    flex-shrink: 0;
}

.quote-adv-icon svg {
    width: 40px;
    height: 40px;
}

.quote-adv-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 6px;
}

.quote-adv-desc {
    color: rgba(255, 255, 255, 0.75);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.quote-side-divider {
    width: 100%;
    height: 1px;
    background: #FFF;
    opacity: 0.2;
    margin: 32px 0;
}

.quote-side-contact-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    margin-bottom: 24px;
}

.quote-side .contact-info-row {
    margin-bottom: 24px;
}

.quote-side .contact-info-grid {
    margin-bottom: 0;
}

.quote-side .contact-info-grid .contact-info-row {
    margin-bottom: 0;
}

.quote-social {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quote-social:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

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

    .quote-side {
        width: 480px;
    }
}

@media (max-width: 1280px) {
    .quote-section {
        padding: 0 40px 60px;
    }

    .quote-form-wrap,
    .quote-side {
        padding: 36px;
    }

    .quote-side {
        width: 420px;
    }

    .quote-side-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .quote-section {
        padding: 0 24px 48px;
    }

    .quote-card {
        flex-direction: column;
    }

    .quote-side {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .quote-section {
        padding: 0 16px 40px;
    }

    .quote-form-wrap,
    .quote-side {
        padding: 24px;
    }

    .quote-fields {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .quote-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .quote-side-title {
        font-size: 26px;
    }
}

/* ========== HABER DETAY ========== */

.article-section {
    width: 100%;
    padding: 0 200px 100px;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.article-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.article-para {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.1px;
    margin-bottom: 24px;
}

.article-para:last-child {
    margin-bottom: 0;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sidebar-card:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.sidebar-card-img {
    width: 120px;
    flex-shrink: 0;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sidebar-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.sidebar-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted, #8A9AB3);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.sidebar-card-date svg {
    flex-shrink: 0;
}

.sidebar-card-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.sidebar-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.sidebar-card-readmore {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.15px;
}

.sidebar-card-arrow svg {
    width: 36px;
    height: 36px;
}

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

@media (max-width: 1280px) {
    .article-section {
        padding: 0 40px 60px;
    }

    .article-grid {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }

    .article-para {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .article-section {
        padding: 0 24px 48px;
    }

    .article-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .article-section {
        padding: 0 16px 40px;
    }

    .sidebar-card-img {
        width: 96px;
    }

    .sidebar-card-title {
        font-size: 16px;
    }
}

/* ========== KONUMUMUZ ========== */

.location-section {
    width: 100%;
    padding: 0 200px 80px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 24px;
    border-radius: 30px;
    border: 1px solid var(--border-light, #DDEAF5);
    background: #FFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px 24px 24px 36px;
    min-width: 0;
}

.location-title {
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
}

.location-desc {
    color: var(--text-secondary, #5D6F8C);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
    max-width: 360px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 22px;
    border-radius: 30px;
    border: 2px solid var(--border-light, #DDEAF5);
    background: transparent;
    color: var(--brand-navy, #123C91);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-decoration: none;
    align-self: flex-start;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.location-btn:hover {
    border-color: var(--brand-navy);
    background: rgba(18, 60, 145, 0.04);
}

.location-map-wrap {
    width: 60%;
    flex-shrink: 0;
}

#contactMap {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    z-index: 1;
}

/* ========== CTA BANNER ========== */

.cta-section {
    width: 100%;
    padding: 0 200px 80px;
}

.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    border-radius: 30px;
    background: linear-gradient(281deg, #123C91 0%, #00173B 100%);
    overflow: hidden;
}

.cta-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.cta-title {
    position: relative;
    z-index: 1;
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.25px;
    flex-shrink: 0;
}

.cta-text {
    position: relative;
    z-index: 1;
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
    text-align: center;
}

.cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 30px;
    background: var(--brand-orange, #F5831F);
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.15px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta-btn:hover {
    background: #d9701a;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1600px) {
    .location-section,
    .cta-section {
        padding: 0 100px 60px;
    }
}

@media (max-width: 1280px) {
    .location-section,
    .cta-section {
        padding: 0 40px 48px;
    }

    .location-title,
    .cta-title {
        font-size: 28px;
    }

    .cta-card {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-text {
        text-align: left;
        flex-basis: 100%;
        order: 3;
    }
}

@media (max-width: 1024px) {
    .location-section,
    .cta-section {
        padding: 0 24px 40px;
    }

    .location-card {
        flex-direction: column;
        align-items: stretch;
    }

    .location-text {
        padding: 24px;
    }

    .location-map-wrap {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .location-section,
    .cta-section {
        padding: 0 16px 32px;
    }

    .cta-card {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

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

/* ========== GALERİ ========== */

.gallery-section {
    width: 100%;
    padding: 0 200px 100px;
}

.gallery-title {
    color: var(--brand-navy, #123C91);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0.25px;
    margin-bottom: 40px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 24px;
}

.gallery-item {
    display: block;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== TESİS HARİTASI ========== */

.facilities-map {
    width: 100%;
    padding: 0 200px 100px;
}

.facilities-map-inner {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.facilities-map-inner iframe {
    display: block;
}

#facilitiesMap {
    width: 100%;
    height: 520px;
    border-radius: 30px;
    z-index: 1;
}

/* Özel marker — gölge/çerçeve yok */
.omega-marker {
    background: transparent;
    border: none;
}

.omega-marker svg {
    display: block;
    filter: drop-shadow(0 6px 12px rgba(18, 60, 145, 0.35));
}

/* Turuncu popup (tasarımdaki gibi, sade) */
.omega-popup .leaflet-popup-content-wrapper {
    background: var(--brand-orange, #F5831F);
    color: #FFF;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    padding: 0;
}

.omega-popup .leaflet-popup-content {
    margin: 14px 18px;
    font-family: "DM Sans", sans-serif;
    width: auto !important;
    min-width: 164px;
}

.omega-popup .leaflet-popup-tip {
    background: var(--brand-orange, #F5831F);
    box-shadow: none;
}

/* Leaflet varsayılan gölge/parlama temizliği */
.omega-popup .leaflet-popup-tip-container {
    overflow: visible;
}

.leaflet-popup.omega-popup {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.10));
}

.omega-popup-title {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    margin-bottom: 4px;
    white-space: nowrap;
}

.omega-popup .leaflet-popup-content a.omega-popup-link,
.omega-popup-link {
    display: inline-block;
    color: #FFF !important;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1px;
    font-feature-settings: 'liga' off;
    white-space: nowrap;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
}

.omega-popup-link:hover {
    opacity: 0.9;
    color: #FFF !important;
}

/* Galeri & harita responsive */
@media (max-width: 1600px) {
    .gallery-section,
    .facilities-map {
        padding: 0 100px 80px;
    }
}

@media (max-width: 1280px) {
    .gallery-section,
    .facilities-map {
        padding: 0 40px 60px;
    }
}

@media (max-width: 1024px) {
    .gallery-section,
    .facilities-map {
        padding: 0 24px 48px;
    }

    .gallery-grid {
        column-count: 2;
        column-gap: 16px;
    }

    .gallery-item {
        margin-bottom: 16px;
    }

    .gallery-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .gallery-section,
    .facilities-map {
        padding: 0 16px 40px;
    }

    .gallery-grid {
        column-count: 1;
    }
}

/* ========== FOOTER ========== */

.site-footer {
    width: 100%;
    padding: 0 12px 12px;
}

.footer-card {
    position: relative;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(281deg, #123C91 0%, #00173B 70.19%);
    overflow: hidden;
    padding: 64px 200px 24px;
}

/* Arka plan OMEGA görseli */
.footer-bg {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 1529px;
    max-width: 90%;
    height: 450px;
    aspect-ratio: 418 / 123;
    opacity: 0.78;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 0;
}

/* Üst içerik */
.footer-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 100px;
    margin-bottom: 200px;
}

/* Sol marka alanı */
.footer-brand {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    max-width: 360px;
}

.footer-logo img {
    width: 267px;
    height: 120px;
    aspect-ratio: 89 / 40;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.footer-contact {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact p {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.footer-social {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    border: 1px solid var(--brand-cyan, #17AEEA);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
    background: rgba(23, 174, 234, 0.20);
    transform: translateY(-2px);
}

/* Sağ menü sütunları */
.footer-menus {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 160px;
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-group-title {
    position: relative;
    display: inline-block;
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    padding-bottom: 12px;
}

.footer-group-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #17AEEA 0%, rgba(23, 174, 234, 0.00) 100%);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #FFF;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.15px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--brand-cyan, #17AEEA);
}

/* Alt bar */
.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
}

.footer-copy {
    color: #FFF;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-feature-settings: 'liga' off;
    flex-shrink: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.footer-bottom-links a {
    color: #FFF;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1px;
    font-feature-settings: 'liga' off;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-bottom-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    flex-shrink: 0;
}

.footer-agency img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1280px) {
    .footer-card {
        padding: 48px 40px 24px;
    }

    .footer-menus {
        gap: 48px;
    }

    .footer-top {
        gap: 40px;
        margin-bottom: 160px;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        margin-bottom: 120px;
    }

    .footer-menus {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-bottom {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-links {
        flex: unset;
    }
}

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

    .footer-card {
        padding: 40px 24px 24px;
        display: flex;
        flex-direction: column;
    }

    /* Mobilde sıralama: menüler → OMEGA görseli → alt bar */
    .footer-top    { order: 1; }
    .footer-bg     { order: 2; }
    .footer-bottom { order: 3; }

    /* Üst alanı dikey + ortalı */
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand {
        align-items: center;
        max-width: 100%;
    }

    .footer-logo img {
        width: 200px;
        height: 90px;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact p {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Menüler ortalı */
    .footer-menus {
        flex-direction: column;
        gap: 32px;
        width: 100%;
        align-items: center;
    }

    .footer-col {
        min-width: unset;
        width: 100%;
        align-items: center;
    }

    .footer-group {
        align-items: center;
        text-align: center;
    }

    .footer-group-title {
        text-align: center;
    }

    /* Alt çizgi başlığın ortasında */
    .footer-group-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
        text-align: center;
    }

    /* Arka plan OMEGA görseli tam boyutta alta yapışık */
    .footer-bg {
        position: relative;
        left: 0;
        transform: none;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 418 / 123;
        margin-top: 24px;
    }

    /* Alt bar ortalı */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-bottom-divider {
        height: 20px;
    }
}

/* About responsive */
@media (max-width: 1600px) {
    .about-section {
        padding: 42px 100px 80px;
    }

    .about-right {
        width: 560px;
    }

    .about-person-wrap {
        left: calc(50% - 380px);
        width: 380px;
        height: 380px;
    }

    .about-person-img {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 1280px) {
    .about-section {
        padding: 42px 40px 80px;
    }

    .about-card {
        height: auto;
        min-height: 400px;
    }

    .about-right {
        width: 420px;
        height: auto;
        min-height: 400px;
    }

    .about-person-wrap {
        left: calc(50% - 300px);
        width: 300px;
        height: 300px;
    }

    .about-person-img {
        width: 300px;
        height: 300px;
    }

    .about-title {
        font-size: 28px;
        line-height: 30px;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 24px 20px 60px;
    }

    .about-card {
        flex-direction: column;
        height: auto;
        overflow: hidden;
    }

    .about-left {
        padding: 40px 32px 32px;
        gap: 20px;
    }

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

    .about-person-wrap {
        display: none;
    }

    .about-right {
        width: 100%;
        height: 240px;
        border-radius: 0 0 30px 30px;
        min-height: unset;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 24px 12px 40px;
    }

    .about-left {
        padding: 32px 24px 24px;
        gap: 16px;
    }

    .about-title {
        font-size: 24px;
        line-height: 26px;
    }

    .about-right {
        height: 200px;
    }
}