/* ==========================================================================
   Delibaltaoğlu — Site Stilleri
   Marka: #0c1426 (lacivert) + #f28e6b (mercan)
   Tipografi: Neue Montreal (tüm site)
   ========================================================================== */

/* ----- Neue Montreal — yerel @font-face ----- */
@font-face {
    font-family: 'Neue Montreal';
    src: url('/assets/fonts/NeueMontreal-Regular.woff2') format('woff2'),
         url('/assets/fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: 300 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/assets/fonts/NeueMontreal-Medium.woff2') format('woff2'),
         url('/assets/fonts/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/assets/fonts/NeueMontreal-Bold.woff2') format('woff2'),
         url('/assets/fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* --- Marka renkleri --- */
    --color-navy:   #0c1426;
    --color-coral:  #f28e6b;
    --color-cream:  #faf7f2;
    --color-sand:   #e8dfd2;
    --color-white:  #ffffff;
    --color-muted:  #6b6b6b;
    --color-line:   #d8d2c8;
    --color-dark-line: rgba(250, 247, 242, 0.12);

    /* --- Tipografi: Neue Montreal (başlık + gövde) --- */
    --font-display: 'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-sans:    'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    /* Legacy alias — eski kuralları kırmamak için */
    --font-serif:   var(--font-display);

    /* --- Spacing / sizing --- */
    --container-max: 1440px;
    --container-padding: clamp(1.25rem, 4vw, 4rem);
    --nav-height: 80px;

    /* --- Transitions --- */
    --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* --- Bootstrap override --- */
    --bs-body-bg: var(--color-cream);
    --bs-body-color: var(--color-navy);
    --bs-body-font-family: var(--font-sans);
    --bs-body-line-height: 1.6;
    --bs-primary: #0c1426;
    --bs-primary-rgb: 12, 20, 38;
    --bs-link-color: var(--color-navy);
    --bs-link-hover-color: var(--color-coral);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-navy);
    background: var(--color-cream);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--color-navy);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.875rem, 4vw, 3.25rem); font-weight: 500; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); font-weight: 500; }

/* Italic emphasis (sadece <em>) — NeueMontreal italic'i yok, mercan vurgu.
   <i> Bootstrap Icons için kullanılıyor, ona dokunma. */
em {
    font-style: normal;
    color: var(--color-coral);
}

em, i { font-style: italic; }

p { margin: 0 0 1rem 0; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-base);
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */
.container-x {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   Eyebrow / Küçük başlık
   -------------------------------------------------------------------------- */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.eyebrow::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}

.eyebrow--center {
    justify-content: center;
}
.eyebrow--center::after {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}

.eyebrow--coral { color: var(--color-coral); }

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}
.btn-primary:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

.btn-ghost {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(250, 247, 242, 0.4);
}
.btn-ghost:hover {
    background: var(--color-cream);
    color: var(--color-navy);
    border-color: var(--color-cream);
}

.btn-ghost--dark {
    color: var(--color-navy);
    border-color: rgba(12, 20, 38, 0.25);
}
.btn-ghost--dark:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--t-base);
}

.site-nav.scrolled {
    background: rgba(12, 20, 38, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 0;
}

/* İç sayfalarda (anasayfa/proje detay dışı): nav daima solid navy
   böylece logo ve menüler okunabilir */
body.has-solid-nav .site-nav {
    background: var(--color-navy);
    padding: 1rem 0;
}

body.has-solid-nav .site-nav .nav-logo-img--light {
    height: 44px;
}

/* İç sayfaların body altına nav yüksekliği kadar üst boşluk ver */
body.has-solid-nav main {
    padding-top: var(--nav-height);
}

body.has-solid-nav .page-hero {
    padding-top: 4rem; /* main zaten nav offset'ini içeriyor */
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    min-width: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    transition: opacity var(--t-base), height var(--t-base);
}

.site-nav.scrolled .nav-logo-img {
    height: 44px;
}

/* Hero üstündeyken: light versiyon (krem yazı + mercan monogram) */
.nav-logo-img--light { opacity: 1; }
.nav-logo-img--dark  { opacity: 0; position: absolute; inset: 0; }

/* Sayfa kaydırılınca: light versiyon kalır (nav arkaplanı lacivert) */
.site-nav.scrolled .nav-logo-img--light { opacity: 1; }
.site-nav.scrolled .nav-logo-img--dark  { opacity: 0; }

.nav-primary { min-width: 0; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > button.nav-dropdown-toggle {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-cream);
    position: relative;
    padding: 0.25rem 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links > li > a::after,
.nav-links > li > button.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-coral);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t-base);
}

.nav-links > li > a:hover::after,
.nav-links > li > button.nav-dropdown-toggle:hover::after,
.nav-links > li.nav-dropdown:hover > a::after,
.nav-links > li.nav-dropdown:hover > button.nav-dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ----- Dropdown ----- */
.nav-dropdown-icon {
    font-size: 0.7rem;
    transition: transform var(--t-base);
    opacity: 0.7;
}

.nav-dropdown:hover .nav-dropdown-icon,
.nav-dropdown:focus-within .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--color-cream);
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    min-width: 260px;
    box-shadow:
        0 20px 50px -10px rgba(12, 20, 38, 0.25),
        0 4px 12px rgba(12, 20, 38, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
    pointer-events: none;
    z-index: 110;
}

.nav-dropdown-menu::before {
    /* Hover boşluğunu kapatan görünmez köprü */
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu li { margin: 0; }

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-navy);
    text-shadow: none;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: var(--color-sand);
    color: var(--color-coral);
    padding-left: 1.75rem;
}

.nav-dropdown-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-coral);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(242, 142, 107, 0.15);
}

.nav-dropdown-dot--muted {
    background: var(--color-muted);
    box-shadow: 0 0 0 3px rgba(107, 107, 107, 0.12);
}

.nav-toggle {
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color var(--t-base);
}
.nav-toggle:hover { color: var(--color-coral); }

/* --------------------------------------------------------------------------
   Mobil Drawer Menü — sağdan kayar
   -------------------------------------------------------------------------- */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}

.mobile-drawer[hidden] { display: none; }

.mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 38, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: auto;
}

.mobile-drawer.is-open .mobile-drawer-backdrop { opacity: 1; }

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 92vw);
    background: var(--color-navy);
    color: var(--color-cream);
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }

/* Header */
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(250, 247, 242, 0.1);
    flex-shrink: 0;
}

.mobile-drawer-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.mobile-drawer-close {
    background: transparent;
    border: 1px solid rgba(250, 247, 242, 0.2);
    color: var(--color-cream);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--t-base);
}

.mobile-drawer-close:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

/* Nav */
.mobile-drawer-nav {
    padding: 1.5rem 1.75rem;
    flex: 1;
}

.mobile-drawer-link,
.mobile-drawer-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.1rem 0;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color var(--t-base), padding-left var(--t-base);
}

.mobile-drawer-link:hover,
.mobile-drawer-group-toggle:hover {
    color: var(--color-coral);
    padding-left: 4px;
}

.mobile-drawer-group-toggle i {
    font-size: 0.85rem;
    transition: transform 0.35s ease;
    opacity: 0.7;
}

.mobile-drawer-group.is-expanded .mobile-drawer-group-toggle {
    color: var(--color-coral);
}

.mobile-drawer-group.is-expanded .mobile-drawer-group-toggle i {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-drawer-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-group.is-expanded .mobile-drawer-sub {
    max-height: 400px;
}

.mobile-drawer-sub a {
    display: block;
    padding: 0.7rem 0 0.7rem 1.5rem;
    color: var(--color-cream);
    opacity: 0.78;
    font-size: 1rem;
    font-weight: 400;
    border-left: 2px solid rgba(242, 142, 107, 0.4);
    margin-left: 0.25rem;
    margin-bottom: 0.2rem;
    transition: all var(--t-base);
}

.mobile-drawer-sub a:hover {
    opacity: 1;
    color: var(--color-coral);
    border-left-color: var(--color-coral);
    padding-left: 1.75rem;
}

/* Footer */
.mobile-drawer-footer {
    padding: 1.5rem 1.75rem 2rem;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.15);
}

.mobile-drawer-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: var(--color-coral);
    color: var(--color-navy);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
}

.mobile-drawer-phone:hover {
    background: var(--color-cream);
    color: var(--color-navy);
}

.mobile-drawer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(250, 247, 242, 0.3);
    color: var(--color-cream);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--t-base);
}

