/* =========================================
   AKDENİZ TADİLAT – ANA STİL DOSYASI
   ========================================= */

:root {
    --renk-birincil: #C8860A;
    --renk-birincil-koyu: #A56D07;
    --renk-birincil-acik: #F5B731;
    --renk-ikincil: #1A2B3C;
    --renk-ikincil-acik: #2C3E50;
    --renk-yazi: #1A2B3C;
    --renk-yazi-hafif: #5A6A7A;
    --renk-arka: #F8F6F2;
    --renk-beyaz: #FFFFFF;
    --renk-sinir: #E5DDD0;
    --renk-basari: #27AE60;
    --yuvarlak-kucuk: 6px;
    --yuvarlak: 12px;
    --yuvarlak-buyuk: 20px;
    --golge-hafif: 0 2px 12px rgba(26,43,60,.08);
    --golge: 0 4px 24px rgba(26,43,60,.12);
    --golge-guclu: 0 8px 40px rgba(26,43,60,.18);
    --gecis: all .25s ease;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--renk-yazi);
    background: var(--renk-beyaz);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--gecis); }
ul { list-style: none; }
svg { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.konteyner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BUTONLAR === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--yuvarlak);
    font-weight: 600;
    font-size: .95rem;
    transition: var(--gecis);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-birincil {
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    border-color: var(--renk-birincil);
}
.btn-birincil:hover {
    background: var(--renk-birincil-koyu);
    border-color: var(--renk-birincil-koyu);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,134,10,.35);
}

.btn-ikincil {
    background: rgba(255,255,255,.15);
    color: var(--renk-beyaz);
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
}
.btn-ikincil:hover {
    background: rgba(255,255,255,.25);
    border-color: var(--renk-beyaz);
}

.btn-cerceve {
    background: transparent;
    color: var(--renk-birincil);
    border-color: var(--renk-birincil);
}
.btn-cerceve:hover {
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
}

.btn-beyaz {
    background: var(--renk-beyaz);
    color: var(--renk-birincil);
    border-color: var(--renk-beyaz);
}
.btn-beyaz:hover {
    background: transparent;
    color: var(--renk-beyaz);
}

.btn-seffaf {
    background: transparent;
    color: var(--renk-beyaz);
    border-color: rgba(255,255,255,.6);
}
.btn-seffaf:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--renk-beyaz);
}

/* === ÜST BİLGİ ÇUBUĞU === */
.ust-bilgi {
    background: var(--renk-ikincil);
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    padding: 8px 0;
}
.ust-bilgi-icerik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.ust-iletisim {
    display: flex;
    gap: 20px;
}
.ust-iletisim a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.8);
}
.ust-iletisim a:hover { color: var(--renk-birincil-acik); }
.ust-iletisim svg { width: 14px; height: 14px; }

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--renk-beyaz);
    box-shadow: var(--golge-hafif);
    transition: box-shadow .25s ease;  /* "all" yerine sadece box-shadow —
                                          "all" header'da transform transition
                                          oluşturur ve fixed child'ları kırar */
}
.site-header.kayan { box-shadow: var(--golge); }

.navigasyon {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-sembol {
    width: 44px;
    height: 44px;
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    border-radius: var(--yuvarlak);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.logo-yazi strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--renk-ikincil);
    line-height: 1.1;
}
.logo-yazi span {
    display: block;
    font-size: .75rem;
    color: var(--renk-birincil);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.logo-beyaz .logo-yazi strong { color: var(--renk-beyaz); }
.logo-beyaz .logo-yazi span { color: var(--renk-birincil-acik); }

.ana-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.ana-menu > li { position: relative; }
.ana-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-weight: 500;
    font-size: .9rem;
    color: var(--renk-yazi);
    border-radius: var(--yuvarlak-kucuk);
}
.ana-menu > li > a svg { width: 14px; height: 14px; transition: transform .2s; }
.ana-menu > li > a:hover,
.ana-menu > li > a.aktif {
    color: var(--renk-birincil);
    background: rgba(200,134,10,.08);
}
.ana-menu > li:hover > a svg { transform: rotate(180deg); }

/* ── MEGA MENÜ ── */
.mega-ust { position: static !important; }

.mega-ust:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: 720px;
    background: var(--renk-beyaz);
    border-radius: var(--yuvarlak-buyuk);
    box-shadow: var(--golge-guclu);
    border: 1px solid var(--renk-sinir);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 999;
    overflow: hidden;
}
.mega-ust:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.mega-kolon {
    padding: 24px 20px;
    border-right: 1px solid var(--renk-sinir);
}
.mega-kolon:last-child { border-right: none; }

.mega-kolon-ozel { background: var(--renk-arka); }

.mega-kolon-baslik {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--renk-birincil);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--renk-sinir);
}
.mega-kolon-baslik svg { width: 13px; height: 13px; flex-shrink: 0; }

.mega-kolon ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mega-kolon ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    font-size: .84rem;
    font-weight: 500;
    color: var(--renk-yazi);
    border-radius: var(--yuvarlak-kucuk);
    transition: var(--gecis);
}
.mega-kolon ul li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--renk-sinir);
    flex-shrink: 0;
    transition: background .2s;
}
.mega-kolon ul li a:hover {
    background: rgba(200,134,10,.07);
    color: var(--renk-birincil);
}
.mega-kolon ul li a:hover::before { background: var(--renk-birincil); }

.mega-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--renk-sinir);
    text-align: center;
}
.mega-cta p {
    font-size: .75rem;
    color: var(--renk-yazi-hafif);
    margin-bottom: 10px;
    font-weight: 500;
}

.header-cta { justify-self: end; padding: 10px 20px; }

.mobil-menu-dugme {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    justify-self: end;
    grid-column: 3;
}
.mobil-menu-dugme span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--renk-yazi);
    transition: var(--gecis);
    border-radius: 2px;
}
.mobil-menu-dugme.aktif span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobil-menu-dugme.aktif span:nth-child(2) { opacity: 0; }
.mobil-menu-dugme.aktif span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === BÖLÜM BAŞLIK === */
.bolum-baslik {
    text-align: center;
    margin-bottom: 56px;
}
.bolum-baslik h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--renk-ikincil);
    margin-bottom: 16px;
    line-height: 1.2;
}
.bolum-baslik p {
    font-size: 1.05rem;
    color: var(--renk-yazi-hafif);
    max-width: 560px;
    margin: 0 auto;
}
.ust-etiket {
    display: inline-block;
    background: rgba(200,134,10,.1);
    color: var(--renk-birincil);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--renk-ikincil) 0%, #0D1B2A 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 60%, rgba(200,134,10,.18) 0%, transparent 65%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/slider.jpg') center/cover no-repeat;
    opacity: .2;
}
.hero-icerik {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 24px 110px;
    color: var(--renk-beyaz);
    text-align: center;
}
.hero-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,134,10,.2);
    border: 1px solid rgba(200,134,10,.4);
    color: var(--renk-birincil-acik);
    font-size: .82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--renk-birincil-acik); }
.hero p {
    font-size: clamp(.95rem, 2vw, 1.08rem);
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.hero-butonlar { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.hero-istatistik {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
}
.istat-kalem strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--renk-birincil-acik);
    line-height: 1;
}
.istat-kalem span { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }
.istat-ayrac { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    white-space: nowrap;
}
.scroll-ok {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scroll-animasyon 1.5s ease-in-out infinite;
}
@keyframes scroll-animasyon {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: .5; transform: scaleY(.7); }
}

/* === GÜVEN ÇUBUĞU === */
.guven-cubugu {
    background: var(--renk-ikincil);
    padding: 20px 0;
}
.guven-liste {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.guven-kalem {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 500;
}
.guven-kalem svg { width: 18px; height: 18px; color: var(--renk-birincil-acik); }

/* === HİZMETLER === */
.hizmetler { padding: 100px 0; background: var(--renk-arka); }

/* Kategori tabları */
.hizmet-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    background: var(--renk-beyaz);
    padding: 8px;
    border-radius: var(--yuvarlak-buyuk);
    border: 1px solid var(--renk-sinir);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.hizmet-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--yuvarlak);
    font-family: var(--font);
    cursor: pointer;
    transition: var(--gecis);
    color: var(--renk-yazi-hafif);
}
.hizmet-tab:hover { background: var(--renk-arka); color: var(--renk-yazi); }
.hizmet-tab.aktif { background: var(--renk-ikincil); color: var(--renk-beyaz); }
.hizmet-tab .ht-ikon {
    width: 36px; height: 36px;
    border-radius: var(--yuvarlak-kucuk);
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hizmet-tab:not(.aktif) .ht-ikon { background: var(--renk-arka); }
.hizmet-tab .ht-ikon svg { width: 17px; height: 17px; color: var(--renk-birincil); }
.hizmet-tab.aktif .ht-ikon svg { color: var(--renk-birincil-acik); }
.hizmet-tab strong { display: block; font-size: .9rem; font-weight: 700; line-height: 1.2; }
.hizmet-tab span { display: block; font-size: .72rem; opacity: .7; }

/* Tab içerikleri */
.hizmet-tab-icerik { display: none; animation: adim-giris .22s ease; }
.hizmet-tab-icerik.aktif { display: block; }

/* Yeni kart grid */
.hizmet-grid-yeni {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hizmet-grid-uc { grid-template-columns: repeat(3, 1fr); }

/* Hizmet kartı */
.hk {
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak-buyuk);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--gecis);
    position: relative;
    overflow: hidden;
}
.hk::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--renk-birincil), var(--renk-birincil-acik));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.hk:hover { transform: translateY(-5px); box-shadow: var(--golge-guclu); border-color: transparent; }
.hk:hover::after { transform: scaleX(1); }