.mobile-drawer-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.mobile-drawer-wa i { font-size: 1.05rem; }

.mobile-drawer-email {
    color: var(--color-cream);
    opacity: 0.7;
    font-size: 0.92rem;
    text-align: center;
    transition: opacity var(--t-base);
    padding-top: 0.5rem;
}
.mobile-drawer-email:hover { opacity: 1; color: var(--color-coral); }

.mobile-drawer-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 0;
}

.mobile-drawer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(250, 247, 242, 0.2);
    border-radius: 50%;
    color: var(--color-cream);
    font-size: 0.95rem;
    transition: all var(--t-base);
}

.mobile-drawer-social a:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

.mobile-drawer-langs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(250, 247, 242, 0.08);
    margin-top: 0.5rem;
}

.mobile-drawer-langs a {
    color: var(--color-cream);
    opacity: 0.55;
    transition: opacity var(--t-base);
}
.mobile-drawer-langs a.active { opacity: 1; color: var(--color-coral); }
.mobile-drawer-langs a:not(.active):hover { opacity: 1; }
.mobile-drawer-langs span { opacity: 0.3; font-weight: 300; }

/* Body scroll lock */
body.drawer-open {
    overflow: hidden;
    touch-action: none;
}

/* --------------------------------------------------------------------------
   Nav Right — Sosyal Medya, Dil
   -------------------------------------------------------------------------- */
.nav-social {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 1.05rem;
    line-height: 1;
    opacity: 0.85;
    transition: color var(--t-base), opacity var(--t-base), transform var(--t-base);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.nav-social a:hover {
    opacity: 1;
    color: var(--color-coral);
    transform: translateY(-2px);
}

.nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(250, 247, 242, 0.18);
}

.nav-lang-link {
    color: var(--color-cream);
    opacity: 0.55;
    padding: 0.2rem 0.15rem;
    transition: opacity var(--t-base), color var(--t-base);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.nav-lang-link.active {
    opacity: 1;
    color: var(--color-coral);
}

.nav-lang-link:not(.active):hover {
    opacity: 1;
}

.nav-lang-sep {
    color: var(--color-cream);
    opacity: 0.3;
    font-weight: 300;
    line-height: 1;
}

/* Scrolled durumda nav-right'ın ayraç çizgisini koyu nav'a uydur */
.site-nav.scrolled .nav-lang { border-left-color: rgba(250, 247, 242, 0.14); }

/* --------------------------------------------------------------------------
   Hero Slider
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 0 8rem 0;
    color: var(--color-cream);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

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

/* Slayt karartma overlay'i */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 20, 38, 0.35) 0%,
        rgba(12, 20, 38, 0.15) 35%,
        rgba(12, 20, 38, 0.55) 80%,
        rgba(12, 20, 38, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Slayt içeriği (eyebrow + h1 + lead) — Ken Burns benzeri yumuşak büyüme */
.hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) 7rem;
    box-sizing: border-box;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.9s 0.2s ease, transform 0.9s 0.2s ease;
}

.hero-slide.is-active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-content .eyebrow {
    color: var(--color-coral);
    margin-bottom: 1.5rem;
}

.hero-slide-content h1,
.hero-slide-content .hero-slide-title {
    font-size: clamp(2.4rem, 5.6vw, 4.5rem);
    line-height: 1.04;
    margin: 0 0 1.5rem 0;
    color: var(--color-cream);
    font-weight: 500;
    letter-spacing: -0.03em;
    max-width: 800px;
}

.hero-slide-content h1 em,
.hero-slide-content .hero-slide-title em {
    color: var(--color-coral);
    font-style: normal;
}

.hero-slide-content .lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7;
    max-width: 580px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    color: var(--color-cream);
}

.hero-slide-content .lead strong {
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.04em;
}

/* Slider kontrolleri (alt) */
.hero-controls-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    z-index: 5;
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-controls-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Keşfet pill butonu */
.hero-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 2rem;
    background: var(--color-cream);
    color: var(--color-navy);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all var(--t-base);
    text-decoration: none;
    white-space: nowrap;
}

.hero-cta-pill:hover {
    background: var(--color-coral);
    color: var(--color-navy);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(242, 142, 107, 0.35);
}

.hero-cta-pill i { font-size: 0.9rem; transition: transform var(--t-base); }
.hero-cta-pill:hover i { transform: translateX(3px); }

/* Sol/Sağ ok butonları */
.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(250, 247, 242, 0.45);
    color: var(--color-cream);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all var(--t-base);
    padding: 0;
}

.hero-arrow:hover {
    background: var(--color-cream);
    color: var(--color-navy);
    border-color: var(--color-cream);
}

/* Noktalar */
.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(250, 247, 242, 0.55);
    padding: 0;
    cursor: pointer;
    transition: all var(--t-base);
    line-height: 1;
}

.hero-dot.is-active {
    background: var(--color-cream);
    border-color: var(--color-cream);
    transform: scale(1.15);
}

.hero-dot:not(.is-active):hover {
    background: rgba(250, 247, 242, 0.4);
}

/* --------------------------------------------------------------------------
   Sections — generic
   -------------------------------------------------------------------------- */
.section {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 720px;
}

.section-header.text-center { text-align: center; }
.section-header h2 { margin: 1rem 0; }

/* --------------------------------------------------------------------------
   Featured Project (GANITA)
   -------------------------------------------------------------------------- */
.featured-project { background: var(--color-cream); }

.fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.fp-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.fp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.fp-image:hover img { transform: scale(1.04); }

.fp-content h2 { margin: 1rem 0 1.5rem 0; }
.fp-content .lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-navy);
    opacity: 0.85;
    max-width: 520px;
}

.fp-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    margin: 2.5rem 0 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.fp-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fp-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.fp-meta-value {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    color: var(--color-navy);
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Projeleri Keşfedin — Video Showcase (sıcak krem zemin, sola yapışık oval video)
   -------------------------------------------------------------------------- */
.discover-section {
    position: relative;
    background: #ede2cf; /* sıcak krem — referans ile uyumlu */
    padding: clamp(0.75rem, 1.5vw, 1.5rem) 0;
    overflow: hidden;
}

.discover-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
    /* Full width — container kullanılmıyor; sol video flush, sağ metin padding'li */
}

.discover-video-wrap {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    /* Sola yapışık: sol köşeler sert, sağ köşeler yumuşak (oval his) */
    border-radius: 0 28px 28px 0;
    background: var(--color-navy);
    box-shadow: 0 30px 60px -20px rgba(12, 20, 38, 0.18);
}

.discover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.discover-text {
    padding-right: clamp(1.5rem, 5vw, 5rem);
    max-width: 560px;
    color: var(--color-navy);
}

.discover-text .eyebrow {
    color: var(--color-navy);
    opacity: 0.7;
}
.discover-text .eyebrow::before { background: currentColor; }

.discover-text h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.05;
    margin: 1.25rem 0 1.5rem;
    color: var(--color-navy);
    letter-spacing: -0.025em;
}

.discover-text .lead {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-navy);
    opacity: 0.82;
    margin: 0 0 1rem;
}

.discover-cta { margin-top: 1.5rem; }

@media (max-width: 992px) {
    .discover-row { grid-template-columns: 1fr; gap: 2rem; }
    .discover-video-wrap {
        aspect-ratio: 16 / 10;
        border-radius: 0 24px 24px 0;
    }
    .discover-text {
        padding: 0 var(--container-padding);
        max-width: none;
    }
}

/* --------------------------------------------------------------------------
   Tamamlanan Projeler — Carousel
   -------------------------------------------------------------------------- */
.completed-section {
    background: var(--color-cream);
    overflow: hidden;
}

.completed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.completed-header-text { max-width: 720px; }
.completed-header h2 { margin-top: 1rem; }

.completed-nav {
    display: flex;
    gap: 0.5rem;
}

.completed-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--t-base);
}

.completed-arrow:hover {
    background: var(--color-navy);
    color: var(--color-cream);
}

.completed-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.completed-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.completed-carousel::-webkit-scrollbar { display: none; }

.cp-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
    aspect-ratio: 4 / 5.4;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    background: var(--color-navy);
}

.cp-card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--color-cream);
    position: relative;
}

.cp-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.cp-card:hover .cp-card-link img { transform: scale(1.06); }

.cp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 20, 38, 0.5) 0%,
        rgba(12, 20, 38, 0.1) 30%,
        rgba(12, 20, 38, 0) 60%
    );
}

.cp-card-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.75rem 2rem;
    color: var(--color-cream);
}

.cp-card-name {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.cp-card-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 0.25rem;
    border-bottom: 1.5px solid var(--color-cream);
    display: inline-block;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    transition: border-color var(--t-base);
}

.cp-card:hover .cp-card-number {
    border-color: var(--color-coral);
}

@media (max-width: 1100px) {
    .cp-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

@media (max-width: 640px) {
    .cp-card { flex: 0 0 82%; }
    .cp-card-content { padding: 1.25rem 1.5rem; }
    .cp-card-number { font-size: 1.5rem; }
    .completed-header { margin-bottom: 2rem; }
}

/* --------------------------------------------------------------------------
   Projeler Listeleme Sayfası
   -------------------------------------------------------------------------- */
.projects-hero { background: var(--color-cream); padding-bottom: 3rem; }
.projects-hero .lead { max-width: 720px; }

/* Filter tabs */
.projects-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--color-line);
    padding-top: 2rem;
}

.projects-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--color-line);
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all var(--t-base);
    background: var(--color-cream);
}

.projects-tab:hover {
    border-color: var(--color-navy);
    background: var(--color-white);
}

.projects-tab.is-active {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}

.projects-tab-count {
    font-size: 0.7rem;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    background: rgba(12, 20, 38, 0.08);
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.5;
}

.projects-tab.is-active .projects-tab-count {
    background: rgba(250, 247, 242, 0.15);
    color: var(--color-cream);
}

/* Grid */
.projects-listing { background: var(--color-cream); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pg-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--t-base);
    border: 1px solid var(--color-line);
}

.pg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -12px rgba(12, 20, 38, 0.18);
    border-color: var(--color-coral);
}

.pg-card-link {
    display: block;
    color: var(--color-navy);
    position: relative;
}

.pg-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-navy);
}

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

.pg-card:hover .pg-card-image img { transform: scale(1.05); }

.pg-card-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pg-card-status--ongoing {
    background: rgba(242, 142, 107, 0.92);
    color: var(--color-navy);
}

.pg-card-status--completed {
    background: rgba(250, 247, 242, 0.92);
    color: var(--color-navy);
}

.pg-card-status--planning {
    background: rgba(12, 20, 38, 0.85);
    color: var(--color-coral);
    border: 1px solid rgba(242, 142, 107, 0.4);
}
.pg-card-status--planning .pg-card-status-dot {
    background: var(--color-coral);
    animation: pgStatusPulse 1.8s ease-in-out infinite;
}

.pg-card-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.pg-card-status--ongoing .pg-card-status-dot {
    animation: pgStatusPulse 1.8s ease-in-out infinite;
}

@keyframes pgStatusPulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%      { opacity: 0.4; transform: scale(1.3);  }
}

.pg-card-number {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-cream);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.pg-card-body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.pg-card-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.pg-card-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.5;
}

.pg-card-name {
    font-family: var(--font-display);
    font-size: 1.625rem;
    margin: 0 0 0.35rem;
    font-weight: 500;
    color: var(--color-navy);
}

.pg-card-subtitle {
    font-size: 0.95rem;
    color: var(--color-navy);
    opacity: 0.65;
    margin: 0 0 1.25rem;
}

.pg-card-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-navy);
    opacity: 0.75;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-line);
}

.pg-card-location i { color: var(--color-coral); }

.pg-card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.75rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-base);
    opacity: 0;
    transform: translateY(8px);
}

.pg-card:hover .pg-card-arrow {
    opacity: 1;
    transform: translateY(0);
    background: var(--color-coral);
}

/* Empty state */
.projects-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--color-navy);
    opacity: 0.6;
}

.projects-empty i {
    font-size: 3rem;
    color: var(--color-coral);
    margin-bottom: 1rem;
    display: block;
}

.projects-empty h3 { margin-bottom: 0.5rem; }

@media (max-width: 992px) {
    .projects-grid { gap: 1.5rem; }
    .pg-card-name { font-size: 1.4rem; }
}

@media (max-width: 640px) {
    .projects-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .pg-card-body { padding: 1.25rem; }
    .pg-card-name { font-size: 1.25rem; }
    .projects-tabs { gap: 0.4rem; }
    .projects-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
}

/* --------------------------------------------------------------------------
   Proje Detay Sayfası
   -------------------------------------------------------------------------- */
.project-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--color-cream);
    padding-bottom: 5rem;
    padding-top: 8rem;
}

.project-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.project-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,20,38,0.4) 0%, rgba(12,20,38,0.2) 40%, rgba(12,20,38,0.85) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
}

.project-hero-content h1 {
    color: var(--color-cream);
    margin: 1rem 0 0.75rem;
    font-size: clamp(2.5rem, 5.5vw, 5rem);
}

.project-hero-content .eyebrow { color: var(--color-coral); }

.project-hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-cream);
    opacity: 0.9;
    margin: 0;
}

/* KPI bar */
.project-meta-bar {
    background: var(--color-navy);
    color: var(--color-cream);
    padding: 2.5rem 0;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-left: 1px solid rgba(250, 247, 242, 0.15);
    padding-left: 1.5rem;
}

.project-meta-item:first-child { border-left: none; padding-left: 0; }

.project-meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 500;
}

.project-meta-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-cream);
    line-height: 1.1;
}

/* Intro grid */
.project-intro { background: var(--color-cream); }

.project-intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.project-intro-p,
.project-intro-body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-navy);
    opacity: 0.85;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.project-intro-p:first-child::first-letter,
.project-intro-body p:first-child::first-letter {
    font-size: 2.5em;
    font-weight: 500;
    line-height: 0.9;
    float: left;
    margin: 0.1em 0.2em 0 0;
    color: var(--color-coral);
}

/* Proje Galerisi — Büyük Slider (Dış Mekan / İç Mekan / Ortak Alanlar) */
.project-gallery-section {
    background: var(--color-cream);
    padding: clamp(4rem, 8vw, 6rem) 0;
    overflow: hidden;
}

.project-gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.project-gallery-header .eyebrow {
    margin-bottom: 1rem;
}

/* Tabs */
.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--color-line);
    background: var(--color-white);
    color: var(--color-navy);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t-base);
}

.gallery-tab:hover:not(:disabled) {
    border-color: var(--color-navy);
}

.gallery-tab.is-active {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}

.gallery-tab.is-empty {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-tab-count {
    font-size: 0.7rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(12, 20, 38, 0.08);
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.4;
}

.gallery-tab.is-active .gallery-tab-count {
    background: rgba(250, 247, 242, 0.18);
    color: var(--color-cream);
}

.gallery-tab-count--soon {
    background: rgba(242, 142, 107, 0.15);
    color: var(--color-coral);
    font-style: italic;
    font-size: 0.65rem;
    text-transform: lowercase;
}

/* Slider */
.gallery-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 78vh;
    background: var(--color-navy);
    overflow: hidden;
    outline: none;
}

.gallery-slider-track { position: absolute; inset: 0; }

.gallery-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(250, 247, 242, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(250, 247, 242, 0.35);
    color: var(--color-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--t-base);
    font-size: 1.1rem;
}