.hk-ust {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
}
.hk-ikon {
    width: 48px; height: 48px;
    background: rgba(200,134,10,.08);
    border-radius: var(--yuvarlak);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hk-ikon svg { width: 22px; height: 22px; color: var(--renk-birincil); }

.hk-rozet {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--renk-birincil);
    background: rgba(200,134,10,.1);
    padding: 3px 9px;
    border-radius: 50px;
    align-self: flex-start;
    margin-top: 4px;
}

.hk h3 { font-size: 1rem; font-weight: 800; color: var(--renk-ikincil); line-height: 1.25; }
.hk p  { font-size: .83rem; color: var(--renk-yazi-hafif); line-height: 1.6; flex: 1; }

.hk-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
}
.hk-liste li {
    font-size: .78rem;
    color: var(--renk-yazi-hafif);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hk-liste li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--renk-birincil);
    flex-shrink: 0;
    opacity: .6;
}

.devami {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--renk-birincil);
    margin-top: 4px;
}
.devami svg { width: 15px; height: 15px; transition: transform .2s; }
.hk:hover .devami svg { transform: translateX(4px); }

.hk-buyuk { /* Özel projeler kartları biraz daha bol */  padding: 32px; }

.hizmet-cta { text-align: center; margin-top: 40px; }

/* Yorum ekle butonu – bolum-baslik içinde */
.bolum-baslik .yorum-ekle-btn {
    margin-top: 16px;
    font-size: .85rem;
    padding: 10px 20px;
}

/* Yıldız seçici */
.yorum-modal-kutu { max-width: 540px; }

.yildiz-secici {
    display: flex;
    gap: 6px;
}
.yildiz-secici button {
    font-size: 2rem;
    line-height: 1;
    color: var(--renk-sinir);
    transition: color .15s, transform .15s;
    padding: 0 2px;
}
.yildiz-secici button:hover,
.yildiz-secici button.aktif { color: var(--renk-birincil); }
.yildiz-secici button:hover { transform: scale(1.15); }

/* === NEDEN BİZ === */
.neden-biz { padding: 100px 0; }
.neden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.gorsel-cerceve {
    position: relative;
    border-radius: var(--yuvarlak-buyuk);
    overflow: hidden;
}
.gorsel-cerceve img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--yuvarlak-buyuk);
}
.gorsel-cerceve::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,134,10,.15), transparent);
    border-radius: var(--yuvarlak-buyuk);
    z-index: 1;
}
.yil-rozet {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    text-align: center;
    padding: 16px 20px;
    border-radius: var(--yuvarlak);
    box-shadow: var(--golge);
    z-index: 2;
}
.yil-rozet strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.yil-rozet span { font-size: .8rem; font-weight: 500; opacity: .9; }

.neden-icerik h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--renk-ikincil);
    margin-bottom: 16px;
    line-height: 1.2;
}
.neden-icerik > p {
    color: var(--renk-yazi-hafif);
    margin-bottom: 32px;
    font-size: 1.02rem;
}
.ozellik-liste { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.ozellik-liste li { display: flex; gap: 16px; align-items: flex-start; }
.ozellik-ikon {
    width: 36px;
    height: 36px;
    background: rgba(200,134,10,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.ozellik-ikon svg { width: 18px; height: 18px; color: var(--renk-birincil); }
.ozellik-liste h4 { font-size: .95rem; font-weight: 700; color: var(--renk-ikincil); margin-bottom: 4px; }
.ozellik-liste p { font-size: .85rem; color: var(--renk-yazi-hafif); line-height: 1.6; }

/* === PROJELER ÖNİZLEME === */
.foto-galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.foto-galeri-kart {
    display: block;
    border-radius: var(--yuvarlak);
    overflow: hidden;
    background: var(--renk-sinir);
    aspect-ratio: 4 / 3;
    position: relative;
}
.foto-galeri-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.foto-galeri-kart:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal CSS */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-modal.acik {
    opacity: 1;
    visibility: visible;
}
.lightbox-kapat {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    z-index: 2001;
    transition: transform 0.2s;
}
.lightbox-kapat:hover {
    transform: scale(1.1);
}
.lightbox-icerik {
    position: relative;
    max-width: 95%;
    max-height: 95vh;
}
.lightbox-icerik img {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    object-fit: contain;
    display: block;
}

.projeler-onizleme { padding: 100px 0; background: var(--renk-arka); }
.proje-galeri {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.proje-kart {
    position: relative;
    border-radius: var(--yuvarlak);
    overflow: hidden;
    cursor: pointer;
    background: var(--renk-sinir);
}
.proje-kart.buyuk { grid-column: 1 / 3; grid-row: 1 / 3; }
.proje-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform .4s ease;
}
.proje-kart.buyuk img { min-height: 400px; }
.proje-kart:hover img { transform: scale(1.05); }
.proje-bilgi {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: var(--renk-beyaz);
    transform: translateY(4px);
    transition: transform .3s;
}
.proje-kart:hover .proje-bilgi { transform: translateY(0); }
.proje-bilgi span { font-size: .75rem; font-weight: 600; color: var(--renk-birincil-acik); text-transform: uppercase; letter-spacing: 1px; }
.proje-bilgi h3 { font-size: .95rem; font-weight: 700; margin-top: 4px; }

.galeri-alt-aksiyon {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

/* === SÜREÇ === */
.surec { padding: 100px 0; background: var(--renk-ikincil); color: var(--renk-beyaz); }
.surec .bolum-baslik h2 { color: var(--renk-beyaz); }
.surec .bolum-baslik p { color: rgba(255,255,255,.6); }
.surec-adimlar {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.adim {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--yuvarlak-buyuk);
    padding: 32px 24px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}
.adim-numara {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--renk-birincil);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.adim h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.adim p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.adim-ok svg { width: 24px; height: 24px; color: rgba(255,255,255,.3); }

/* === YORUMLAR === */
.yorumlar { padding: 100px 0; }
.yorum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.yorum-kart {
    background: var(--renk-arka);
    border-radius: var(--yuvarlak-buyuk);
    padding: 32px;
    border: 1px solid var(--renk-sinir);
    transition: var(--gecis);
}
.yorum-kart:hover { box-shadow: var(--golge); transform: translateY(-4px); }
.yorum-kart.one-cikan {
    background: var(--renk-ikincil);
    color: var(--renk-beyaz);
    border-color: var(--renk-ikincil);
}
.yorum-kart.one-cikan p { color: rgba(255,255,255,.8); }
.yildizlar { color: var(--renk-birincil); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.yorum-kart p { font-size: .9rem; line-height: 1.7; color: var(--renk-yazi-hafif); margin-bottom: 24px; font-style: italic; }
.yorum-kisi { display: flex; align-items: center; gap: 12px; }
.kisi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.yorum-kisi strong { display: block; font-size: .9rem; font-weight: 700; }
.yorum-kisi span { font-size: .8rem; color: var(--renk-yazi-hafif); }
.one-cikan .yorum-kisi span { color: rgba(255,255,255,.5); }

/* === CTA BANNER === */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--renk-birincil) 0%, var(--renk-birincil-koyu) 100%);
}
.cta-icerik { text-align: center; color: var(--renk-beyaz); }
.cta-icerik h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.cta-icerik p { font-size: 1.05rem; opacity: .85; margin-bottom: 36px; }
.cta-butonlar { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer { background: #0D1B2A; color: rgba(255,255,255,.7); }
.footer-ust { padding: 72px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-hakkinda p { font-size: .88rem; line-height: 1.7; margin: 20px 0 24px; color: rgba(255,255,255,.55); }
.sosyal-linkler { display: flex; gap: 12px; }
.sosyal-linkler a {
    width: 40px;
    height: 40px;
    border-radius: var(--yuvarlak-kucuk);
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: var(--gecis);
}
.sosyal-linkler a:hover { background: var(--renk-birincil); color: var(--renk-beyaz); }
.sosyal-linkler svg { width: 18px; height: 18px; }

.footer-sutun h3 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--renk-beyaz);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-sutun ul li { margin-bottom: 10px; }
.footer-sutun ul li a { font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-sutun ul li a:hover { color: var(--renk-birincil-acik); }

.footer-iletisim-bilgi ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.footer-iletisim-bilgi svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--renk-birincil); }
.footer-iletisim-bilgi a { color: rgba(255,255,255,.55); }
.footer-iletisim-bilgi a:hover { color: var(--renk-birincil-acik); }

.footer-alt {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
}
.footer-alt .konteyner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.footer-alt p { font-size: .8rem; color: rgba(255,255,255,.35); }

/* === SABİT İLETİŞİM === */
.sabit-iletisim {
    position: fixed;
    bottom: 32px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 800;
}
.sabit-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--golge-guclu);
    transition: var(--gecis);
}
.sabit-btn:hover { transform: scale(1.1); }
.sabit-btn svg { width: 22px; height: 22px; }
.sabit-telefon { background: var(--renk-ikincil); color: var(--renk-beyaz); }
.sabit-whatsapp { background: #25D366; color: var(--renk-beyaz); }

/* === MOBİL NAV ELEMANLARI (her zaman gizli, sadece mobile gösterilir) === */
.mobil-nav-sagda {
    display: none;
    align-items: center;
    gap: 4px;
    justify-self: end;
}
.mobil-ara-btn {
    width: 40px; height: 40px;
    border-radius: var(--yuvarlak-kucuk);
    background: rgba(200,134,10,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--renk-birincil);
}
.mobil-ara-btn svg { width: 18px; height: 18px; }
.mobil-ara-btn:hover { background: var(--renk-birincil); color: var(--renk-beyaz); }

.mobil-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,18,28,.55);
    backdrop-filter: blur(3px);
    z-index: 899;
}
.mobil-overlay.acik { display: block; }