.gallery-arrow:hover {
    background: var(--color-cream);
    color: var(--color-navy);
    border-color: var(--color-cream);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow--prev { left: 2rem; }
.gallery-arrow--next { right: 2rem; }

/* Counter */
.gallery-counter {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(12, 20, 38, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-cream);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    z-index: 5;
}

.gallery-counter-sep { opacity: 0.5; }

/* Caption bar */
.gallery-caption-bar {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1rem 0.55rem 0.55rem;
    border-radius: 999px;
    background: rgba(12, 20, 38, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-cream);
    font-size: 0.85rem;
    z-index: 5;
    max-width: calc(100% - 12rem);
}

.gallery-caption-label {
    background: var(--color-coral);
    color: var(--color-navy);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.gallery-caption-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .gallery-arrow { width: 46px; height: 46px; }
    .gallery-arrow--prev { left: 1rem; }
    .gallery-arrow--next { right: 1rem; }
    .gallery-counter, .gallery-caption-bar { bottom: 1rem; }
    .gallery-counter { right: 1rem; }
    .gallery-caption-bar { left: 1rem; max-width: calc(100% - 8rem); font-size: 0.78rem; }
}

@media (max-width: 640px) {
    .gallery-slider { aspect-ratio: 4 / 5; }
    .gallery-caption-bar { display: none; }
    .gallery-arrow { width: 40px; height: 40px; font-size: 0.95rem; }
    .gallery-tabs { gap: 0.4rem; }
    .gallery-tab { padding: 0.5rem 1rem; font-size: 0.78rem; }
}

/* Project Features (Villa donanım kartları) */
.project-features { background: var(--color-cream); }
.project-features .section-header { margin-bottom: 3rem; max-width: 720px; }
.project-features .section-header .lead { margin-top: 1rem; opacity: 0.78; }

.project-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-card {
    padding: 1.75rem 1.5rem;
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--color-line);
    transition: all var(--t-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(12, 20, 38, 0.12);
    border-color: var(--color-coral);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all var(--t-base);
}

.feature-card:hover .feature-icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.feature-title {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    font-weight: 500;
}

.feature-text {
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.75;
    margin: 0;
}

@media (max-width: 1100px) { .project-features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .project-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .project-features-grid { grid-template-columns: 1fr; } }

/* Projede Kullanılan Markalar — logo şeridi */
.project-brands { background: var(--color-white); border-top: 1px solid var(--color-line); }
.project-brands .section-header { margin-bottom: 2.75rem; }
.project-brands-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem 3.5rem;
}
.project-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}
.project-brand img {
    height: 54px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.9;
    transition: filter var(--t-base), opacity var(--t-base), transform var(--t-base);
}
.project-brand img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}
.project-brand-name {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-navy);
    opacity: 0.8;
    transition: opacity var(--t-base);
}
.project-brand:hover .project-brand-name { opacity: 1; }
@media (max-width: 640px) {
    .project-brands-grid { gap: 1.75rem 2.5rem; }
    .project-brand img { height: 42px; max-width: 140px; }
    .project-brand-name { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Sürdürülebilirlik sayfası
   -------------------------------------------------------------------------- */
.sustain-intro {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-navy);
}
.sustain-intro p { margin-bottom: 1rem; }
.sustain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.sustain-card {
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.sustain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(12, 20, 38, 0.25);
    border-color: transparent;
}
.sustain-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.14);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.sustain-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.6rem;
    color: var(--color-navy);
}
.sustain-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}
@media (max-width: 900px) { .sustain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sustain-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Ekibimiz sayfası
   -------------------------------------------------------------------------- */
.team-intro {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-navy);
}
.team-intro p { margin-bottom: 1rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.75rem;
}
.team-card { text-align: center; }
.team-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-sand);
    margin-bottom: 1.1rem;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-base);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
}
.team-initials {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-coral);
}
.team-name {
    font-size: 1.15rem;
    margin: 0 0 0.25rem;
    color: var(--color-navy);
}
.team-role {
    font-size: 0.9rem;
    color: var(--color-coral);
    margin: 0;
    letter-spacing: 0.02em;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; } }

/* Daire İç Donanım Özellikleri (Spec Cards) */
.project-specs {
    background: var(--color-cream);
    border-top: 1px solid var(--color-line);
}

.project-specs .section-header {
    text-align: center;
    margin: 0 auto 3.5rem;
    max-width: 720px;
}
.project-specs .section-header .eyebrow { justify-content: center; }
.project-specs .section-header .eyebrow::after {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}
.project-specs .section-header h2 em { color: var(--color-coral); font-style: normal; }
.project-specs .section-header .lead { margin-top: 1rem; opacity: 0.78; }

.project-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.spec-card {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-line);
    padding: 1.75rem;
    transition: all var(--t-base);
}

.spec-card:hover {
    box-shadow: 0 12px 32px -8px rgba(12, 20, 38, 0.1);
    border-color: var(--color-coral);
    transform: translateY(-3px);
}

.spec-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-line);
}

.spec-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all var(--t-base);
}

.spec-card:hover .spec-card-icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.spec-card-title {
    font-size: 1.05rem;
    margin: 0;
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.2;
}

.spec-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.spec-list dt {
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding-top: 0.15rem;
    white-space: nowrap;
}

.spec-list dd {
    margin: 0;
    color: var(--color-navy);
    font-weight: 500;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed var(--color-line);
}

.spec-list dt:last-of-type + dd { border-bottom: none; padding-bottom: 0; }

@media (max-width: 992px) { .project-specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
    .project-specs-grid { grid-template-columns: 1fr; }
    .spec-list { grid-template-columns: 1fr; gap: 0.15rem; }
    .spec-list dt { padding-top: 0.5rem; }
}

/* Ortak Alanlar */
.project-common { background: var(--color-cream); border-top: 1px solid var(--color-line); }

.project-common-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.project-common-text { position: sticky; top: 8rem; }

.project-common-text h2 {
    margin: 1rem 0 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.project-common-text h2 em { color: var(--color-coral); font-style: normal; }

.project-common-text .lead {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 1rem;
    opacity: 0.82;
}

.project-common-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.08);
}

.common-item {
    background: var(--color-white);
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background var(--t-base);
}

.common-item:hover { background: rgba(242, 142, 107, 0.04); }

.common-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all var(--t-base);
}

.common-item:hover .common-item-icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.common-item-content { min-width: 0; flex: 1; }

.common-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.common-item-text {
    font-size: 0.82rem;
    line-height: 1.45;
    opacity: 0.7;
    color: var(--color-navy);
}

@media (max-width: 992px) {
    .project-common-grid { grid-template-columns: 1fr; gap: 2rem; }
    .project-common-text { position: static; }
}

@media (max-width: 640px) {
    .project-common-items { grid-template-columns: 1fr; }
    .common-item { padding: 1.25rem; }
}

/* Location */
.project-location { background: var(--color-cream); }

.project-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.project-location-grid h2 { margin: 1rem 0 1.5rem; }

.project-location-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.project-location-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 0.95rem;
}

.project-location-list i {
    color: var(--color-coral);
    font-size: 1.1rem;
}

.project-location-map {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: var(--color-navy);
}

.project-location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.3) contrast(1.05);
}

/* CTA */
.project-cta {
    background: var(--color-sand);
}
.project-cta .hero-actions { display: inline-flex; }

/* Responsive */
@media (max-width: 992px) {
    .project-meta-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .project-meta-item:nth-child(3) { border-left: none; padding-left: 0; }
    .project-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pg-item--wide { grid-column: span 2; }
    .project-features-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .project-location-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
    .project-meta-grid { grid-template-columns: 1fr; }
    .project-meta-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(250,247,242,0.1); padding-top: 1rem; }
    .project-meta-item:first-child { border-top: none; padding-top: 0; }
    .project-gallery-grid { grid-template-columns: 1fr; }
    .pg-item, .pg-item--tall, .pg-item--wide { aspect-ratio: 4 / 3; grid-row: span 1; grid-column: span 1; }
    .project-features-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-section { background: var(--color-cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.about-content h2 { margin: 1rem 0 1.5rem 0; }
.about-content .lead {
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0.85;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-stat-value {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-coral);
    line-height: 1;
    font-weight: 400;
}

.about-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.about-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

/* --------------------------------------------------------------------------
   Haberler & Duyurular
   -------------------------------------------------------------------------- */
.news-section {
    background: var(--color-cream);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.news-header h2 {
    margin: 1rem 0 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
}
.news-header h2 em { color: var(--color-coral); font-style: normal; }

.news-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    color: var(--color-navy);
    border: 1px solid var(--color-navy);
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: all var(--t-base);
    text-decoration: none;
}
.news-all-link:hover {
    background: var(--color-navy);
    color: var(--color-cream);
}
.news-all-link i { transition: transform var(--t-base); }
.news-all-link:hover i { transform: translateX(3px); }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.news-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    transition: all var(--t-base);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(12, 20, 38, 0.15);
    border-color: var(--color-coral);
}

.news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-navy);
}

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

.news-card:hover .news-card-image img { transform: scale(1.06); }

.news-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-card-category--coral {
    background: rgba(242, 142, 107, 0.92);
    color: var(--color-navy);
}

.news-card-category--navy {
    background: rgba(12, 20, 38, 0.85);
    color: var(--color-cream);
}

.news-card-category--cream {
    background: rgba(250, 247, 242, 0.92);
    color: var(--color-navy);
}

.news-card-body {
    padding: 1.75rem;
}

.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 500;
}
.news-card-date i { color: var(--color-coral); font-size: 0.85rem; }

.news-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-navy);
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-navy);
    opacity: 0.78;
    margin: 0 0 1.5rem;
}

.news-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-coral);
    letter-spacing: 0.04em;
    transition: gap var(--t-base);
}