.mobil-menu-header,
.mobil-menu-cta { display: none; }

/* === MOBİL MENU CTA BUTTONS (always styled, visibility toggled by display) === */
.mmcta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: var(--yuvarlak);
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    transition: var(--gecis);
    color: #fff;
}
.mmcta-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.mmcta-tel  { background: var(--renk-ikincil); color: #fff !important; }
.mmcta-tel:hover  { background: #243545; }
.mmcta-wa   { background: #25D366; color: #fff !important; }
.mmcta-wa:hover   { background: #1da851; }
.mmcta-kesif { background: var(--renk-birincil); color: #fff !important; }
.mmcta-kesif:hover { background: var(--renk-birincil-koyu); }

/* === MOBİL === */
@media (max-width: 1024px) {
    .hizmet-grid { grid-template-columns: repeat(2, 1fr); }
    .hizmet-grid-yeni { grid-template-columns: repeat(2, 1fr); }
    .hizmet-grid-uc  { grid-template-columns: repeat(2, 1fr); }
    /* Tab kutusu tam genişliğe, eşit dağılım */
    .hizmet-tabs {
        width: 100%;
        gap: 8px;
    }
    .hizmet-tab {
        flex: 1;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 6px;
        padding: 12px 10px;
    }
    .hizmet-tab .ht-ikon { width: 32px; height: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .ust-bilgi { display: none; }
    .navigasyon { grid-template-columns: 1fr auto; padding: 12px 0; }
    .mobil-menu-dugme {
        display: flex;
        width: 40px; height: 40px;
        border-radius: var(--yuvarlak-kucuk);
        background: var(--renk-arka);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        padding: 0;
    }
    .mobil-nav-sagda { display: flex; align-items: center; gap: 4px; grid-column: 2; justify-self: end; }
    .header-cta { display: none; }

    /* ══════════════════════════════════════
       MOBİL MENÜ PANELİ — tam ekran
       ══════════════════════════════════════ */
    .ana-menu {
        position: fixed;
        inset: 0;                          /* top/right/bottom/left hepsi 0 */
        width: 100vw;
        height: 100dvh;
        background: var(--renk-beyaz);
        flex-direction: column;
        gap: 0;
        padding: 0;
        display: flex;
        margin: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 900;
        transform: translateX(100%);
        transition: transform .28s cubic-bezier(.4,0,.2,1);
        box-sizing: border-box;
        pointer-events: none;   /* kapalıyken tıklamaları engelleme */
    }
    .ana-menu.acik {
        transform: translateX(0);
        pointer-events: auto;   /* açıkken normal tıklama */
    }

    /* ── Menü üst bar ── */
    .mobil-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 64px;
        min-height: 64px;
        background: var(--renk-ikincil);
        flex-shrink: 0;
        list-style: none;
        width: 100%;
        box-sizing: border-box;
    }
    .mmh-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mmh-logo .logo-sembol {
        width: 38px; height: 38px;
        background: var(--renk-birincil);
        color: #fff;
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        font-size: .88rem; font-weight: 800;
        flex-shrink: 0;
    }
    .mmh-logo .logo-yazi strong {
        display: block; font-size: .95rem; font-weight: 800;
        color: #fff; line-height: 1.2;
    }
    .mmh-logo .logo-yazi span {
        display: block; font-size: .62rem;
        color: var(--renk-birincil-acik);
        text-transform: uppercase; letter-spacing: 1.5px;
    }
    .mobil-menu-kapat {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        display: flex; align-items: center; justify-content: center;
        color: rgba(255,255,255,.8);
        cursor: pointer; border: none; flex-shrink: 0;
        transition: background .2s;
    }
    .mobil-menu-kapat svg { width: 18px; height: 18px; }
    .mobil-menu-kapat:active { background: rgba(255,255,255,.25); }

    /* ── Nav linkleri ── */
    .ana-menu > li:not(.mobil-menu-header):not(.mega-ust):not(.mobil-menu-cta) {
        border-bottom: 1px solid var(--renk-sinir);
        width: 100%;
        box-sizing: border-box;
    }
    .ana-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 54px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--renk-yazi);
        border-radius: 0;
        border: none;
        width: 100%;
        box-sizing: border-box;
        gap: 8px;
    }
    .ana-menu > li > a.aktif {
        color: var(--renk-birincil);
        background: rgba(200,134,10,.06);
        border-left: 3px solid var(--renk-birincil);
        padding-left: 13px;
    }
    .ana-menu > li > a svg {
        width: 18px; height: 18px;
        flex-shrink: 0; opacity: .35;
    }

    /* ── Hizmetler accordion ── */
    .mega-ust {
        border-bottom: 1px solid var(--renk-sinir);
        width: 100%; box-sizing: border-box;
    }
    .mega-ust > a {
        justify-content: space-between;
        background: transparent;
    }
    .mega-ust > a svg { transition: transform .22s; }
    .mega-ust.acik > a {
        color: var(--renk-birincil);
        background: rgba(200,134,10,.05);
    }
    .mega-ust.acik > a svg { transform: rotate(180deg); opacity: .7; }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        opacity: 1; visibility: visible;
        box-shadow: none; border: none; border-radius: 0;
        grid-template-columns: 1fr;
        display: none;
        background: var(--renk-arka);
        box-sizing: border-box;
    }
    .mega-ust.acik .mega-menu { display: grid; }

    .mega-kolon {
        border-right: none;
        border-bottom: 1px solid var(--renk-sinir);
        padding: 14px 16px 16px;
        width: 100%; box-sizing: border-box;
    }
    .mega-kolon:last-child { border-bottom: none; }

    .mega-kolon-baslik {
        font-size: .7rem; font-weight: 800;
        text-transform: uppercase; letter-spacing: 1px;
        color: var(--renk-birincil);
        margin-bottom: 8px; padding-bottom: 8px;
        border-bottom: 1px solid var(--renk-sinir);
        display: flex; align-items: center; gap: 6px;
    }
    .mega-kolon-baslik svg { width: 11px; height: 11px; }

    .mega-kolon ul { display: flex; flex-direction: column; }
    .mega-kolon ul li a {
        display: flex; align-items: center; gap: 8px;
        padding: 10px 8px;
        font-size: .88rem; font-weight: 500;
        color: var(--renk-yazi);
        border-radius: var(--yuvarlak-kucuk);
        min-height: 42px;
        width: 100%; box-sizing: border-box;
    }
    .mega-kolon ul li a::before {
        content: ''; width: 5px; height: 5px;
        border-radius: 50%; background: var(--renk-birincil);
        opacity: .45; flex-shrink: 0;
    }
    .mega-kolon ul li a:active { background: rgba(200,134,10,.08); color: var(--renk-birincil); }
    .mega-kolon-ozel { background: transparent; }
    .mega-cta { display: none; }

    /* ── Alt CTA çubuğu ── */
    .mobil-menu-cta {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        margin-top: auto;
        border-top: 1px solid var(--renk-sinir);
        background: var(--renk-beyaz);
        flex-shrink: 0;
        list-style: none;
        width: 100%; box-sizing: border-box;
    }
    .mmcta-btn {
        padding: 14px 12px;
        font-size: .9rem;
        width: 100%; box-sizing: border-box;
    }
    .mmcta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

    .hero { min-height: auto; }
    .hero-icerik { padding: 60px 20px 48px; }
    .hero-istatistik { gap: 16px; flex-wrap: wrap; }
    .hero-butonlar { flex-direction: column; align-items: center; margin-bottom: 32px; }
    .hero-butonlar .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-scroll { display: none; }

    .guven-liste { gap: 16px; justify-content: flex-start; }
    .guven-kalem { font-size: .8rem; }

    .hizmet-grid { grid-template-columns: 1fr; }
    .hizmet-grid-yeni,
    .hizmet-grid-uc  { grid-template-columns: 1fr 1fr; gap: 12px; }

    /* Tablar: ikon gizle, sadece yazı, yatay scroll yerine pill satırı */
    .hizmet-tabs {
        background: transparent;
        border: none;
        padding: 0;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hizmet-tab {
        flex: 0 0 auto;
        flex-direction: row;
        padding: 10px 16px;
        border: 1.5px solid var(--renk-sinir);
        background: var(--renk-beyaz);
        border-radius: 50px;
        gap: 6px;
    }
    .hizmet-tab.aktif { border-color: var(--renk-ikincil); }
    .hizmet-tab .ht-ikon { display: none; }
    .hizmet-tab strong { font-size: .84rem; }
    .hizmet-tab span   { display: none; }

    /* Kart iç düzeni küçült */
    .hk { padding: 20px 18px; gap: 8px; }
    .hk-ikon { width: 40px; height: 40px; }
    .hk-ikon svg { width: 18px; height: 18px; }
    .hk h3 { font-size: .92rem; }
    .hk p  { font-size: .8rem; }
    .hk-liste { display: none; } /* mobilde liste gizle, kart kompakt kalsın */
    .neden-grid { grid-template-columns: 1fr; gap: 40px; }
    .gorsel-cerceve img { height: 280px; }

    .proje-galeri { grid-template-columns: 1fr 1fr; }
    .proje-kart.buyuk { grid-column: 1 / 3; grid-row: auto; }
    .proje-kart.buyuk img { min-height: 260px; }

    .surec-adimlar { flex-direction: column; align-items: stretch; }
    .adim { max-width: none; }
    .adim-ok { transform: rotate(90deg); align-self: center; }

    .yorum-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-alt .konteyner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .proje-galeri { grid-template-columns: 1fr; }
    .proje-kart.buyuk { grid-column: auto; }
    .hero-istatistik { flex-direction: row; justify-content: center; gap: 16px; }
    .istat-kalem { text-align: center; min-width: 40%; }
    .istat-ayrac { display: none; }

    /* Hizmet kartları çok küçük ekranda tek kolon */
    .hizmet-grid-yeni,
    .hizmet-grid-uc { grid-template-columns: 1fr; }
    .hizmet-tab { padding: 9px 14px; }
    .hizmet-tab strong { font-size: .8rem; }
}


/* =========================================
   KEŞİF FORMU MODAL
   ========================================= */

/* Arka plan overlay */
.modal-arka {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 18, 28, .7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .25s ease;
}
.modal-arka[hidden] { display: none; }
.modal-arka.acik { opacity: 1; }

/* Modal kutusu */
.modal-kutu {
    background: var(--renk-beyaz);
    border-radius: var(--yuvarlak-buyuk);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    transform: translateY(20px) scale(.97);
    transition: transform .28s ease, opacity .28s ease;
    padding: 36px 40px 28px;
}
.modal-arka.acik .modal-kutu { transform: translateY(0) scale(1); }

/* Kapat butonu */
.modal-kapat {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--renk-arka);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renk-yazi-hafif);
    transition: var(--gecis);
    z-index: 2;
}
.modal-kapat:hover { background: #ffe0e0; color: #c0392b; }
.modal-kapat svg { width: 18px; height: 18px; }

/* Üst başlık */
.modal-ust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-right: 40px;
}
.modal-logo {
    width: 48px;
    height: 48px;
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    border-radius: var(--yuvarlak);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.modal-ust h2 { font-size: 1.2rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 2px; }
.modal-ust p { font-size: .83rem; color: var(--renk-yazi-hafif); }

/* Adım göstergesi */
.modal-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}
.mp-adim {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}
.mp-daire {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--renk-sinir);
    background: var(--renk-beyaz);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--renk-yazi-hafif);
    transition: var(--gecis);
    position: relative;
}
.mp-check { width: 16px; height: 16px; display: none; stroke-width: 2.5; }
.mp-no { line-height: 1; }
.mp-etiket { font-size: .72rem; font-weight: 600; color: var(--renk-yazi-hafif); transition: color .2s; }
.mp-cizgi {
    flex: 1;
    height: 2px;
    background: var(--renk-sinir);
    margin: 0 8px;
    margin-bottom: 22px;
    transition: background .3s;
}