.news-card:hover .news-card-more {
    gap: 0.75rem;
}

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

@media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .news-card-body { padding: 1.25rem; }
    .news-header { gap: 1.25rem; }
    .news-all-link { padding: 0.55rem 1.1rem; font-size: 0.78rem; }
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section { background: var(--color-sand); }
.cta-section h2 { margin: 1rem 0 1.5rem 0; }
.cta-section .lead { opacity: 0.85; margin-bottom: 2rem; }
.cta-section .hero-actions { display: flex; }

/* --------------------------------------------------------------------------
   Footer — Ortalanmış (Nef tarzı)
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--color-navy);
    color: var(--color-cream);
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    text-align: center;
    padding-bottom: 3rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
    display: block;
    opacity: 0.97;
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(250, 247, 242, 0.22);
    color: var(--color-cream);
    font-size: 0.95rem;
    transition: all var(--t-base);
}

.footer-social-list a:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-cream);
    transition: color var(--t-base);
    letter-spacing: -0.005em;
}

.footer-menu a:hover {
    color: var(--color-coral);
}

.footer-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 2.5rem;
    border: 1px solid rgba(250, 247, 242, 0.3);
    border-radius: 999px;
    color: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all var(--t-base);
}

.footer-phone-pill:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

.footer-phone-pill i {
    font-size: 0.9rem;
}

.footer-emails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    font-size: 0.9rem;
    opacity: 0.55;
}

.footer-emails a {
    color: var(--color-cream);
    transition: opacity var(--t-base), color var(--t-base);
}

.footer-emails a:hover {
    opacity: 1;
    color: var(--color-coral);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    font-size: 0.78rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0.6;
}

.footer-legal li {
    position: relative;
    padding-right: 1.25rem;
}

.footer-legal li:last-child { padding-right: 0; }

.footer-legal li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.45;
    font-weight: 300;
}

.footer-legal a {
    color: var(--color-cream);
    transition: color var(--t-base);
}

.footer-legal a:hover {
    color: var(--color-coral);
}

.footer-credits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
    opacity: 0.55;
}

.footer-credits a {
    color: var(--color-coral);
    transition: opacity var(--t-base);
}

.footer-credits a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-credits-divider { opacity: 0.5; }

/* --------------------------------------------------------------------------
   Pelin AI Widget — Nef tarzı tek-parça pill (avatar pill içine gömülü)
   -------------------------------------------------------------------------- */
.pelin-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    animation: pelinFloat 4.5s ease-in-out infinite;
}

@keyframes pelinFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

/* Ana pill — text + avatar bir bütün */
.pelin-pill {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 0.35rem 0.35rem 0.35rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    box-shadow: none;
    transition: transform var(--t-base);
    font-family: var(--font-sans);
    color: var(--color-cream);
    text-align: left;
    animation: pelinPillIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.2s backwards;
}

@keyframes pelinPillIn {
    from { opacity: 0; transform: translateY(20px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0) scale(1);       }
}

.pelin-pill:hover {
    transform: translateY(-2px);
}

/* Sol: text alanı */
.pelin-pill-text {
    min-width: 0;
    flex: 1;
}

.pelin-pill-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    transition: color var(--t-base);
}

/* AI sparkle ikon — turuncu daire yerine canlı yıldız */
.pelin-ai-sparkle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-coral);
    animation: pelinSparkleSpin 4s ease-in-out infinite;
}

.pelin-ai-sparkle svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.pelin-ai-sparkle .sp {
    fill: currentColor;
    transform-origin: center;
}

.pelin-ai-sparkle .sp-main {
    transform-origin: 12px 12px;
    animation: spMainPulse 2.4s ease-in-out infinite;
}

.pelin-ai-sparkle .sp-2 {
    transform-origin: 19px 8px;
    animation: spTwinkleA 1.8s ease-in-out infinite;
}

.pelin-ai-sparkle .sp-3 {
    transform-origin: 5px 18px;
    animation: spTwinkleB 1.8s ease-in-out infinite 0.6s;
}

@keyframes pelinSparkleSpin {
    0%, 100% { transform: rotate(0deg)  scale(1);    }
    50%      { transform: rotate(12deg) scale(1.06); }
}

@keyframes spMainPulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%      { opacity: 0.85; transform: scale(0.92); }
}

@keyframes spTwinkleA {
    0%, 100% { opacity: 0.85; transform: scale(1);   }
    50%      { opacity: 0.2;  transform: scale(0.5); }
}

@keyframes spTwinkleB {
    0%, 100% { opacity: 0.55; transform: scale(0.7); }
    50%      { opacity: 1;    transform: scale(1.1); }
}

.pelin-pill-msg {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-navy);
    opacity: 0.96;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    max-width: 240px;
    transition: color var(--t-base);
}

/* Zemine göre yazı rengi (JS algılar): koyu zeminde beyaza döner */
.pelin-widget--on-dark .pelin-pill-label,
.pelin-widget--on-dark .pelin-pill-msg {
    color: var(--color-cream);
}

/* Sağ: avatar (pill içine gömülü) */
.pelin-pill-avatar {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
}

.pelin-pill-avatar img,
.pelin-pill-avatar-media {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-cream);
    position: relative;
    z-index: 2;
    display: block;
    background: var(--color-coral);
}

/* Yuvarlak, dinamik hareketli D logosu (Pelin videosunun yerine) */
.pelin-logo-badge {
    background: var(--color-navy);
    object-fit: cover;
    padding: 0;
    animation: pelinLogoBreathe 3.2s ease-in-out infinite;
}

@keyframes pelinLogoBreathe {
    0%, 100% { transform: scale(1)    rotate(0deg);  }
    50%      { transform: scale(1.07) rotate(-4deg); }
}

/* Pulse halkaları */
.pelin-pulse {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0;
    animation: pelinPulse 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: 1;
}

.pelin-pulse--2 { animation-delay: 1.3s; }

@keyframes pelinPulse {
    0%   { transform: scale(1);    opacity: 0.5; }
    80%  { opacity: 0; }
    100% { transform: scale(1.75); opacity: 0;   }
}

/* Online dot */
.pelin-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5ee68c;
    border: 2px solid var(--color-cream);
    box-shadow: 0 0 6px rgba(94, 230, 140, 0.6);
    z-index: 3;
}

/* X — daraltma butonu, pill köşesinden taşar */
.pelin-collapse-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--color-cream);
    border: 1px solid rgba(12, 20, 38, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-muted);
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all var(--t-base);
    z-index: 4;
    padding: 0;
    line-height: 1;
}

.pelin-collapse-btn:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
    transform: scale(1.1);
}

/* ----- Daraltılmış durum: yalnızca avatar görünür ----- */
.pelin-widget[data-pelin-state="collapsed"] .pelin-pill {
    padding: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
}

.pelin-widget[data-pelin-state="collapsed"] .pelin-pill-text {
    width: 0;
    overflow: hidden;
    opacity: 0;
}

.pelin-widget[data-pelin-state="collapsed"] .pelin-pill {
    gap: 0;
}

.pelin-widget[data-pelin-state="collapsed"] .pelin-pill-avatar {
    width: 60px;
    height: 60px;
    box-shadow: 0 10px 32px rgba(12, 20, 38, 0.25);
}

.pelin-widget[data-pelin-state="collapsed"] .pelin-pill-avatar img {
    border-width: 3px;
}

.pelin-widget[data-pelin-state="collapsed"] .pelin-collapse-btn {
    display: none;
}

/* Sohbet açıkken pill'i sakla */
.pelin-widget--chat-open .pelin-pill,
.pelin-widget--chat-open .pelin-collapse-btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity var(--t-base);
}

.ai-widget-panel {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 380px;
    max-width: calc(100vw - 2rem);
    height: 560px;
    max-height: calc(100vh - 8rem);
    background: var(--color-cream);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(12, 20, 38, 0.28);
    z-index: 120;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: aiPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes aiPanelIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.ai-widget-panel[hidden] { display: none; }

/* Panel üzerindeki yüzen kapatma butonu */
.ai-panel-close {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    width: 32px;
    height: 32px;
    background: rgba(12, 20, 38, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 3;
    transition: background var(--t-base), transform var(--t-base);
}

.ai-panel-close:hover {
    background: rgba(12, 20, 38, 0.85);
    transform: scale(1.05);
}

/* --- MARKA BAŞLIK ALANI (sabit Delibaltaoğlu logosu) --- */
.ai-panel-header {
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--color-navy);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.ai-panel-logo {
    height: 44px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
    display: block;
}

.ai-panel-header-name {
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.ai-panel-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #5ee68c;
    border-radius: 50%;
    box-shadow: 0 0 10px #5ee68c;
    animation: aiStatusPulse 2s ease-in-out infinite;
}

@keyframes aiStatusPulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

.ai-widget-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--color-cream);
}

.ai-message { display: flex; }
.ai-message--assistant { justify-content: flex-start; }
.ai-message--user      { justify-content: flex-end;   }

.ai-message-bubble {
    max-width: 100%;
    padding: 0.875rem 1.125rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-wrap: break-word;
    text-align: left;
}

/* Karşılama mesajı — sağa tam genişler, sola yaslı, 2 satırda durur */
.ai-message--welcome {
    width: 100%;
}
.ai-message--welcome .ai-message-bubble {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 0.875rem 1.125rem;
    text-align: left;
    white-space: normal;
}

.ai-message--assistant .ai-message-bubble {
    background: var(--color-white);
    color: var(--color-navy);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(12, 20, 38, 0.06);
}

.ai-message--user .ai-message-bubble {
    background: var(--color-navy);
    color: var(--color-cream);
    border-bottom-right-radius: 4px;
}

.ai-widget-form {
    padding: 1rem;
    background: var(--color-white);
    border-top: 1px solid var(--color-line);
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.ai-widget-input {
    flex: 1;
    border: none;
    background: var(--color-cream);
    padding: 0.75rem 1rem;
    border-radius: 20px;
    resize: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-navy);
    outline: none;
    max-height: 120px;
}

.ai-widget-input::placeholder { color: var(--color-muted); }

.ai-widget-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-coral);
    color: var(--color-navy);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: all var(--t-base);
    flex-shrink: 0;
}
.ai-widget-send i {
    font-size: 0.95rem;
    /* paper-plane icon hafif sola yaslı görünüyor; optik dengeyi düzelt */
    transform: translateX(-1px);
}
.ai-widget-send:hover {
    background: #e87b54;
    transform: scale(1.05);
}
.ai-widget-send:active { transform: scale(0.98); }

/* --------------------------------------------------------------------------
   Çerez Onay Banner'ı
   -------------------------------------------------------------------------- */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 95;
    max-width: 420px;
    background: var(--color-cream);
    border-radius: 14px;
    box-shadow:
        0 20px 60px -10px rgba(12, 20, 38, 0.25),
        0 4px 12px rgba(12, 20, 38, 0.06);
    overflow: hidden;
    animation: cookieSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
    border: 1px solid var(--color-sand);
}

.cookie-consent[hidden] { display: none !important; }

@keyframes cookieSlideIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.cookie-consent-inner {
    padding: 1.25rem 1.25rem 1.125rem;
}

.cookie-consent-content {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.cookie-consent-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.14);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.cookie-consent-body {
    min-width: 0;
}

.cookie-consent-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 0.3rem;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

.cookie-consent-text {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--color-navy);
    opacity: 0.78;
    margin: 0;
}

.cookie-consent-link {
    color: var(--color-coral);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity var(--t-base);
}

.cookie-consent-link:hover { opacity: 0.75; }

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn-cookie {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t-base);
    line-height: 1;
}

.btn-cookie--primary {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}

.btn-cookie--primary:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-navy);
}

.btn-cookie--ghost {
    background: transparent;
    color: var(--color-navy);
    border-color: rgba(12, 20, 38, 0.22);
}

.btn-cookie--ghost:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
}

/* Çerez kapatma animasyonu */
.cookie-consent--closing {
    animation: cookieSlideOut 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes cookieSlideOut {
    from { opacity: 1; transform: translateY(0);    }
    to   { opacity: 0; transform: translateY(20px); }
}

@media (max-width: 640px) {
    .cookie-consent {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
        /* Mobilde Pelin AI'nın üzerinde değil, yan yana — kart sola yapışsın */
    }
    .cookie-consent-actions {
        justify-content: stretch;
    }
    .btn-cookie {
        flex: 1;
        justify-content: center;
    }
}

/* Typing göstergesi */
.ai-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.ai-typing span {
    width: 6px;
    height: 6px;
    background: var(--color-muted);
    border-radius: 50%;
    animation: aiTyping 1.4s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiTyping {
    0%, 60%, 100% { transform: translateY(0);    opacity: 0.4; }
    30%           { transform: translateY(-4px); opacity: 1;   }
}

/* --------------------------------------------------------------------------
   Page Hero (alt sayfalar)
   -------------------------------------------------------------------------- */
.page-hero {
    padding: calc(var(--nav-height) + 6rem) 0 6rem;
    background: var(--color-cream);
}

.page-hero h1 { margin: 1rem 0 1.5rem; }
.page-hero .lead { max-width: 720px; opacity: 0.85; font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   İletişim Sayfası
   -------------------------------------------------------------------------- */
.contact-hero { background: var(--color-cream); padding-bottom: 3rem; }
.contact-hero h1 em { color: var(--color-coral); font-style: normal; }

.contact-section { background: var(--color-cream); padding-top: 3rem; padding-bottom: 5rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

/* Sol: aside */
.contact-aside { position: sticky; top: 7rem; }

.contact-info-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.08);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-navy);
    transition: background var(--t-base);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item:not(.contact-info-item--static):hover {
    background: var(--color-cream);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all var(--t-base);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--color-coral);
    color: var(--color-white);
}

.contact-info-icon--whatsapp {
    background: rgba(37, 211, 102, 0.14);
    color: #25D366;
}
.contact-info-item:hover .contact-info-icon--whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.3;
}

.contact-info-meta {
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 0.1rem;
}

/* Çalışma saatleri */
.contact-hours {
    margin-top: 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.06);
}

.contact-hours-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-line);
}

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--color-navy);
}

.contact-hours-list li span:first-child { opacity: 0.85; }
.contact-hours-list li span:last-child { font-weight: 500; }
.contact-hours-closed { color: var(--color-coral); opacity: 0.85; }

/* Sosyal medya */
.contact-social {
    margin-top: 1.5rem;
    text-align: center;
}

.contact-social-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.contact-social-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.contact-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-line);
    color: var(--color-navy);
    font-size: 1rem;
    transition: all var(--t-base);
}

.contact-social-list a:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-white);
}

/* Sağ: form */
.contact-form-wrap {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.08);
}

.contact-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-line);
}

.contact-form-header h2 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    color: var(--color-navy);
}

.contact-form-header p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
}

/* Harita section */
.contact-map-section {
    position: relative;
    background: var(--color-navy);
}

.contact-map {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.4) contrast(1.05);
}

.contact-map-overlay {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 360px;
    box-shadow: 0 20px 50px -10px rgba(12, 20, 38, 0.3);
    z-index: 2;
}

.contact-map-overlay .eyebrow {
    margin-bottom: 1rem;
}

.contact-map-overlay h3 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
    color: var(--color-navy);
}

.contact-map-overlay p {
    color: var(--color-muted);
    margin: 0 0 1.5rem;
    font-size: 0.92rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-aside { position: static; }
    .contact-form-wrap { padding: 1.75rem; }
    .contact-map-overlay {
        left: 1.5rem;
        right: 1.5rem;
        max-width: none;
        padding: 1.5rem;
    }
    .contact-map { height: 580px; }
}

@media (max-width: 640px) {
    .contact-form-wrap { padding: 1.25rem; }
    .contact-info-item { padding: 1rem 1.25rem; }
}

/* --------------------------------------------------------------------------
   Yasal Sayfalar (Gizlilik, KVKK, Çerez, vb.)
   -------------------------------------------------------------------------- */
.legal-hero {
    background: var(--color-cream);
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-line);
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.legal-section { background: var(--color-cream); padding-top: 4rem; }

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sticky sidebar */
.legal-toc {
    position: sticky;
    top: 7rem;
    font-size: 0.875rem;
}

.legal-toc-title {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.legal-toc ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-left: 1px solid var(--color-line);
}

.legal-toc ul li { margin: 0; }

.legal-toc ul a {
    display: block;
    padding: 0.55rem 1rem;
    color: var(--color-navy);
    border-left: 2px solid transparent;
    margin-left: -1px;
    opacity: 0.75;
    transition: all var(--t-base);
    font-size: 0.875rem;
}

.legal-toc ul a:hover,
.legal-toc ul a.is-active {
    opacity: 1;
    color: var(--color-coral);
    border-left-color: var(--color-coral);
    background: rgba(242, 142, 107, 0.04);
}