/* Aktif adım */
.mp-adim.aktif .mp-daire {
    border-color: var(--renk-birincil);
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
}
.mp-adim.aktif .mp-etiket { color: var(--renk-birincil); font-weight: 700; }

/* Tamamlanan adım */
.mp-adim.tamamlandi .mp-daire {
    border-color: var(--renk-basari);
    background: var(--renk-basari);
    color: var(--renk-beyaz);
}
.mp-adim.tamamlandi .mp-check { display: block; color: var(--renk-beyaz); }
.mp-adim.tamamlandi .mp-no { display: none; }
.mp-adim.tamamlandi .mp-etiket { color: var(--renk-basari); }
.mp-cizgi.tamamlandi { background: var(--renk-basari); }

/* ── FORM ADIM ── */
.form-adim { display: none; border: none; padding: 0; margin: 0; animation: adim-giris .22s ease; }
.form-adim.aktif { display: block; }
@keyframes donus {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes adim-giris {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

.adim-baslik {
    font-size: 1rem;
    font-weight: 700;
    color: var(--renk-ikincil);
    margin-bottom: 20px;
    display: block;
}
.adim-no {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--renk-birincil);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* ── FORM BÖLÜM KARTI ── */
.form-bolum {
    background: var(--renk-arka);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 12px;
}
.form-bolum:last-of-type { margin-bottom: 0; }

.form-bolum-baslik {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--renk-yazi-hafif);
    margin-bottom: 2px;
}
.form-bolum-baslik svg {
    width: 14px;
    height: 14px;
    color: var(--renk-birincil);
    flex-shrink: 0;
}

/* ── ALAN GRUP ── */
.alan-grup { margin-bottom: 0; }
.form-bolum .alan-satir { margin-bottom: 0; }
.alan-satir { display: grid; gap: 14px; margin-bottom: 0; }
.alan-satir .alan-grup { margin-bottom: 0; }
.iki-kolon { grid-template-columns: 1fr 1fr; }
.uc-kolon  { grid-template-columns: 1fr 1fr 1fr; }

.alan-label {
    display: block;
    font-size: .83rem;
    font-weight: 600;
    color: var(--renk-yazi);
    margin-bottom: 7px;
}
.alan-label small { font-weight: 400; color: var(--renk-yazi-hafif); }
.alan-label.zorunlu::after {
    content: ' *';
    color: #e74c3c;
}

/* Input / Select / Textarea ortak */
.alan-grup input[type="text"],
.alan-grup input[type="tel"],
.alan-grup input[type="email"],
.alan-grup input[type="number"],
.alan-grup select,
.alan-grup textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--renk-yazi);
    background: var(--renk-beyaz);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.alan-grup input:focus,
.alan-grup select:focus,
.alan-grup textarea:focus {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(200,134,10,.12);
}
.alan-grup input.hatali,
.alan-grup select.hatali,
.alan-grup textarea.hatali {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.alan-grup textarea { resize: vertical; min-height: 90px; }
.alan-grup select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6A7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; cursor: pointer; }

/* Input ön ek / son ek */
.input-sonek, .input-on-ek {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.input-sonek:focus-within,
.input-on-ek:focus-within {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(200,134,10,.12);
}
.input-sonek input, .input-on-ek input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    border-radius: 0;
}
.input-sonek span, .input-on-ek span {
    background: var(--renk-arka);
    border-left: 1.5px solid var(--renk-sinir);
    padding: 0 12px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--renk-yazi-hafif);
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.input-on-ek span {
    border-left: none;
    border-right: 1.5px solid var(--renk-sinir);
    order: -1;
}

/* Hata mesajı */
.hata-mesaj {
    display: none;
    font-size: .78rem;
    color: #e74c3c;
    margin-top: 5px;
}
.hata-mesaj.gorunur { display: block; }

/* Karakter sayaç */
.karakter-sayac {
    display: block;
    font-size: .75rem;
    color: var(--renk-yazi-hafif);
    text-align: right;
    margin-top: 4px;
}
.karakter-sayac.tamam { color: var(--renk-basari); }

/* ── HİZMET KARTI SEÇİMİ ── */
.hizmet-kartlar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.hizmet-sec input { position: absolute; opacity: 0; width: 0; height: 0; }
.hizmet-sec span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 8px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    font-size: .78rem;
    font-weight: 600;
    color: var(--renk-yazi-hafif);
    text-align: center;
    cursor: pointer;
    transition: var(--gecis);
    background: var(--renk-beyaz);
    line-height: 1.3;
}
.hizmet-sec span svg { width: 22px; height: 22px; color: var(--renk-yazi-hafif); transition: color .2s; }
.hizmet-sec:hover span { border-color: var(--renk-birincil); color: var(--renk-birincil); background: rgba(200,134,10,.04); }
.hizmet-sec:hover span svg { color: var(--renk-birincil); }
.hizmet-sec input:checked + span {
    border-color: var(--renk-birincil);
    background: rgba(200,134,10,.08);
    color: var(--renk-birincil);
}
.hizmet-sec input:checked + span svg { color: var(--renk-birincil); }
.alan-grup.hatali-grup .hizmet-kartlar { outline: 2px solid #e74c3c; border-radius: var(--yuvarlak); }

/* ── RADIO BUTONLAR ── */
.radio-grup {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.radio-sec input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-sec span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--renk-yazi-hafif);
    cursor: pointer;
    transition: var(--gecis);
    white-space: nowrap;
}
.radio-sec:hover span { border-color: var(--renk-birincil); color: var(--renk-birincil); }
.radio-sec input:checked + span {
    border-color: var(--renk-birincil);
    background: rgba(200,134,10,.08);
    color: var(--renk-birincil);
    font-weight: 600;
}

/* ── CHECKBOX GRUP ── */
.checkbox-grup {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.checkbox-sec input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-sec span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--renk-yazi-hafif);
    cursor: pointer;
    transition: var(--gecis);
}
.checkbox-sec:hover span { border-color: var(--renk-birincil); color: var(--renk-birincil); }
.checkbox-sec input:checked + span {
    border-color: var(--renk-birincil);
    background: rgba(200,134,10,.08);
    color: var(--renk-birincil);
    font-weight: 600;
}

/* ── KVKK ── */
.kvkk-onay {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 16px;
}
.kvkk-onay input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--renk-birincil); cursor: pointer; }
.kvkk-onay span { font-size: .82rem; color: var(--renk-yazi-hafif); line-height: 1.5; }
.kvkk-onay a { color: var(--renk-birincil); text-decoration: underline; }

/* ── ALT NAVİGASYON ── */
.modal-alt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 8px;
    border-top: 1px solid var(--renk-sinir);
}
.adim-metin {
    font-size: .82rem;
    font-weight: 600;
    color: var(--renk-yazi-hafif);
}
.modal-geri-btn, .modal-ileri-btn { min-width: 110px; justify-content: center; }
.modal-geri-btn svg, .modal-ileri-btn svg { width: 16px; height: 16px; }
.modal-geri-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── BAŞARI ADIMI ── */
.basari-adim { text-align: center; }
.basari-icerik { padding: 20px 0 8px; }
.basari-ikon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(39,174,96,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: basari-animasyon .5s ease;
}
@keyframes basari-animasyon {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.basari-ikon svg { width: 40px; height: 40px; color: var(--renk-basari); stroke-width: 2; }
.basari-icerik h3 { font-size: 1.5rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 10px; }
.basari-icerik > p { color: var(--renk-yazi-hafif); margin-bottom: 24px; line-height: 1.6; }
.basari-detay {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.basari-detay div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--renk-yazi-hafif);
}
.basari-detay svg { width: 16px; height: 16px; color: var(--renk-birincil); }

/* ── MOBİL MODAL ── */
@media (max-width: 680px) {
    .modal-arka {
        align-items: flex-end;
        padding: 0;
    }
    .modal-kutu { 
        padding: 24px 20px 20px; 
        border-radius: 24px 24px 0 0;
        max-height: 92vh;
        transform: translateY(100%);
    }
    .modal-arka.acik .modal-kutu {
        transform: translateY(0);
    }

    /* Prevent iOS auto-zoom */
    .alan-grup input[type="text"],
    .alan-grup input[type="tel"],
    .alan-grup input[type="email"],
    .alan-grup input[type="number"],
    .alan-grup select,
    .alan-grup textarea {
        font-size: 16px;
    }

    /* Sticky Footer */
    .modal-alt-nav {
        position: sticky;
        bottom: -20px;
        background: var(--renk-beyaz);
        padding: 16px 20px;
        margin: 16px -20px -20px -20px;
        z-index: 10;
        border-top: 1px solid var(--renk-sinir);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
    }

    .hizmet-kartlar { grid-template-columns: repeat(2, 1fr); }
    .iki-kolon, .uc-kolon { grid-template-columns: 1fr; }
    .modal-ust p { display: none; }
    .radio-grup, .checkbox-grup { gap: 8px; }
    .mp-etiket { display: none; }
    .modal-geri-btn, .modal-ileri-btn { min-width: 90px; padding: 11px 16px; font-size: .85rem; }
}

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

/* Sayfa banner */
.sayfa-banner {
    background: linear-gradient(135deg, var(--renk-ikincil) 0%, #0D1B2A 100%);
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sayfa-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(200,134,10,.12) 0%, transparent 65%);
}
.sayfa-banner-icerik { position: relative; z-index: 1; }
.sayfa-banner .ust-etiket { background: rgba(200,134,10,.2); color: var(--renk-birincil-acik); }
.sayfa-banner h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--renk-beyaz);
    margin: 12px 0 16px;
}
.sayfa-banner p {
    color: rgba(255,255,255,.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Hızlı iletişim kartları */
.iletisim-kartlar-bolum {
    background: var(--renk-beyaz);
    padding: 0;
    margin-top: -1px;
}
.iletisim-kartlar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--renk-birincil);
    box-shadow: var(--golge);
}
.iletisim-kart {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    border-right: 1px solid var(--renk-sinir);
    transition: var(--gecis);
}
.iletisim-kart:last-child { border-right: none; }
.iletisim-kart:hover { background: var(--renk-arka); }
.iletisim-kart.iletisim-kart-wa:hover { background: rgba(37,211,102,.06); }
.ik-ikon {
    width: 48px;
    height: 48px;
    border-radius: var(--yuvarlak);
    background: rgba(200,134,10,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.iletisim-kart-wa .ik-ikon { background: rgba(37,211,102,.1); }
.iletisim-kart-wa .ik-ikon svg { color: #25D366; }
.ik-ikon svg { width: 22px; height: 22px; color: var(--renk-birincil); }
.ik-icerik span  { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--renk-yazi-hafif); margin-bottom: 3px; }
.ik-icerik strong { display: block; font-size: .9rem; font-weight: 700; color: var(--renk-ikincil); margin-bottom: 2px; }
.ik-icerik p { font-size: .78rem; color: var(--renk-yazi-hafif); margin: 0; }

/* Ana iletişim grid */
.iletisim-ana { padding: 72px 0 100px; background: var(--renk-arka); }
.iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* Form alanı */
.iletisim-form-alani {
    background: var(--renk-beyaz);
    border-radius: var(--yuvarlak-buyuk);
    padding: 40px;
    box-shadow: var(--golge-hafif);
    border: 1px solid var(--renk-sinir);
}
.form-alani-baslik { margin-bottom: 28px; }
.form-alani-baslik h2 { font-size: 1.4rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 6px; }
.form-alani-baslik p  { font-size: .9rem; color: var(--renk-yazi-hafif); }

.iletisim-formu { display: flex; flex-direction: column; gap: 18px; }
.if-satir { display: grid; gap: 16px; }
.if-satir.iki-kolon { grid-template-columns: 1fr 1fr; }

.if-grup { display: flex; flex-direction: column; gap: 7px; }
.if-grup label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--renk-yazi);
}
.if-grup label span { color: #e74c3c; }
.if-grup label small { font-weight: 400; color: var(--renk-yazi-hafif); }

.if-grup input,
.if-grup select,
.if-grup textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--renk-yazi);
    background: var(--renk-beyaz);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}