.legal-toc-contact {
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-line);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-toc-contact strong {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-coral);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.legal-toc-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-navy);
    opacity: 0.8;
    transition: opacity var(--t-base);
}

.legal-toc-contact a:hover { opacity: 1; color: var(--color-coral); }

/* Content typography */
.legal-content {
    max-width: 760px;
    color: var(--color-navy);
    font-size: 0.975rem;
    line-height: 1.75;
}

.legal-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 2.5rem;
    color: var(--color-navy);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 3rem 0 1rem;
    scroll-margin-top: 7rem;
    color: var(--color-navy);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 2rem 0 0.75rem;
    color: var(--color-navy);
}

.legal-content p {
    margin: 0 0 1.25rem;
    opacity: 0.9;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.5rem;
    padding-left: 1.25rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Haber detay (blog) sayfası
   -------------------------------------------------------------------------- */
.news-detail-hero { text-align: center; }
.news-detail-hero h1 { max-width: 860px; margin-left: auto; margin-right: auto; }
.news-detail-cover { margin-bottom: 0.5rem; }
.news-detail-cover .container-x { max-width: 980px; }
.news-detail-cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.news-detail-body { margin-left: auto; margin-right: auto; }
.news-detail-excerpt {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-navy);
    opacity: 1;
    padding-bottom: 1.5rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-line);
}
.news-detail-back {
    max-width: 760px;
    margin: 3rem auto 0;
    text-align: center;
}

.legal-content ul { list-style: none; padding-left: 0; }
.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
}
.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--color-coral);
    border-radius: 50%;
}

.legal-content ol { list-style: decimal; }

.legal-content a {
    color: var(--color-coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong { font-weight: 500; }
.legal-content code {
    background: rgba(12, 20, 38, 0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.875em;
}

/* Eski stil (geriye uyum) */
.legal-info-list {
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0 !important;
}
.legal-info-list li::before { display: none !important; }
.legal-info-list li {
    padding-left: 0 !important;
    margin-bottom: 0.5rem;
}

/* Yeni şık tasarım — 2x2 grid, ikonlu */
.legal-info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--color-line);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.75rem 0 2.5rem !important;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.08);
}

.legal-info-item {
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    transition: background var(--t-base);
}

.legal-info-item:hover {
    background: var(--color-cream);
}

.legal-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.legal-info-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 0.2rem;
}

.legal-info-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
    line-height: 1;
}

.legal-info-value {
    font-size: 0.95rem;
    color: var(--color-navy);
    font-weight: 500;
    word-break: break-word;
    line-height: 1.4;
}

.legal-info-value--muted {
    color: var(--color-muted);
    font-weight: 400;
    font-style: italic;
}

.legal-info-value a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--t-base);
}
.legal-info-value a:hover { color: var(--color-coral); }

@media (max-width: 640px) {
    .legal-info-card { grid-template-columns: 1fr; }
}

.legal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0 2.5rem;
    font-size: 0.9rem;
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px -8px rgba(12, 20, 38, 0.08);
}

.legal-table th,
.legal-table td {
    padding: 0.95rem 1.25rem;
    text-align: left;
    vertical-align: top;
}

.legal-table thead th {
    background: var(--color-navy);
    color: var(--color-cream);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.95;
}

.legal-table tbody td { border-top: 1px solid var(--color-line); }
.legal-table tbody tr:first-child td { border-top: none; }

.legal-table tbody tr:nth-child(even) td { background: rgba(232, 223, 210, 0.18); }

.legal-table tbody tr:hover td { background: rgba(242, 142, 107, 0.06); }

.legal-table td:first-child {
    font-weight: 500;
    color: var(--color-navy);
    white-space: nowrap;
    width: 200px;
}

.legal-footer-note {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-line);
    font-size: 0.85rem;
    color: var(--color-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .legal-toc {
        position: static;
        background: var(--color-white);
        padding: 1.5rem;
        border-radius: 6px;
        border: 1px solid var(--color-line);
    }
    .legal-toc ul { border-left: none; }
    .legal-toc ul a { border-left: none; padding: 0.4rem 0; }
}

@media (max-width: 640px) {
    .legal-table { font-size: 0.82rem; }
    .legal-table th, .legal-table td { padding: 0.6rem 0.75rem; }
    .legal-table td:first-child { white-space: normal; width: auto; }
}

/* --------------------------------------------------------------------------
   Hakkımızda Sayfası — Premium, dinamik, görselli
   -------------------------------------------------------------------------- */

/* About Hero */
.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-cream);
}

.about-hero-media { position: absolute; inset: 0; z-index: 0; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 20, 38, 0.7) 0%, rgba(12, 20, 38, 0.35) 50%, rgba(12, 20, 38, 0.75) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 6rem 0 4rem;
}

.about-hero-content h1 {
    font-size: clamp(2.75rem, 7vw, 6rem);
    color: var(--color-cream);
    margin: 1.5rem 0 1.5rem;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.025em;
}
.about-hero-content h1 em { color: var(--color-coral); font-style: normal; }

.about-hero-content .lead {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--color-cream);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.about-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-cream);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.85;
    transition: all var(--t-base);
}
.about-hero-scroll:hover { opacity: 1; color: var(--color-coral); transform: translateY(2px); }
.about-hero-scroll i { animation: aboutScrollBounce 1.8s ease-in-out infinite; }
@keyframes aboutScrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Story */
.about-story { background: var(--color-cream); }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.about-story-meta { position: sticky; top: 8rem; }

.about-story-mark {
    width: 80px;
    height: 80px;
    margin: 2rem 0;
    opacity: 0.15;
}
.about-story-mark img { width: 100%; height: 100%; object-fit: contain; }

.about-story-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-coral);
    line-height: 1.3;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--color-coral);
}

.about-story-body h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-story-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.about-story-lead::first-letter {
    font-size: 3em;
    font-weight: 500;
    line-height: 0.85;
    float: left;
    margin: 0.1em 0.2em 0 0;
    color: var(--color-coral);
}

.about-story-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-navy);
    opacity: 0.88;
    margin-bottom: 1rem;
}

.about-story-body strong { font-weight: 500; color: var(--color-coral); }

/* Numbers */
.about-numbers {
    background: var(--color-navy);
    color: var(--color-cream);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.about-numbers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 142, 107, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-numbers-header { text-align: center; margin-bottom: 4rem; }
.about-numbers-header .eyebrow { color: var(--color-coral); justify-content: center; }
.about-numbers-header h2 { color: var(--color-cream); margin-top: 1rem; }

.about-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.about-number {
    text-align: center;
    padding: 2rem 1rem;
    border-left: 1px solid rgba(250, 247, 242, 0.12);
}
.about-number:first-child { border-left: none; }

.about-number-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 500;
    color: var(--color-coral);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.about-number-label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream);
    opacity: 0.85;
}

/* Values */
.about-values { background: var(--color-cream); }
.about-values .section-header { margin-bottom: 4rem; }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-value-card {
    position: relative;
    padding: 2.5rem 1.75rem 2rem;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-line);
    transition: all var(--t-base);
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(12, 20, 38, 0.16);
    border-color: var(--color-coral);
}

.about-value-card:hover::before { transform: scaleX(1); }

.about-value-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-coral);
    opacity: 0.08;
    line-height: 1;
    transition: opacity var(--t-base);
}
.about-value-card:hover .about-value-num { opacity: 0.2; }

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(242, 142, 107, 0.12);
    color: var(--color-coral);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--t-base);
}
.about-value-card:hover .about-value-icon { background: var(--color-coral); color: var(--color-white); transform: scale(1.05); }

.about-value-card h3 {
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
    font-weight: 500;
}

.about-value-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-navy);
    opacity: 0.78;
    margin: 0;
}

/* Timeline */
.about-timeline { background: var(--color-sand); }
.about-timeline .section-header { margin-bottom: 4rem; }

.about-timeline-line {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.about-timeline-line::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-line);
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: 92px;
    top: 2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-coral);
    border: 4px solid var(--color-sand);
    z-index: 2;
}

.about-timeline-item--future::before {
    background: var(--color-sand);
    border: 2px dashed var(--color-coral);
}

.about-timeline-year {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-coral);
    line-height: 1;
    padding-top: 1.2rem;
    text-align: right;
}

.about-timeline-item--future .about-timeline-year { opacity: 0.6; }

.about-timeline-content {
    background: var(--color-cream);
    padding: 1.5rem 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--color-line);
}