.if-grup input:focus,
.if-grup select:focus,
.if-grup textarea:focus {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(200,134,10,.12);
}
.if-grup.hatali input,
.if-grup.hatali select,
.if-grup.hatali textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.if-grup textarea { resize: vertical; min-height: 130px; }
.if-grup select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6A7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}
.if-on-ek {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.if-on-ek:focus-within { border-color: var(--renk-birincil); box-shadow: 0 0 0 3px rgba(200,134,10,.12); }
.if-on-ek input { border: none !important; box-shadow: none !important; flex: 1; border-radius: 0; }
.if-on-ek > span {
    background: var(--renk-arka);
    border-right: 1.5px solid var(--renk-sinir);
    padding: 0 12px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--renk-yazi-hafif);
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.if-hata { font-size: .78rem; color: #e74c3c; }

.if-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.if-kvkk input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--renk-birincil); cursor: pointer; }
.if-kvkk span { font-size: .82rem; color: var(--renk-yazi-hafif); line-height: 1.5; }
.if-kvkk span a { color: var(--renk-birincil); text-decoration: underline; }
.if-kvkk span em { color: #e74c3c; font-style: normal; }

.if-gonder { align-self: flex-start; margin-top: 4px; }

/* Başarı mesajı */
.form-basari {
    text-align: center;
    padding: 40px 20px;
}
.form-basari-ikon {
    width: 72px;
    height: 72px;
    background: rgba(39,174,96,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-basari-ikon svg { width: 36px; height: 36px; color: var(--renk-basari); }
.form-basari h3 { font-size: 1.4rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 10px; }
.form-basari p  { color: var(--renk-yazi-hafif); line-height: 1.6; margin-bottom: 24px; }

/* Sağ sütun */
.iletisim-bilgi-alani { display: flex; flex-direction: column; gap: 20px; }
.iletisim-bilgi-kutu {
    background: var(--renk-beyaz);
    border-radius: var(--yuvarlak-buyuk);
    padding: 28px;
    border: 1px solid var(--renk-sinir);
    box-shadow: var(--golge-hafif);
}
.iletisim-bilgi-kutu h3 { font-size: 1.05rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 20px; }

.ofis-liste { display: flex; flex-direction: column; gap: 16px; }
.ofis-liste li { display: flex; align-items: flex-start; gap: 12px; }
.ofis-liste svg { width: 18px; height: 18px; color: var(--renk-birincil); flex-shrink: 0; margin-top: 2px; }
.ofis-liste strong { display: block; font-size: .8rem; font-weight: 700; color: var(--renk-yazi-hafif); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.ofis-liste span,
.ofis-liste a { font-size: .88rem; color: var(--renk-yazi); line-height: 1.5; }
.ofis-liste a:hover { color: var(--renk-birincil); }

.harita-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: .83rem;
    font-weight: 600;
    color: var(--renk-birincil);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.harita-link svg { width: 15px; height: 15px; }
.harita-link:hover { color: var(--renk-birincil-koyu); }

/* Harita */
.harita-cerceve {
    border-radius: var(--yuvarlak-buyuk);
    overflow: hidden;
    border: 1px solid var(--renk-sinir);
    box-shadow: var(--golge-hafif);
    line-height: 0;
}

/* WhatsApp CTA */
.iletisim-cta-kutu {
    background: var(--renk-ikincil);
    border-radius: var(--yuvarlak-buyuk);
    padding: 24px;
    text-align: center;
}
.iletisim-cta-kutu p { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.iletisim-cta-kutu p strong { color: var(--renk-beyaz); }
.btn-wa {
    background: #25D366;
    color: var(--renk-beyaz);
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--yuvarlak);
    font-weight: 700;
    font-size: .9rem;
    transition: var(--gecis);
    width: 100%;
    justify-content: center;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.btn-wa svg { width: 18px; height: 18px; }

/* Responsive */
@media (max-width: 1024px) {
    .iletisim-grid { grid-template-columns: 1fr; }
    .iletisim-bilgi-alani { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .harita-cerceve { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .iletisim-kartlar { grid-template-columns: 1fr 1fr; }
    .iletisim-kart { border-bottom: 1px solid var(--renk-sinir); }
    .iletisim-form-alani { padding: 24px 20px; }
    .if-satir.iki-kolon { grid-template-columns: 1fr; }
    .iletisim-bilgi-alani { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .iletisim-kartlar { grid-template-columns: 1fr; }
}

/* =========================================
   FOTOĞRAF GÖNDER FİYAT AL MODAL
   ========================================= */
.foto-modal-kutu { max-width: 560px; }

.foto-modal-ust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-right: 40px;
}
.foto-modal-ikon {
    width: 52px;
    height: 52px;
    background: rgba(200,134,10,.1);
    border-radius: var(--yuvarlak);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.foto-modal-ikon svg { width: 24px; height: 24px; color: var(--renk-birincil); }
.foto-modal-ust h2 { font-size: 1.15rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 3px; }
.foto-modal-ust p  { font-size: .82rem; color: var(--renk-yazi-hafif); line-height: 1.4; }

.foto-form-icerik { display: flex; flex-direction: column; gap: 16px; }
.foto-form-satir { display: grid; gap: 14px; }
.foto-form-satir.iki-kolon { grid-template-columns: 1fr 1fr; }

.foto-alan { display: flex; flex-direction: column; gap: 7px; }
.foto-alan label { font-size: .83rem; font-weight: 600; color: var(--renk-yazi); }
.foto-alan label span { color: #e74c3c; }
.foto-alan label small { font-weight: 400; color: var(--renk-yazi-hafif); }
.foto-alan input[type="text"],
.foto-alan input[type="tel"],
.foto-alan select,
.foto-alan textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--renk-yazi);
    background: var(--renk-beyaz);
    outline: none;
    appearance: none;
    transition: border-color .2s, box-shadow .2s;
}
.foto-alan input:focus, .foto-alan select:focus, .foto-alan textarea:focus {
    border-color: var(--renk-birincil);
    box-shadow: 0 0 0 3px rgba(200,134,10,.12);
}
.foto-alan select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6A7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; cursor: pointer;
}
.foto-alan textarea { resize: none; min-height: 72px; }

/* Fotoğraf yükleme alanı */
.foto-yukle-alani {
    position: relative;
    border: 2px dashed var(--renk-sinir);
    border-radius: var(--yuvarlak);
    background: var(--renk-arka);
    transition: border-color .2s, background .2s;
    cursor: pointer;
    overflow: hidden;
}
.foto-yukle-alani:hover,
.foto-yukle-alani.surukle { border-color: var(--renk-birincil); background: rgba(200,134,10,.04); }
.foto-yukle-alani input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.foto-yukle-icerik {
    padding: 28px 20px;
    text-align: center;
    pointer-events: none;
}
.foto-yukle-icerik svg { width: 32px; height: 32px; color: var(--renk-birincil); margin: 0 auto 10px; display: block; }
.foto-yukle-icerik p { font-size: .88rem; font-weight: 600; color: var(--renk-yazi); margin-bottom: 4px; }
.foto-yukle-icerik span { font-size: .78rem; color: var(--renk-yazi-hafif); }
.foto-yukle-icerik strong { color: var(--renk-birincil); }

/* Önizleme grid */
.foto-onizleme-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 8px;
}
.foto-onizleme-grid:empty { display: none; }
.foto-onizleme-kart {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--yuvarlak-kucuk);
    overflow: hidden;
    background: var(--renk-sinir);
}
.foto-onizleme-kart img { width: 100%; height: 100%; object-fit: cover; }
.foto-onizleme-kart button {
    position: absolute;
    top: 4px; right: 4px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .7rem;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.foto-onizleme-kart button:hover { background: #e74c3c; }

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

/* Başarı ekranı */
.foto-basari {
    text-align: center;
    padding: 20px 0 8px;
}
.foto-basari[hidden] { display: none; }
.foto-basari h3 { font-size: 1.3rem; font-weight: 800; color: var(--renk-ikincil); margin: 16px 0 10px; }
.foto-basari p  { font-size: .9rem; color: var(--renk-yazi-hafif); line-height: 1.6; margin-bottom: 24px; }

@media (max-width: 480px) {
    .foto-form-satir.iki-kolon { grid-template-columns: 1fr; }
    .foto-onizleme-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================
   PROJELER SAYFASI
   ========================================= */

/* ── Büyük galeri grid (projeler sayfası) ── */
.galeri-grid-buyuk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ggb-kart {
    position: relative;
    border-radius: var(--yuvarlak);
    overflow: hidden;
    cursor: pointer;
    background: var(--renk-sinir);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--renk-sinir);
    transition: box-shadow .25s ease, transform .25s ease;
}
.ggb-kart:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge-guclu);
}
.ggb-gorsel-wrap {
    aspect-ratio: 1402 / 1122;
    overflow: hidden;
    flex-shrink: 0;
}
.ggb-kart img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.ggb-kart:hover img { transform: scale(1.05); }

/* Zoom ikonu görsel üstünde, hover'da görünür */
.ggb-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    aspect-ratio: 1402 / 1122;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
    pointer-events: none;
}
.ggb-bilgi { display: none; } /* Artık kullanılmıyor */

.ggb-zoom {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(10,18,28,.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .25s, background .2s;
    pointer-events: auto;
}
.ggb-kart:hover .ggb-zoom { opacity: 1; }
.ggb-zoom:hover { background: var(--renk-birincil); border-color: var(--renk-birincil); }
.ggb-zoom svg { width: 15px; height: 15px; }

/* Başlık — kartın altında her zaman görünür */
.ggb-alt {
    padding: 12px 14px;
    background: var(--renk-beyaz);
}
.ggb-alt span {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--renk-birincil);
    margin-bottom: 3px;
}
.ggb-alt h3 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--renk-ikincil);
    line-height: 1.3;
}

@media (max-width: 1024px) { .galeri-grid-buyuk { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .galeri-grid-buyuk { grid-template-columns: 1fr; } }

/* İstatistik bar */
.proje-istat-bar { background: var(--renk-ikincil); padding: 20px 0; }
.pib-liste { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.pib-kalem { text-align: center; color: var(--renk-beyaz); }
.pib-kalem strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--renk-birincil-acik); line-height: 1; }
.pib-kalem span   { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 3px; display: block; }
.pib-ayrac { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* Galeri bölümü */
.proje-galeri-bolum { padding: 64px 0 100px; background: var(--renk-arka); }

/* Filtreler */
.galeri-filtreler {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.gf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--renk-sinir);
    background: var(--renk-beyaz);
    color: var(--renk-yazi-hafif);
    transition: var(--gecis);
}
.gf-btn:hover { border-color: var(--renk-birincil); color: var(--renk-birincil); }
.gf-btn.aktif { background: var(--renk-ikincil); border-color: var(--renk-ikincil); color: var(--renk-beyaz); }
.gf-sayi {
    background: rgba(255,255,255,.2);
    padding: 1px 7px;
    border-radius: 50px;
    font-size: .75rem;
}
.gf-btn:not(.aktif) .gf-sayi { background: var(--renk-arka); color: var(--renk-yazi-hafif); }

/* Galeri grid */
.galeri-grid {
    columns: 4;
    column-gap: 14px;
}
.gg-kart {
    break-inside: avoid;
    position: relative;
    border-radius: var(--yuvarlak);
    overflow: hidden;
    margin-bottom: 14px;
    cursor: pointer;
    background: var(--renk-sinir);
}
.gg-kart img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
}
.gg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,18,28,.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity .3s ease;
}
.gg-kart:hover img      { transform: scale(1.05); }
.gg-kart:hover .gg-overlay { opacity: 1; }

.gg-bilgi { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; }
.gg-tur {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--renk-birincil-acik);
}
.gg-bilgi h3 { font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.3; }
.gg-bilgi p  {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .75rem;
    color: rgba(255,255,255,.65);
    margin: 0;
}
.gg-bilgi p svg { width: 12px; height: 12px; flex-shrink: 0; }

.gg-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s, background .2s;
}
.gg-kart:hover .gg-zoom { opacity: 1; }
.gg-zoom:hover { background: var(--renk-birincil); border-color: var(--renk-birincil); }
.gg-zoom svg { width: 15px; height: 15px; }

/* Boş durum */
.galeri-bos {
    text-align: center;
    padding: 60px 20px;
    color: var(--renk-yazi-hafif);
}
.galeri-bos svg { width: 48px; height: 48px; margin: 0 auto 16px; display: block; opacity: .3; }
.galeri-bos p { font-size: .95rem; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5,10,18,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }

.lb-kapat {
    position: fixed;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2001;
    transition: background .2s;
}
.lb-kapat:hover { background: rgba(255,255,255,.25); }
.lb-kapat svg { width: 20px; height: 20px; }

.lb-ok {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2001;
    transition: background .2s;
}
.lb-ok:hover:not(:disabled) { background: var(--renk-birincil); border-color: var(--renk-birincil); }
.lb-ok:disabled { opacity: .25; cursor: default; }
.lb-ok svg { width: 22px; height: 22px; }
.lb-sol { left: 16px; }
.lb-sag { right: 16px; }

.lb-icerik {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.lb-icerik img {
    max-height: 70vh;
    max-width: 100%;
    width: auto;
    border-radius: var(--yuvarlak);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-bilgi { text-align: center; color: #fff; }
.lb-bilgi span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--renk-birincil-acik); display: block; margin-bottom: 4px; }
.lb-bilgi h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.lb-bilgi p  { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }
.lb-bilgi p svg { width: 13px; height: 13px; }
.lb-sayac { font-size: .75rem; color: rgba(255,255,255,.4); }

/* Responsive */
@media (max-width: 1024px) { .galeri-grid { columns: 3; } }
@media (max-width: 768px)  {
    .galeri-grid { columns: 2; }
    .lb-ok { width: 40px; height: 40px; }
    .lb-sol { left: 8px; }
    .lb-sag { right: 8px; }
    .pib-liste { gap: 20px; }
    .pib-ayrac { display: none; }
}
@media (max-width: 480px)  { .galeri-grid { columns: 1; } }

/* =========================================
   HİZMETLER SAYFASI
   ========================================= */
.hizmet-kategori-bolum { padding: 72px 0; background: var(--renk-arka); }
.hizmet-kat-acik       { background: var(--renk-beyaz); }

.hizmet-kat-baslik {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--renk-sinir);
}
.hkb-ikon {
    width: 52px; height: 52px;
    min-width: 52px; min-height: 52px;
    background: var(--renk-birincil);
    border-radius: var(--yuvarlak);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.hkb-ikon svg { width: 24px; height: 24px; min-width: 24px; color: #fff; }
.hizmet-kat-baslik h2 { font-size: 1.6rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 6px; }
.hizmet-kat-baslik p  { font-size: .9rem; color: var(--renk-yazi-hafif); line-height: 1.6; }

.hizmet-kat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hizmet-kat-grid-uc { grid-template-columns: repeat(3, 1fr); }

.hizmet-kat-kart {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak-buyuk);
    padding: 24px 20px;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.hizmet-kat-acik .hizmet-kat-kart { background: var(--renk-arka); }
.hizmet-kat-kart:hover { transform: translateY(-4px); box-shadow: var(--golge); border-color: var(--renk-birincil); }

.hizmet-kat-kart-one { flex-direction: column; }

.hkk-ikon {
    width: 44px; height: 44px;
    min-width: 44px; min-height: 44px;
    background: rgba(200,134,10,.1);
    border-radius: var(--yuvarlak);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.hkk-ikon svg { width: 20px; height: 20px; min-width: 20px; color: var(--renk-birincil); }

.hkk-icerik { flex: 1; }
.hkk-rozet {
    display: inline-block;
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    color: var(--renk-birincil);
    background: rgba(200,134,10,.1);
    padding: 3px 9px; border-radius: 50px;
    margin-bottom: 8px;
}
.hkk-icerik h3 { font-size: .95rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 6px; line-height: 1.3; }
.hkk-icerik p  { font-size: .82rem; color: var(--renk-yazi-hafif); line-height: 1.6; margin-bottom: 12px; }
.hkk-devam {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .8rem; font-weight: 700; color: var(--renk-birincil);
}
.hkk-devam svg { width: 14px; height: 14px; transition: transform .2s; }
.hizmet-kat-kart:hover .hkk-devam svg { transform: translateX(4px); }

@media (max-width: 1024px) {
    .hizmet-kat-grid, .hizmet-kat-grid-uc { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .hizmet-kat-grid, .hizmet-kat-grid-uc { grid-template-columns: 1fr; }
    .hkb-ikon { width: 42px; height: 42px; }
    .hizmet-kat-baslik h2 { font-size: 1.3rem; }
}

/* =========================================
   TEŞEKKÜRLER SAYFASI
   ========================================= */
.tesekkur-bolum {
    min-height: calc(100dvh - 130px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: var(--renk-arka);
}
.tesekkur-icerik {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    background: var(--renk-beyaz);
    border-radius: var(--yuvarlak-buyuk);
    padding: 52px 40px 44px;
    box-shadow: var(--golge);
    border: 1px solid var(--renk-sinir);
}
.tesekkur-ikon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(39,174,96,.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.tesekkur-ikon svg {
    width: 40px; height: 40px;
    color: var(--renk-basari);
    stroke-width: 2;
}
.tesekkur-icerik h1 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--renk-ikincil);
    margin-bottom: 10px;
}
.tesekkur-alt {
    font-size: 1rem;
    color: var(--renk-yazi-hafif);
    margin-bottom: 32px;
    line-height: 1.6;
}
.tesekkur-bilgi {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    text-align: left;
    background: var(--renk-arka);
    border-radius: var(--yuvarlak);
    padding: 20px;
}
.tb-kalem {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.tb-kalem svg {
    width: 18px; height: 18px;
    color: var(--renk-birincil);
    flex-shrink: 0;
    margin-top: 2px;
}
.tb-kalem span {
    display: block;
    font-size: .75rem;
    color: var(--renk-yazi-hafif);
    margin-bottom: 2px;
}
.tb-kalem a {
    font-size: .92rem;
    font-weight: 700;
    color: var(--renk-ikincil);
}
.tb-kalem a:hover { color: var(--renk-birincil); }

@media (max-width: 480px) {
    .tesekkur-icerik { padding: 36px 20px 32px; }
    .tesekkur-icerik h1 { font-size: 1.5rem; }
}

/* =========================================
   HİZMET DETAY SAYFASI
   ========================================= */

/* Breadcrumb */
.breadcrumb-bar {
    background: var(--renk-arka);
    border-bottom: 1px solid var(--renk-sinir);
    padding: 12px 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: .82rem;
    flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--renk-yazi-hafif); }
.breadcrumb li::after { content: '/'; opacity: .4; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--renk-birincil); font-weight: 600; }
.breadcrumb a { color: var(--renk-yazi-hafif); }
.breadcrumb a:hover { color: var(--renk-birincil); }

/* Hero */
.hizmet-hero {
    position: relative;
    background: linear-gradient(135deg, var(--renk-ikincil) 0%, #0D1B2A 100%);
    padding: 72px 0 64px;
    overflow: hidden;
}
.hizmet-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,134,10,.14) 0%, transparent 65%);
}
.hizmet-hero-icerik {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--renk-beyaz);
}
.hizmet-hero-icerik .ust-etiket { background: rgba(200,134,10,.2); color: var(--renk-birincil-acik); }
.hizmet-hero-icerik h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 14px 0 18px;
}
.hizmet-hero-icerik h1 span { color: var(--renk-birincil-acik); }
.hizmet-hero-icerik > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 580px;
}
.hizmet-hero-butonlar { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hizmet-hero-istat {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hizmet-hero-istat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--renk-birincil-acik); }
.hizmet-hero-istat span  { display: block; font-size: .75rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.h-ayrac { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* Kapsam */
.hizmet-kapsam { padding: 88px 0; background: var(--renk-arka); }
.kapsam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.kapsam-kalem {
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak-buyuk);
    padding: 28px 24px;
    transition: var(--gecis);
}
.kapsam-kalem:hover { transform: translateY(-4px); box-shadow: var(--golge); }
.kk-ikon {
    width: 48px; height: 48px;
    background: rgba(200,134,10,.09);
    border-radius: var(--yuvarlak);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.kk-ikon svg { width: 22px; height: 22px; color: var(--renk-birincil); }
.kapsam-kalem h3 { font-size: .95rem; font-weight: 700; color: var(--renk-ikincil); margin-bottom: 8px; }
.kapsam-kalem p  { font-size: .83rem; color: var(--renk-yazi-hafif); line-height: 1.6; }

/* Neden biz */
.hizmet-neden { padding: 88px 0; }
.hizmet-neden-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}
.hn-icerik h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--renk-ikincil);
    margin: 12px 0 28px;
    line-height: 1.2;
}
.hn-liste { display: flex; flex-direction: column; gap: 20px; }
.hn-liste li { display: flex; gap: 16px; }
.hn-no {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(200,134,10,.2);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
    padding-top: 2px;
}
.hn-liste h3 { font-size: .95rem; font-weight: 700; color: var(--renk-ikincil); margin-bottom: 5px; }
.hn-liste p  { font-size: .84rem; color: var(--renk-yazi-hafif); line-height: 1.6; }