.about-timeline-item--future .about-timeline-content { background: transparent; border-style: dashed; }

.about-timeline-content h4 {
    font-size: 1.2rem;
    margin: 0 0 0.4rem;
    color: var(--color-navy);
}

.about-timeline-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-navy);
    opacity: 0.78;
    margin: 0;
}

/* Process */
.about-process { background: var(--color-cream); }

.about-process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}
.about-process-header h2 em { color: var(--color-coral); font-style: normal; }
.about-process-header .lead { margin-top: 1rem; opacity: 0.82; }

.about-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    position: relative;
}

.about-process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--color-line);
    z-index: 1;
}

.process-step {
    text-align: center;
    background: var(--color-cream);
    padding: 0 0.5rem;
    position: relative;
    z-index: 2;
}

.process-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-coral);
    font-weight: 500;
    margin: 0 auto 1.5rem;
    transition: all var(--t-base);
}

.process-step:hover .process-step-num {
    background: var(--color-coral);
    color: var(--color-cream);
    border-color: var(--color-coral);
    transform: scale(1.08);
}

.process-step h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.process-step p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-navy);
    opacity: 0.75;
    margin: 0;
}

/* Mediterranean */
.about-mediterranean {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-cream);
    padding: 5rem 0;
}

.about-mediterranean-media { position: absolute; inset: 0; z-index: 0; }
.about-mediterranean-media img { width: 100%; height: 100%; object-fit: cover; }
.about-mediterranean-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 20, 38, 0.92) 0%, rgba(12, 20, 38, 0.65) 60%, rgba(12, 20, 38, 0.2) 100%);
}

.about-mediterranean-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.about-mediterranean-content h2 {
    color: var(--color-cream);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin: 1rem 0 1.5rem;
}
.about-mediterranean-content h2 em { color: var(--color-coral); font-style: normal; }

.about-mediterranean-content .lead {
    color: var(--color-cream);
    opacity: 0.92;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-story-meta { position: static; }
    .about-numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .about-number:nth-child(odd) { border-left: none; }
    .about-number:nth-child(3) { border-top: 1px solid rgba(250, 247, 242, 0.12); padding-top: 2rem; }
    .about-number:nth-child(4) { border-top: 1px solid rgba(250, 247, 242, 0.12); padding-top: 2rem; }
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-process-steps { grid-template-columns: repeat(2, 1fr); }
    .about-process-steps::before { display: none; }
    .about-timeline-line::before { left: 24px; }
    .about-timeline-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
    .about-timeline-item::before { left: 16px; }
    .about-timeline-year { font-size: 1.4rem; text-align: left; padding-top: 1rem; }
}

@media (max-width: 640px) {
    .about-hero { min-height: 70vh; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-process-steps { grid-template-columns: 1fr; }
    .about-numbers-grid { grid-template-columns: 1fr; gap: 1rem; }
    .about-number { border: none !important; padding: 1.25rem; border-top: 1px solid rgba(250, 247, 242, 0.12) !important; }
    .about-number:first-child { border-top: none !important; }
}

/* --------------------------------------------------------------------------
   İnsan Kaynakları Sayfası
   -------------------------------------------------------------------------- */
.hr-hero { padding-bottom: 4rem; }

.hr-section { background: var(--color-cream); padding-top: 4rem; }

.hr-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.hr-aside { position: sticky; top: 8rem; }
.hr-aside h2 { margin: 1rem 0 2rem; }

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

.hr-values li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-line);
}

.hr-values li:last-child { border-bottom: none; }

.hr-values i {
    color: var(--color-coral);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.hr-values strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--color-navy);
}

.hr-values span {
    font-size: 0.9rem;
    line-height: 1.55;
    opacity: 0.75;
    color: var(--color-navy);
}

/* ---- Form ---- */
.hr-form-wrap {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-line);
}

.hr-form-section-title {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-sans);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-row .form-field { margin-bottom: 0; }

.form-field label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-navy);
    opacity: 0.75;
}

.form-field .req { color: var(--color-coral); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: var(--color-cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-navy);
    transition: border-color var(--t-base), background var(--t-base);
    box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-coral);
    background: var(--color-white);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c1426'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

/* Dosya yükleme */
.form-field--file .file-input-wrap {
    position: relative;
}

.form-field--file input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-input-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    border: 1.5px dashed var(--color-line);
    border-radius: 6px;
    background: var(--color-cream);
    cursor: pointer;
    transition: all var(--t-base);
    text-align: center;
}

.file-input-label:hover {
    border-color: var(--color-coral);
    background: var(--color-white);
}

.file-input-label i {
    font-size: 1.75rem;
    color: var(--color-coral);
}

.file-input-text {
    font-size: 0.95rem;
    color: var(--color-navy);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.file-input-hint {
    font-size: 0.78rem;
    color: var(--color-muted);
}

.has-file .file-input-label {
    border-style: solid;
    border-color: var(--color-coral);
    background: rgba(242, 142, 107, 0.06);
}

/* Checkbox */
.form-field--check label { padding: 0; }

.form-check {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--color-coral);
    flex-shrink: 0;
    cursor: pointer;
}

.form-check span {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--color-navy);
    opacity: 0.85;
    font-weight: 400;
}

.form-check a {
    color: var(--color-coral);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Actions */
.form-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-line);
}

/* Alerts */
.form-alert {
    display: flex;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-alert i { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

.form-alert--success {
    background: rgba(94, 230, 140, 0.1);
    border: 1px solid rgba(94, 230, 140, 0.3);
    color: #2c5e3f;
}
.form-alert--success i { color: #2c8a4d; }

.form-alert--error {
    background: rgba(220, 78, 78, 0.08);
    border: 1px solid rgba(220, 78, 78, 0.25);
    color: #8a2c2c;
}
.form-alert--error i { color: #c04040; }

.form-alert strong { display: block; margin-bottom: 0.25rem; }
.form-alert span { display: block; opacity: 0.9; }

@media (max-width: 992px) {
    .hr-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hr-aside { position: static; }
    .hr-form-wrap { padding: 1.75rem; }
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; gap: 1.25rem; }
    .hr-form-wrap { padding: 1.25rem; }
}

/* --------------------------------------------------------------------------
   Admin (basit iskelet)
   -------------------------------------------------------------------------- */
.admin-body { background: var(--color-cream); }
.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--color-navy);
}
.admin-login-card {
    background: var(--color-cream);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    border-radius: 4px;
}
.admin-login-title {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}
.admin-sidebar {
    background: var(--color-navy);
    color: var(--color-cream);
    padding: 2rem 1rem;
}
.admin-brand {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-coral);
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.admin-sidebar nav { display: flex; flex-direction: column; gap: 0.25rem; }
.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-cream);
    opacity: 0.75;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all var(--t-base);
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(250, 247, 242, 0.06);
    opacity: 1;
    color: var(--color-coral);
}
.admin-main { padding: 3rem; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .fp-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .admin-shell { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
    .nav-links { gap: 1.5rem; }
    .nav-left  { gap: 1.75rem; }
    .nav-right { gap: 0.85rem; }
}

@media (max-width: 991px) {
    .nav-primary { display: none; }
}

@media (max-width: 640px) {
    .nav-lang { display: none; }
    .nav-social { display: none; }
    .nav-links { display: none; }
    .pelin-widget { bottom: 1.25rem; right: 1.25rem; }
    .pelin-pill-msg { max-width: 160px; font-size: 0.82rem; }
    .hero { padding-bottom: 8rem; }
    .hero-slide-content { padding-bottom: 8rem; }
    .hero-cta-pill { padding: 0.75rem 1.5rem; font-size: 0.82rem; }
    .hero-arrow { width: 40px; height: 40px; }
    .hero-controls { gap: 0.75rem; }
    .hero-content h1 { font-size: 2.75rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    .gallery-item--tall { grid-row: span 1; }
    .footer-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-menu a { font-size: 1.15rem; }
    .footer-logo img { height: 44px; }
    .footer-legal { gap: 0.5rem 0; font-size: 0.72rem; flex-direction: column; }
    .footer-legal li { padding-right: 0; }
    .footer-legal li::after { display: none; }
    .footer-credits { font-size: 0.72rem; flex-direction: column; gap: 0.35rem; }
    .footer-credits-divider { display: none; }
    .fp-meta {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .ai-widget-panel {
        right: 1rem;
        bottom: 6rem;
        width: calc(100vw - 2rem);
    }
}