/* CTA kutusu */
.hn-cta-kutu {
    background: var(--renk-ikincil);
    border-radius: var(--yuvarlak-buyuk);
    padding: 32px 28px;
    position: sticky;
    top: 100px;
    color: var(--renk-beyaz);
}
.hn-cta-rozet {
    display: inline-block;
    background: var(--renk-birincil);
    color: var(--renk-beyaz);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.hn-cta-icerik h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.hn-cta-icerik > p { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 20px; line-height: 1.6; }
.hn-cta-liste { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hn-cta-liste li {
    display: flex; align-items: center; gap: 8px;
    font-size: .84rem; color: rgba(255,255,255,.8);
}
.hn-cta-liste svg { width: 16px; height: 16px; color: var(--renk-birincil-acik); flex-shrink: 0; stroke-width: 2.5; }
.hn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .9rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
}
.hn-tel svg { width: 16px; height: 16px; }
.hn-tel:hover { color: var(--renk-birincil-acik); }

/* Süreç */
.hizmet-surec { padding: 88px 0; background: var(--renk-arka); }
.hs-adimlar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.hs-adim {
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak-buyuk);
    padding: 28px 22px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 210px;
}
.hs-no {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--renk-birincil);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.hs-icerik h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--renk-ikincil); }
.hs-icerik p  { font-size: .8rem; color: var(--renk-yazi-hafif); line-height: 1.6; }
.hs-ok svg { width: 22px; height: 22px; color: var(--renk-sinir); }

/* FAQ */
.hizmet-faq { padding: 88px 0; }
.faq-liste { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-kalem {
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    overflow: hidden;
    background: var(--renk-beyaz);
}
.faq-soru {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    font-family: var(--font);
    font-size: .95rem;
    font-weight: 600;
    color: var(--renk-yazi);
    text-align: left;
    cursor: pointer;
    background: none;
    transition: color .2s;
}
.faq-soru:hover { color: var(--renk-birincil); }
.faq-soru svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--renk-yazi-hafif); }
.faq-soru[aria-expanded="true"] { color: var(--renk-birincil); }
.faq-soru[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--renk-birincil); }
.faq-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.faq-cevap.acik { max-height: 300px; }
.faq-cevap p {
    padding: 0 22px 20px;
    font-size: .88rem;
    color: var(--renk-yazi-hafif);
    line-height: 1.7;
}

/* İlgili hizmetler */
.ilgili-hizmetler { padding: 72px 0; background: var(--renk-arka); }
.ilgili-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.ilgili-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-sinir);
    border-radius: var(--yuvarlak);
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--renk-yazi);
    transition: var(--gecis);
}
.ilgili-kart svg { width: 24px; height: 24px; color: var(--renk-birincil); }
.ilgili-kart:hover { border-color: var(--renk-birincil); color: var(--renk-birincil); background: rgba(200,134,10,.04); transform: translateY(-3px); }

/* Anahtar Teslim – fark karşılaştırması */
.at-nedir { padding: 80px 0; background: var(--renk-arka); }
.at-nedir-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}
.at-nedir-icerik h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--renk-ikincil);
    margin: 12px 0 16px;
    line-height: 1.2;
}
.at-nedir-icerik > p {
    font-size: .9rem;
    color: var(--renk-yazi-hafif);
    line-height: 1.7;
    margin-bottom: 12px;
}
.at-fark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.at-fark-kolon {
    border-radius: var(--yuvarlak);
    padding: 20px;
    border: 1.5px solid var(--renk-sinir);
}
.at-fark-kolon.kotu { background: #fff5f5; border-color: #fecaca; }
.at-fark-kolon.iyi  { background: #f0fdf4; border-color: #86efac; }
.at-fark-kolon h4   { font-size: .85rem; font-weight: 700; margin-bottom: 12px; }
.at-fark-kolon.kotu h4 { color: #dc2626; }
.at-fark-kolon.iyi  h4 { color: #16a34a; }
.at-fark-kolon ul   { display: flex; flex-direction: column; gap: 7px; }
.at-fark-kolon li {
    font-size: .8rem;
    color: var(--renk-yazi-hafif);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.at-fark-kolon li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}
.at-fark-kolon.kotu li::before { background: #dc2626; }
.at-fark-kolon.iyi  li::before { background: #16a34a; }

/* Anahtar Teslim – genişletilmiş süreç */
.at-surec { padding: 88px 0; background: var(--renk-ikincil); color: var(--renk-beyaz); }
.at-surec .bolum-baslik h2 { color: var(--renk-beyaz); }
.at-surec .bolum-baslik p  { color: rgba(255,255,255,.6); }
.at-adimlar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    counter-reset: adim;
}
.at-adim {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--yuvarlak-buyuk);
    padding: 24px 20px;
}
.at-adim-ust {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.at-no {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--renk-birincil);
    line-height: 1;
    flex-shrink: 0;
}
.at-adim-basligi h3  { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.at-adim-basligi span { font-size: .72rem; color: rgba(255,255,255,.45); }
.at-adim > p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 14px; }
.at-adim ul  { display: flex; flex-direction: column; gap: 6px; }
.at-adim li  {
    font-size: .76rem;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.at-adim li::before {
    content: '›';
    color: var(--renk-birincil-acik);
    flex-shrink: 0;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .at-nedir-grid { grid-template-columns: 1fr; }
    .at-adimlar    { grid-template-columns: repeat(2, 1fr); }
    .at-adimlar .at-adim:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .at-fark   { grid-template-columns: 1fr; }
    .at-adimlar { grid-template-columns: 1fr; }
    .at-adimlar .at-adim:last-child { max-width: none; }
}

/* Restoran konsept tipleri */
.konsept-tipler { padding: 72px 0; background: var(--renk-beyaz); }
.konsept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.konsept-kart {
    border-radius: var(--yuvarlak-buyuk);
    padding: 32px 24px;
    background: var(--renk-arka);
    border: 1px solid var(--renk-sinir);
    transition: var(--gecis);
    position: relative;
    overflow: hidden;
}
.konsept-kart::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--kk-renk, var(--renk-birincil));
}
.konsept-kart:hover { transform: translateY(-5px); box-shadow: var(--golge); }
.konsept-kart .kk-ust {
    width: 48px; height: 48px;
    border-radius: var(--yuvarlak);
    background: var(--kk-renk, var(--renk-birincil));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    opacity: .9;
}
.konsept-kart .kk-ust svg { width: 22px; height: 22px; color: #fff; }
.konsept-kart h3 { font-size: .95rem; font-weight: 800; color: var(--renk-ikincil); margin-bottom: 8px; }
.konsept-kart p  { font-size: .83rem; color: var(--renk-yazi-hafif); line-height: 1.6; }

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

/* PVC ürün karşılaştırma tablosu */
.pvc-karsilastirma { padding: 72px 0; background: var(--renk-beyaz); }
.pvc-tablo-sarici { overflow-x: auto; border-radius: var(--yuvarlak-buyuk); box-shadow: var(--golge); }
.pvc-tablo {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
    background: var(--renk-beyaz);
    min-width: 560px;
}
.pvc-tablo thead th {
    background: var(--renk-ikincil);
    color: rgba(255,255,255,.85);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.pvc-tablo thead th:first-child { border-radius: var(--yuvarlak-buyuk) 0 0 0; }
.pvc-tablo thead th:last-child  { border-radius: 0 var(--yuvarlak-buyuk) 0 0; }
.one-cikan-th {
    background: var(--renk-birincil) !important;
    color: var(--renk-beyaz) !important;
}
.pvc-tablo tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--renk-sinir);
    color: var(--renk-yazi);
}
.pvc-tablo tbody td:first-child { font-weight: 600; color: var(--renk-ikincil); }
.pvc-tablo tbody tr:last-child td { border-bottom: none; }
.pvc-tablo tbody tr:nth-child(even) td { background: var(--renk-arka); }
.one-cikan-td { background: rgba(200,134,10,.06) !important; font-weight: 600; color: var(--renk-birincil); }

/* Boya markalar / renk paleti bölümü */
.boya-markalar { padding: 72px 0; background: var(--renk-beyaz); }
.bm-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: center;
}
.bm-yazi h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--renk-ikincil); margin: 12px 0 16px; line-height: 1.2; }
.bm-yazi p  { font-size: .9rem; color: var(--renk-yazi-hafif); line-height: 1.7; margin-bottom: 20px; }
.bm-ozellik { display: flex; flex-direction: column; gap: 10px; }
.bm-ozellik li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--renk-yazi); }
.bm-ozellik svg { width: 16px; height: 16px; color: var(--renk-birincil); flex-shrink: 0; stroke-width: 2.5; }
.bm-kutu { text-align: center; }
.bm-renk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-radius: var(--yuvarlak-buyuk);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--golge);
}
.bm-renk-grid div { aspect-ratio: 1; transition: transform .2s; }
.bm-renk-grid div:hover { transform: scale(1.05); z-index: 1; }
.bm-kutu p { font-size: .78rem; color: var(--renk-yazi-hafif); }

/* Responsive */
@media (max-width: 1024px) {
    .bm-grid { grid-template-columns: 1fr; gap: 36px; }
    .bm-kutu { max-width: 340px; margin: 0 auto; }
    .kapsam-grid { grid-template-columns: repeat(2, 1fr); }
    .hizmet-neden-grid { grid-template-columns: 1fr; }
    .hn-cta-kutu { position: static; }
    .ilgili-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hizmet-hero { padding: 48px 0; }
    .hizmet-hero-butonlar { flex-direction: column; }
    .hizmet-hero-butonlar .btn { justify-content: center; }
    .hizmet-hero-istat { gap: 16px; }
    .kapsam-grid { grid-template-columns: 1fr; }
    .hs-adimlar { flex-direction: column; align-items: stretch; }
    .hs-adim { max-width: none; }
    .hs-ok { transform: rotate(90deg); align-self: center; }
    .ilgili-grid { grid-template-columns: repeat(2, 1fr); }
}
