/*
Theme Name: Kosanbilisim
Theme URI: https://www.kosanbilisim.com.tr
Author: KOSANBİLİSİM
Author URI: https://www.kosanbilisim.com.tr
Description: Türkiye Mezar Taşı Merkezi için KOSANBİLİSİM tarafından geliştirilen özel WordPress teması ( yönetim panelli).
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: mezartasi
*/

/* ═══════════════════════════════════════════════════════════
   1. CSS DEĞİŞKENLERİ
   ═══════════════════════════════════════════════════════════ */
:root {
    --color-primary:     #0a1628;
    --color-secondary:   #1a3a5c;
    --color-accent:      #1e6fbb;
    --color-accent-dark: #155fa0;
    --color-white:       #ffffff;
    --color-gray:        #8a95a3;
    --color-light-bg:    #f0f4f8;
    --color-border:      #d0dbe8;
    --color-text:        #1a2535;
    --color-text-light:  #4a5a6a;
    --font-body:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading:      'Playfair Display', Georgia, serif;
    --container-max:     1550px;
    --header-height:     64px;
    --topbar-height:     36px;
    --radius:            6px;
    --radius-lg:         12px;
    --transition:        all 0.3s ease;
    --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:         0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg:         0 8px 40px rgba(0,0,0,0.16);
}

/* ═══════════════════════════════════════════════════════════
   2. RESET
   ═══════════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; background:#060e1a; }
body { font-family:var(--font-body); color:var(--color-text); background:var(--color-white); line-height:1.6; overflow-x:hidden; }
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; transition:var(--transition); }
ul,ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea,select { font-family:inherit; }
h1,h2,h3,h4,h5,h6 { font-family:var(--font-heading); line-height:1.2; color:var(--color-primary); }

/* ═══════════════════════════════════════════════════════════
   3. LAYOUT & CONTAINER
   ═══════════════════════════════════════════════════════════ */
.container { max-width:var(--container-max); width:100%; margin:0 auto; padding:0 20px; }
.section-padding    { padding:80px 0; }
.section-padding-sm { padding:50px 0; }

/* ═══════════════════════════════════════════════════════════
   4. TİPOGRAFİ YARDIMCILARI
   ═══════════════════════════════════════════════════════════ */
.section-label {
    display:inline-block; font-size:0.75rem; font-weight:700;
    letter-spacing:2px; text-transform:uppercase;
    color:var(--color-accent); margin-bottom:12px;
}
.section-title {
    font-family:var(--font-heading);
    font-size:clamp(1.6rem,3vw,2.4rem);
    font-weight:700; color:var(--color-primary);
    margin-bottom:16px; position:relative;
}
.section-title::after {
    content:''; display:block; width:60px; height:3px;
    background:var(--color-accent); margin-top:12px;
}
.section-title.centered::after { margin:12px auto 0; }
.section-title-white { color:var(--color-white) !important; }
.section-title-white::after { background:var(--color-accent); }
.section-desc { color:var(--color-text-light); font-size:1rem; line-height:1.7; max-width:600px; }

/* ═══════════════════════════════════════════════════════════
   5. BUTONLAR
   ═══════════════════════════════════════════════════════════ */
.btn {
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 28px; border-radius:var(--radius);
    font-size:0.875rem; font-weight:600; letter-spacing:0.5px;
    transition:var(--transition); white-space:nowrap; cursor:pointer;
}
.btn-primary     { background:var(--color-primary); color:#fff; border:2px solid var(--color-primary); }
.btn-primary:hover { background:var(--color-secondary); border-color:var(--color-secondary); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-accent      { background:var(--color-accent); color:#fff; border:2px solid var(--color-accent); }
.btn-accent:hover { background:var(--color-accent-dark); border-color:var(--color-accent-dark); transform:translateY(-2px); box-shadow:0 4px 16px rgba(30,111,187,0.4); }
.btn-accent-outline { background:transparent; color:var(--color-accent); border:2px solid var(--color-accent); }
.btn-accent-outline:hover { background:var(--color-accent); color:#fff; transform:translateY(-2px); }
.btn-outline     { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background:rgba(255,255,255,0.1); border-color:#fff; transform:translateY(-2px); }
.btn-hero-dark   { background:rgba(13,27,46,0.85); color:#fff; border:2px solid rgba(255,255,255,0.25); backdrop-filter:blur(4px); font-size:0.82rem; font-weight:700; letter-spacing:1px; padding:13px 24px; }
.btn-hero-dark:hover { background:rgba(13,27,46,0.95); border-color:rgba(255,255,255,0.5); transform:translateY(-2px); color:#fff; }
.btn-hero-orange { background:var(--color-accent); color:#fff; border:2px solid var(--color-accent); font-size:0.82rem; font-weight:700; letter-spacing:1px; padding:13px 24px; }
.btn-hero-orange:hover { background:var(--color-accent-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(30,111,187,0.45); color:#fff; }
.btn-whatsapp    { background:#25d366; color:#fff; border:2px solid #25d366; border-radius:50px; padding:10px 20px; }
.btn-whatsapp:hover { background:#1da851; border-color:#1da851; transform:translateY(-2px); box-shadow:0 4px 16px rgba(37,211,102,0.4); }
.btn-lg  { padding:16px 36px; font-size:1rem; }
.btn-sm  { padding:8px 18px; font-size:0.8rem; }

/* ═══════════════════════════════════════════════════════════
   6. PLACEHOLDER
   ═══════════════════════════════════════════════════════════ */
.img-placeholder {
    background:#e8ecf0; display:flex; align-items:center;
    justify-content:center; color:#9aa3ad; font-size:0.8rem;
    font-weight:500; text-align:center; padding:10px;
    position:relative; overflow:hidden; width:100%; height:100%;
}
.img-placeholder::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(135deg,#e8ecf0 25%,#dde2e8 50%,#e8ecf0 75%);
}
.img-placeholder span { position:relative; z-index:1; }

/* ═══════════════════════════════════════════════════════════
   7. TOP BAR
   ═══════════════════════════════════════════════════════════ */
#topbar { background:var(--color-primary); height:var(--topbar-height); border-bottom:1px solid var(--color-border); }
#topbar .container { display:flex; align-items:center; justify-content:space-between; height:100%; }
.topbar-left,.topbar-right { display:flex; align-items:center; gap:20px; }
.topbar-item { display:flex; align-items:center; gap:6px; color:var(--color-gray); font-size:0.78rem; transition:var(--transition); }
.topbar-item:hover { color:var(--color-accent); }
.topbar-item i { color:var(--color-accent); font-size:0.8rem; }
.topbar-divider { width:1px; height:16px; background:var(--color-border); }
.topbar-social { display:flex; align-items:center; gap:12px; }
.topbar-social a { color:var(--color-gray); font-size:0.9rem; transition:var(--transition); }
.topbar-social a:hover { color:var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   8. HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
#masthead { background:var(--color-white); box-shadow:var(--shadow-sm); position:sticky; top:0; z-index:1000; transition:var(--transition); }
#masthead.scrolled { box-shadow:var(--shadow-md); }
#masthead .header-inner { display:flex; align-items:center; justify-content:space-between; height:var(--header-height); gap:12px; }
.site-branding { flex-shrink:0; }
.site-logo { display:flex; align-items:center; gap:9px; }
.logo-icon { width:36px; height:36px; background:var(--color-primary); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.logo-icon i { color:var(--color-accent); font-size:1rem; }
.logo-text { line-height:1.1; }
.logo-text .brand-main { display:block; font-family:var(--font-heading); font-size:0.88rem; font-weight:800; color:var(--color-primary); letter-spacing:0.2px; line-height:1.15; }
.logo-text .brand-sub  { display:block; font-size:0.55rem; font-weight:700; color:var(--color-accent); letter-spacing:2px; text-transform:uppercase; }
#site-navigation { flex:1; display:flex; justify-content:flex-end; }
.nav-menu { display:flex; align-items:center; gap:2px; }
.nav-menu > li { position:relative; }
.nav-menu > li > a { display:flex; align-items:center; gap:4px; padding:7px 9px; font-size:0.72rem; font-weight:700; color:var(--color-text); border-radius:var(--radius); white-space:nowrap; transition:var(--transition); letter-spacing:0.2px; text-transform:uppercase; }
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { color:var(--color-accent); background:rgba(30,111,187,0.08); }
.nav-menu > li > a .nav-arrow { font-size:0.65rem; transition:transform 0.3s; }
.nav-menu > li:hover > a .nav-arrow { transform:rotate(180deg); }
.dropdown-menu { position:absolute; top:calc(100% + 8px); left:0; min-width:220px; background:var(--color-white); border-radius:var(--radius); box-shadow:var(--shadow-lg); border:1px solid #eee; opacity:0; visibility:hidden; transform:translateY(-8px); transition:var(--transition); z-index:999; padding:8px 0; }
.nav-menu > li:hover .dropdown-menu { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-menu li a { display:flex; align-items:center; gap:10px; padding:10px 20px; font-size:0.85rem; font-weight:500; color:var(--color-text); transition:var(--transition); }
.dropdown-menu li a:hover { color:var(--color-accent); background:rgba(30,111,187,0.08); padding-left:24px; }
.dropdown-menu li a i { color:var(--color-accent); width:14px; text-align:center; font-size:0.8rem; }
.header-right { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--color-primary); transition:var(--transition); border-radius:2px; }
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   9. MOBİL MENÜ
   ═══════════════════════════════════════════════════════════ */
.mobile-menu-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:998; }
.mobile-menu { display:none; position:fixed; top:0; left:0; width:300px; height:100vh; background:var(--color-primary); z-index:999; padding:80px 0 40px; overflow-y:auto; transform:translateX(-100%); transition:transform 0.3s ease; }
.mobile-menu.open { transform:translateX(0); }
.mobile-menu-close { position:absolute; top:20px; right:20px; background:none; border:none; color:#fff; font-size:1.4rem; cursor:pointer; }
.mobile-menu ul { list-style:none; padding:0; margin:0; }
.mobile-menu ul li a { display:block; padding:14px 24px; color:#fff; font-size:0.9rem; font-weight:600; border-bottom:1px solid rgba(255,255,255,0.08); transition:var(--transition); }
.mobile-menu ul li a:hover { color:var(--color-accent); padding-left:32px; }
.mobile-sub { background:rgba(255,255,255,0.04); }
.mobile-sub li a { font-weight:400; color:var(--color-gray); font-size:0.85rem; padding-left:36px !important; }

/* ═══════════════════════════════════════════════════════════
   10. HERO
   ═══════════════════════════════════════════════════════════ */
#hero {
    min-height:640px; display:flex; align-items:center;
    position:relative; overflow:hidden; padding:80px 0;
    background-size:cover !important; background-position:center !important; background-repeat:no-repeat !important;
}
#hero::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to right, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.75) 55%, rgba(13,27,42,0.20) 100%);
    pointer-events:none; z-index:0;
}
#hero .container { position:relative; z-index:1; }
.hero-inner { display:grid; gap:50px; align-items:center; position:relative; z-index:1; }
.hero-content { color:#fff; }
.hero-label { display:inline-flex; align-items:center; gap:8px; background:rgba(30,111,187,0.15); border:1px solid rgba(30,111,187,0.3); border-radius:50px; padding:6px 16px; color:var(--color-accent); font-size:0.78rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; }
.hero-title { font-family:var(--font-heading); font-size:clamp(2rem,4vw,3.2rem); font-weight:800; color:#fff; line-height:1.1; margin-bottom:20px; }
.hero-title span { color:var(--color-accent); }
.hero-desc { color:rgba(255,255,255,0.75); font-size:1rem; line-height:1.7; margin-bottom:32px; max-width:520px; }
.hero-buttons { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:48px; }
.hero-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; padding-top:28px; border-top:1px solid rgba(255,255,255,0.12); }
.stat-item { display:flex; align-items:center; gap:10px; }
.stat-icon { width:38px; height:38px; background:rgba(30,111,187,0.15); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.stat-icon i { color:var(--color-accent); font-size:0.95rem; }
.stat-text { display:flex; flex-direction:column; }
.stat-number { display:block; font-family:var(--font-heading); font-size:1.4rem; font-weight:700; color:var(--color-accent); line-height:1; margin-bottom:2px; }
.stat-label  { font-size:0.68rem; color:rgba(255,255,255,0.6); font-weight:500; line-height:1.3; }
.hero-spacer { display:block; }
.hero-badge  { background:var(--color-accent); color:#fff; border-radius:var(--radius); padding:12px 16px; font-size:0.72rem; font-weight:800; text-align:center; text-transform:uppercase; letter-spacing:1px; line-height:1.3; box-shadow:0 4px 16px rgba(30,111,187,0.5); }

/* ═══════════════════════════════════════════════════════════
   11. KATEGORİ HIZLI NAV — 10 EŞİT SÜTUN
   ═══════════════════════════════════════════════════════════ */
#category-nav {
    background:var(--color-white);
    padding:24px 0;
    border-bottom:2px solid var(--color-light-bg);
    border-top:2px solid var(--color-light-bg);
}
.catnav-grid {
    display:grid;
    grid-template-columns:repeat(10,1fr);
    gap:10px;
}
.catnav-item {
    display:flex; flex-direction:column; align-items:center; gap:10px;
    padding:18px 8px 14px; border:2px solid var(--color-border);
    border-radius:var(--radius-lg); text-decoration:none; color:var(--color-text);
    transition:var(--transition); text-align:center; background:var(--color-white);
    position:relative; overflow:hidden;
}
.catnav-item::before {
    content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
    background:var(--color-accent); transform:scaleX(0); transition:transform 0.3s ease;
}
.catnav-item:hover::before { transform:scaleX(1); }
.catnav-item:hover { border-color:var(--color-accent); color:var(--color-accent); transform:translateY(-3px); box-shadow:0 6px 20px rgba(30,111,187,0.15); }
.catnav-all { background:var(--color-primary); border-color:var(--color-primary); color:#fff; }
.catnav-all:hover { background:var(--color-secondary); border-color:var(--color-secondary); color:#fff; }
.catnav-all::before { background:var(--color-accent); }
.catnav-icon { width:44px; height:44px; border-radius:50%; background:rgba(30,111,187,0.08); display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--color-accent); transition:var(--transition); }
.catnav-item:hover .catnav-icon { background:var(--color-accent); color:#fff; transform:scale(1.1); }
.catnav-all .catnav-icon { background:rgba(255,255,255,0.12); color:var(--color-accent); }
.catnav-all:hover .catnav-icon { background:var(--color-accent); color:#fff; }
.catnav-name { font-size:0.7rem; font-weight:700; line-height:1.25; text-align:center; }

/* ═══════════════════════════════════════════════════════════
   12. MEZAR MODELLERİ — SHOWCASE (Sol başlık + Sağ mozaik)
   ═══════════════════════════════════════════════════════════ */
#mezar-models { padding:0; background:var(--color-light-bg); overflow:hidden; }

.showcase-layout {
    display:grid; grid-template-columns:360px 1fr; gap:0; min-height:680px;
}
.showcase-left {
    background:var(--color-white); padding:60px 44px 48px;
    display:flex; flex-direction:column; gap:16px;
    border-right:1px solid var(--color-border); position:relative;
}
.showcase-left::after {
    content:''; position:absolute; right:-1px; top:10%; bottom:10%; width:1px;
    background:linear-gradient(180deg,transparent,rgba(30,111,187,0.4) 30%,rgba(30,111,187,0.4) 70%,transparent);
}
.showcase-left .section-title { font-size:2rem; line-height:1.1; margin-bottom:0; }

.showcase-featured-img {
    flex:1; border-radius:var(--radius-lg); overflow:hidden;
    position:relative; min-height:280px; margin:8px 0; box-shadow:var(--shadow-md);
}
.showcase-featured-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s ease; }
.showcase-featured-img:hover img { transform:scale(1.04); }
.showcase-featured-badge {
    position:absolute; top:12px; left:12px;
    background:var(--color-accent); color:#fff;
    font-size:0.68rem; font-weight:700; padding:5px 12px;
    border-radius:50px; display:flex; align-items:center; gap:5px;
    box-shadow:0 3px 10px rgba(30,111,187,0.4);
}
.showcase-cta { margin-top:auto; justify-content:center; width:100%; }

/* Mozaik ızgara */
.showcase-right {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:repeat(3,200px);
    gap:4px; padding:4px; background:var(--color-border);
}
.showcase-card { position:relative; overflow:hidden; display:block; text-decoration:none; background:var(--color-secondary); }
.showcase-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.45s ease; }
.showcase-card:hover img { transform:scale(1.08); }
.showcase-card.span-tall { grid-row:span 2; }
.showcase-card.span-wide { grid-column:span 2; }
.showcase-card-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(10,22,40,0.85) 0%,rgba(10,22,40,0.2) 50%,transparent 100%);
    display:flex; align-items:flex-end; justify-content:space-between;
    padding:14px 16px; opacity:0; transition:opacity 0.3s ease;
}
.showcase-card:hover .showcase-card-overlay { opacity:1; }
.showcase-card-label { font-size:0.78rem; font-weight:700; color:#fff; line-height:1.3; }
.showcase-card-arrow {
    width:28px; height:28px; background:var(--color-accent); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:0.7rem; flex-shrink:0; transition:transform 0.3s ease;
}
.showcase-card:hover .showcase-card-arrow { transform:translateX(3px); }

/* ═══════════════════════════════════════════════════════════
   13. TEZGAH MODELLERİ — 7 KOLONLU STRIP
   ═══════════════════════════════════════════════════════════ */
#tezgah-models { background:var(--color-primary); padding:0 0 64px; overflow:hidden; }

.tezgah-section-head { padding:60px 0 40px; }
.tezgah-head-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.tezgah-head-inner .section-title { color:var(--color-white); margin-bottom:0; }

.tezgah-strip-scroll {
    display:grid; grid-template-columns:repeat(7,1fr); gap:3px;
}
.tezgah-strip-card {
    position:relative; overflow:hidden; display:block;
    height:340px; background:var(--color-secondary); text-decoration:none;
    transition:transform 0.35s ease;
}
.tezgah-strip-card:hover { transform:scaleY(1.02); z-index:2; }
.tezgah-strip-img { position:absolute; inset:0; }
.tezgah-strip-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s ease; filter:brightness(0.7); }
.tezgah-strip-card:hover .tezgah-strip-img img { transform:scale(1.1); filter:brightness(0.85); }
.tezgah-strip-grad {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(10,22,40,0.92) 0%,rgba(10,22,40,0.4) 50%,rgba(10,22,40,0.1) 100%);
}
.tezgah-strip-info {
    position:absolute; bottom:0; left:0; right:0; padding:20px 16px;
    display:flex; flex-direction:column; align-items:flex-start; gap:6px; z-index:1;
    transform:translateY(28px); transition:transform 0.35s ease;
}
.tezgah-strip-card:hover .tezgah-strip-info { transform:translateY(0); }
.tezgah-strip-icon { font-size:1.4rem; color:var(--color-accent); margin-bottom:4px; display:block; }
.tezgah-strip-title { font-family:var(--font-heading); font-size:0.88rem; font-weight:700; color:#fff; line-height:1.3; display:block; }
.tezgah-strip-cta { font-size:0.7rem; font-weight:700; color:var(--color-accent); display:inline-flex; align-items:center; gap:4px; opacity:0; transition:opacity 0.3s ease; }
.tezgah-strip-card:hover .tezgah-strip-cta { opacity:1; }

/* ═══════════════════════════════════════════════════════════
   14. NEDEN BİZ
   ═══════════════════════════════════════════════════════════ */
#neden-biz { padding:72px 0; background:var(--color-light-bg); }
.neden-header { text-align:center; margin-bottom:44px; }
.neden-header .section-title::after { margin:10px auto 0; }
.features-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.feature-card {
    background:var(--color-white); border-radius:12px; padding:28px 14px 22px;
    text-align:center; border:1px solid #dde4ed; transition:var(--transition);
    box-shadow:0 1px 6px rgba(10,22,40,0.07); display:flex; flex-direction:column; align-items:center;
}
.feature-card:hover { border-color:var(--color-accent); transform:translateY(-5px); box-shadow:0 10px 30px rgba(30,111,187,0.14); }
.feature-icon-top { width:64px; height:64px; border-radius:50%; background:rgba(30,111,187,0.09); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; transition:var(--transition); border:2px solid rgba(30,111,187,0.12); }
.feature-icon-top i { font-size:1.6rem; color:var(--color-accent); transition:var(--transition); }
.feature-card:hover .feature-icon-top { background:var(--color-accent); border-color:var(--color-accent); }
.feature-card:hover .feature-icon-top i { color:#fff; }
.feature-title { font-size:0.88rem; font-weight:700; color:var(--color-primary); margin-bottom:8px; font-family:var(--font-heading); line-height:1.3; }
.feature-desc  { font-size:0.74rem; color:var(--color-text-light); line-height:1.55; }

/* ═══════════════════════════════════════════════════════════
   15. ÜRETİM SÜRECİ — SPLIT PANEL
   ═══════════════════════════════════════════════════════════ */
#uretim-sureci { padding:0; background:var(--color-primary); position:relative; overflow:hidden; }
.sp-bg-grid { position:absolute; inset:0; background-image:radial-gradient(circle,rgba(30,111,187,0.12) 1px,transparent 1px); background-size:32px 32px; pointer-events:none; z-index:0; }
.sp-inner { display:grid; grid-template-columns:340px 1fr; position:relative; z-index:1; }
.sp-panel { background:var(--color-secondary); padding:64px 40px; border-right:1px solid rgba(30,111,187,0.15); }
.sp-panel-sticky { position:sticky; top:calc(var(--header-height) + var(--topbar-height) + 24px); }
.sp-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:0.68rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--color-accent); margin-bottom:20px; }
.sp-eyebrow::before { content:''; display:inline-block; width:20px; height:1.5px; background:var(--color-accent); }
.sp-title { font-family:var(--font-heading); font-size:2.4rem; font-weight:700; line-height:1.1; color:#fff; margin-bottom:20px; }
.sp-subtitle { font-size:0.84rem; line-height:1.7; color:rgba(255,255,255,0.5); margin-bottom:32px; }
.sp-cta { display:inline-flex; align-items:center; gap:10px; font-size:0.75rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:#fff; text-decoration:none; padding:12px 22px 12px 18px; border:1px solid rgba(255,255,255,0.18); border-radius:4px; background:rgba(255,255,255,0.04); transition:background 0.25s,border-color 0.25s,gap 0.25s; margin-bottom:36px; }
.sp-cta:hover { background:var(--color-accent); border-color:var(--color-accent); gap:14px; }
.sp-cta-arrow { display:flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:rgba(255,255,255,0.1); font-size:0.65rem; }
.sp-progress-track { width:100%; height:2px; background:rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; }
.sp-progress-fill  { width:60%; height:100%; background:linear-gradient(90deg,var(--color-accent),rgba(30,111,187,0.3)); border-radius:2px; }
.sp-steps { display:flex; flex-direction:column; }
.sp-step { display:grid; grid-template-columns:80px 72px 1fr auto; align-items:center; gap:0 28px; padding:28px 48px 28px 36px; border-bottom:1px solid rgba(255,255,255,0.04); transition:background 0.22s ease; }
.sp-step:last-child { border-bottom:none; }
.sp-step--alt { background:rgba(255,255,255,0.025); }
.sp-step:hover { background:rgba(30,111,187,0.07); }
.sp-step-index { font-size:3.2rem; font-weight:900; color:rgba(30,111,187,0.14); line-height:1; letter-spacing:-0.06em; user-select:none; transition:color 0.22s; }
.sp-step:hover .sp-step-index { color:rgba(30,111,187,0.32); }
.sp-step-hex { position:relative; width:60px; height:69px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sp-step-hex svg { position:absolute; inset:0; width:100%; height:100%; color:rgba(30,111,187,0.25); transition:color 0.25s; }
.sp-step:hover .sp-step-hex svg { color:rgba(30,111,187,0.6); }
.sp-step-hex i { position:relative; z-index:1; font-size:1.15rem; color:var(--color-accent); transition:transform 0.25s,color 0.25s; }
.sp-step:hover .sp-step-hex i { transform:scale(1.15); color:#fff; }
.sp-step-body { flex:1; }
.sp-step-name { font-size:0.82rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; color:#fff; margin-bottom:6px; }
.sp-step-text { font-size:0.79rem; color:rgba(255,255,255,0.45); line-height:1.6; margin:0; max-width:380px; }
.sp-step-tag  { font-size:0.65rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:rgba(30,111,187,0.5); white-space:nowrap; transition:color 0.22s; }
.sp-step:hover .sp-step-tag { color:var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   16. REFERANS DUVAR
   ═══════════════════════════════════════════════════════════ */
#referanslar { padding:72px 0; background:var(--color-light-bg); }
.pg-header { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:28px; flex-wrap:wrap; }
.ref-wall { display:grid; grid-template-columns:repeat(5,1fr); grid-auto-rows:200px; gap:6px; }
.ref-card { position:relative; overflow:hidden; border-radius:var(--radius); background:var(--color-secondary); cursor:pointer; }
.ref-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.ref-card:hover img { transform:scale(1.08); }
.ref-tall { grid-row:span 2; }
.ref-wide { grid-column:span 2; }
.ref-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,22,40,0.88) 0%,rgba(10,22,40,0.25) 45%,transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:12px 14px; opacity:0; transition:opacity 0.28s ease; }
.ref-card:hover .ref-overlay { opacity:1; }
.ref-cat  { display:inline-block; font-size:0.58rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:#fff; border-radius:50px; padding:3px 9px; margin-bottom:5px; width:fit-content; }
.ref-name { font-size:0.75rem; font-weight:600; color:rgba(255,255,255,0.92); line-height:1.3; display:block; }

/* ═══════════════════════════════════════════════════════════
   17. VİDEO + HİZMET BÖLGELERİ
   ═══════════════════════════════════════════════════════════ */
#video-hizmet { padding:80px 0; background:var(--color-white); }
.video-hizmet-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.video-block { background:var(--color-primary); border-radius:var(--radius-lg); overflow:hidden; position:relative; min-height:320px; display:flex; flex-direction:column; }
.video-thumb { flex:1; position:relative; display:flex; align-items:center; justify-content:center; background:var(--color-secondary); min-height:220px; }
.video-play-center { width:64px; height:64px; background:var(--color-accent); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:var(--transition); box-shadow:0 0 0 12px rgba(30,111,187,0.15); }
.video-play-center:hover { transform:scale(1.1); box-shadow:0 0 0 16px rgba(30,111,187,0.2); }
.video-play-center i { color:var(--color-primary); font-size:1.4rem; margin-left:4px; }
.video-info { padding:20px 24px; }
.video-info p { color:var(--color-gray); font-size:0.85rem; line-height:1.6; margin-bottom:12px; }
.video-link { color:var(--color-accent); font-size:0.85rem; font-weight:600; display:inline-flex; align-items:center; gap:6px; }
.video-link:hover { gap:10px; }
.hizmet-block { background:var(--color-light-bg); border-radius:var(--radius-lg); padding:32px; }
.hizmet-desc { color:var(--color-text-light); font-size:0.875rem; line-height:1.6; margin-bottom:20px; }
.sehir-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:16px; }
.sehir-item { display:flex; align-items:center; gap:6px; font-size:0.8rem; color:var(--color-text); font-weight:500; }
.sehir-item i { color:var(--color-accent); font-size:0.7rem; }

/* ═══════════════════════════════════════════════════════════
   18. BLOG + SSS SPLIT PANEL
   ═══════════════════════════════════════════════════════════ */
#blog-sss { padding:0; background:var(--color-white); }
.bsss-wrap { display:grid; grid-template-columns:1fr 1fr; min-height:640px; }
.bsss-blog-panel { background:var(--color-primary); padding:64px 52px; position:relative; overflow:hidden; }
.bsss-blog-panel::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%; border:1px solid rgba(30,111,187,0.08); bottom:-140px; right:-100px; pointer-events:none; }
.bsss-blog-inner { position:relative; z-index:1; height:100%; display:flex; flex-direction:column; }
.bsss-blog-head  { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:36px; gap:16px; }
.bsss-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:0.65rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--color-accent); margin-bottom:10px; }
.bsss-eyebrow::before { content:''; width:18px; height:1.5px; background:var(--color-accent); display:inline-block; }
.bsss-title { font-family:var(--font-heading); font-size:1.9rem; font-weight:700; line-height:1.15; color:#fff; margin:0; }
.bsss-title--dark { color:var(--color-primary); }
.bsss-all-link { display:inline-flex; align-items:center; gap:6px; font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.55); text-decoration:none; white-space:nowrap; margin-top:6px; transition:color 0.2s,gap 0.2s; }
.bsss-all-link:hover { color:var(--color-accent); gap:10px; }
.bsss-all-link--dark { color:var(--color-text-light); }
.bsss-all-link--dark:hover { color:var(--color-accent); }
.bsss-blog-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; flex:1; }
.bc2 { display:flex; flex-direction:column; border-radius:10px; overflow:hidden; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.07); text-decoration:none; color:inherit; transition:background 0.25s,border-color 0.25s,transform 0.25s; cursor:pointer; }
.bc2:hover { background:rgba(30,111,187,0.12); border-color:rgba(30,111,187,0.28); transform:translateY(-4px); }
.bc2-img { width:100%; height:110px; overflow:hidden; flex-shrink:0; }
.bc2-img img,.bc2-img .img-placeholder { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.35s ease; }
.bc2:hover .bc2-img img { transform:scale(1.06); }
.bc2-body { padding:12px 12px 14px; display:flex; flex-direction:column; gap:4px; flex:1; }
.bc2-date { font-size:0.62rem; color:rgba(255,255,255,0.4); display:flex; align-items:center; gap:4px; }
.bc2-title { font-size:0.76rem; font-weight:700; color:rgba(255,255,255,0.88); line-height:1.4; flex:1; }
.bc2-more { font-size:0.62rem; font-weight:700; color:var(--color-accent); display:inline-flex; align-items:center; gap:4px; margin-top:4px; transition:gap 0.2s; }
.bc2:hover .bc2-more { gap:7px; }
.bsss-sss-panel { background:var(--color-light-bg); padding:64px 52px; border-left:1px solid var(--color-border); }
.bsss-sss-inner { height:100%; display:flex; flex-direction:column; }
.bsss-sss-head { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:36px; gap:16px; }
.bsss-accordion { flex:1; }
.bsss-item { border-bottom:1px solid var(--color-border); }
.bsss-btn { width:100%; display:flex; align-items:center; gap:14px; padding:18px 0; background:none; border:none; cursor:pointer; text-align:left; }
.bsss-q-num { font-size:0.65rem; font-weight:800; color:rgba(30,111,187,0.4); font-family:'Inter',sans-serif; flex-shrink:0; width:22px; transition:color 0.2s; }
.bsss-btn:hover .bsss-q-num,.bsss-btn.active .bsss-q-num { color:var(--color-accent); }
.bsss-q-text { flex:1; font-size:0.875rem; font-weight:600; color:var(--color-text); line-height:1.4; transition:color 0.2s; }
.bsss-btn:hover .bsss-q-text,.bsss-btn.active .bsss-q-text { color:var(--color-accent); }
.bsss-icon { width:28px; height:28px; border-radius:50%; background:var(--color-white); border:1px solid var(--color-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:0.72rem; color:var(--color-accent); transition:background 0.25s,border-color 0.25s,transform 0.25s; }
.bsss-btn.active .bsss-icon { background:var(--color-accent); border-color:var(--color-accent); color:#fff; transform:rotate(45deg); }
.bsss-ans { display:none; padding:0 0 18px 36px; font-size:0.84rem; color:var(--color-text-light); line-height:1.65; }
.bsss-ans.open { display:block; }
.accordion-item { border-bottom:1px solid #eee; }
.accordion-btn { width:100%; display:flex; align-items:center; justify-content:space-between; padding:16px 0; font-size:0.875rem; font-weight:600; color:var(--color-text); background:none; border:none; cursor:pointer; text-align:left; gap:12px; transition:var(--transition); }
.accordion-btn:hover { color:var(--color-accent); }
.accordion-icon { width:28px; height:28px; border-radius:50%; background:var(--color-light-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:var(--transition); font-size:0.75rem; color:var(--color-accent); }
.accordion-btn.active .accordion-icon { background:var(--color-accent); color:#fff; transform:rotate(45deg); }
.accordion-content { display:none; padding:0 0 16px; font-size:0.85rem; color:var(--color-text-light); line-height:1.6; }
.accordion-content.open { display:block; }

/* ═══════════════════════════════════════════════════════════
   19. CTA BANNER
   ═══════════════════════════════════════════════════════════ */
#cta-banner { padding:60px 0; background:var(--color-primary); }
.cta-inner { display:flex; align-items:center; gap:40px; flex-wrap:wrap; }
.cta-text { flex:1; min-width:280px; }
.cta-title { font-family:var(--font-heading); font-size:clamp(1.4rem,2.5vw,2rem); font-weight:700; color:#fff; margin-bottom:8px; }
.cta-desc  { color:var(--color-gray); font-size:0.9rem; }
.cta-features { display:flex; gap:32px; flex-wrap:wrap; }
.cta-feature { display:flex; align-items:center; gap:10px; color:#fff; }
.cta-feature-icon { width:44px; height:44px; background:rgba(30,111,187,0.15); border:1px solid rgba(30,111,187,0.3); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cta-feature-icon i { color:var(--color-accent); font-size:1rem; }
.cta-feature-label { font-size:0.75rem; font-weight:600; color:rgba(255,255,255,0.6); }
.cta-feature-value { font-size:0.875rem; font-weight:700; color:#fff; }
.cta-buttons { display:flex; gap:12px; flex-shrink:0; }

/* ═══════════════════════════════════════════════════════════
   20. FOOTER
   ═══════════════════════════════════════════════════════════ */
#colophon { background:#060e1a; position:relative; }
.footer-trust-bar { background:var(--color-secondary); border-bottom:1px solid rgba(255,255,255,0.06); padding:20px 0; }
.footer-trust-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-trust-item { display:flex; align-items:center; gap:12px; flex:1; min-width:140px; }
.footer-trust-item + .footer-trust-item { padding-left:24px; border-left:1px solid rgba(255,255,255,0.08); }
.fti-icon { width:40px; height:40px; background:rgba(30,111,187,0.15); border:1px solid rgba(30,111,187,0.25); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.fti-icon i { color:var(--color-accent); font-size:1rem; }
.fti-num   { display:block; font-family:var(--font-heading); font-size:1.1rem; font-weight:700; color:#fff; }
.fti-label { font-size:0.72rem; color:rgba(255,255,255,0.45); font-weight:500; }
.footer-main { padding:64px 0 40px; }
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1.2fr 1.2fr 1fr 1.6fr; gap:40px; align-items:start; }
.footer-brand .site-logo { margin-bottom:20px; display:inline-flex; }
.footer-brand .logo-icon { background:rgba(30,111,187,0.15); border:1px solid rgba(30,111,187,0.25); }
.footer-brand .brand-main { color:#fff; font-size:0.9rem; }
.footer-brand .brand-sub  { color:var(--color-accent); }
.footer-about { color:rgba(255,255,255,0.45); font-size:0.81rem; line-height:1.75; margin-bottom:24px; max-width:280px; }
.footer-social { display:flex; gap:8px; margin-bottom:28px; }
.social-btn { width:38px; height:38px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:8px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); font-size:0.9rem; transition:var(--transition); text-decoration:none; }
.social-btn:hover { background:var(--color-accent); border-color:var(--color-accent); color:#fff; transform:translateY(-3px); box-shadow:0 6px 16px rgba(30,111,187,0.35); }
.footer-cert { display:flex; align-items:center; gap:8px; padding:10px 14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07); border-radius:8px; width:fit-content; }
.footer-cert i { color:#25d366; font-size:1rem; }
.footer-cert span { font-size:0.72rem; color:rgba(255,255,255,0.55); line-height:1.3; }
.footer-cert strong { color:#fff; display:block; font-size:0.76rem; }
.footer-col-title { font-size:0.7rem; font-weight:800; color:#fff; text-transform:uppercase; letter-spacing:2px; margin-bottom:20px; padding-bottom:12px; position:relative; display:block; }
.footer-col-title::after { content:''; position:absolute; bottom:0; left:0; width:28px; height:2px; background:var(--color-accent); border-radius:2px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,0.45); font-size:0.81rem; transition:color 0.2s,padding-left 0.2s; display:flex; align-items:center; gap:7px; line-height:1.4; }
.footer-links a::before { content:''; width:4px; height:4px; border-radius:50%; background:var(--color-accent); flex-shrink:0; opacity:0.5; transition:opacity 0.2s; }
.footer-links a:hover { color:#fff; padding-left:4px; }
.footer-links a:hover::before { opacity:1; }
.footer-links a strong { color:var(--color-accent); font-weight:700; }
.footer-contact { display:flex; flex-direction:column; gap:16px; }
.contact-item { display:flex; align-items:flex-start; gap:12px; }
.contact-item-icon { width:34px; height:34px; background:rgba(30,111,187,0.12); border:1px solid rgba(30,111,187,0.2); border-radius:8px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
.contact-item-icon i { color:var(--color-accent); font-size:0.8rem; }
.contact-item-text { font-size:0.8rem; color:rgba(255,255,255,0.45); line-height:1.5; }
.contact-item-text strong { color:#fff; display:block; font-size:0.78rem; font-weight:700; margin-bottom:2px; }
.contact-item-text a { color:rgba(255,255,255,0.45); transition:color 0.2s; }
.contact-item-text a:hover { color:var(--color-accent); }
.footer-whatsapp-btn { display:inline-flex; align-items:center; gap:8px; background:rgba(37,211,102,0.1); border:1px solid rgba(37,211,102,0.25); border-radius:8px; padding:10px 16px; color:#25d366; font-size:0.8rem; font-weight:600; text-decoration:none; transition:var(--transition); margin-top:4px; width:100%; justify-content:center; }
.footer-whatsapp-btn:hover { background:#25d366; border-color:#25d366; color:#fff; transform:translateY(-2px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding:20px 0; }
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-copy { color:rgba(255,255,255,0.3); font-size:0.76rem; }
.footer-copy strong { color:rgba(255,255,255,0.55); }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { color:rgba(255,255,255,0.3); font-size:0.75rem; transition:color 0.2s; }
.footer-bottom-links a:hover { color:var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   21. SAYFA ŞABLONLARI (archive, single, page)
   ═══════════════════════════════════════════════════════════ */
.page-hero { background:linear-gradient(135deg,var(--color-primary) 0%,var(--color-secondary) 100%); padding:52px 0 36px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle,rgba(30,111,187,0.12) 1px,transparent 1px); background-size:28px 28px; pointer-events:none; }
.page-hero-title { font-family:var(--font-heading); font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; color:#fff; margin:8px 0 0; line-height:1.1; }
.breadcrumb { display:flex; align-items:center; flex-wrap:wrap; gap:6px; font-size:0.8rem; color:rgba(255,255,255,0.55); margin-top:16px; position:relative; z-index:1; }
.breadcrumb a { color:rgba(255,255,255,0.55); transition:var(--transition); }
.breadcrumb a:hover { color:var(--color-accent); }
.breadcrumb .sep { color:rgba(255,255,255,0.25); font-size:0.65rem; }
.breadcrumb .current { color:var(--color-accent); font-weight:600; }
.page-content { padding:60px 0; }
.archive-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.model-card { background:var(--color-white); border-radius:var(--radius); overflow:hidden; border:2px solid transparent; transition:var(--transition); box-shadow:var(--shadow-sm); text-decoration:none; color:var(--color-text); display:block; }
.model-card:hover { border-color:var(--color-accent); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.model-image { width:100%; height:200px; overflow:hidden; }
.model-image img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s ease; }
.model-card:hover .model-image img { transform:scale(1.06); }
.model-image .img-placeholder { width:100%; height:100%; }
.model-info { padding:16px; }
.model-name { font-size:0.9rem; font-weight:700; color:var(--color-primary); margin-bottom:4px; font-family:var(--font-heading); }
.model-code { font-size:0.75rem; color:var(--color-gray); margin-bottom:10px; }
.model-link { font-size:0.8rem; font-weight:600; color:var(--color-accent); display:flex; align-items:center; gap:4px; transition:var(--transition); }
.model-card:hover .model-link { gap:8px; }
.mezar-detail { padding:60px 0; }
.mezar-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.mezar-gallery-main { width:100%; height:400px; border-radius:var(--radius-lg); overflow:hidden; margin-bottom:16px; }
.mezar-gallery-main img,.mezar-gallery-main .img-placeholder { width:100%; height:100%; object-fit:cover; }
.mezar-specs { background:var(--color-light-bg); border-radius:var(--radius); padding:24px; margin:24px 0; }
.mezar-specs h3 { font-size:1rem; color:var(--color-primary); margin-bottom:16px; font-family:var(--font-heading); }
.spec-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid #eee; font-size:0.85rem; }
.spec-row:last-child { border-bottom:none; }
.spec-label { color:var(--color-gray); font-weight:500; }
.spec-value { color:var(--color-primary); font-weight:600; }

/* ═══════════════════════════════════════════════════════════
   22. KURUMSAL SAYFA STİLLERİ
   ═══════════════════════════════════════════════════════════ */
.content-area { max-width:900px; margin:0 auto; }
.content-area h2,.content-area h3 { font-family:var(--font-heading); color:var(--color-primary); margin:24px 0 12px; }
.content-area p { color:var(--color-text-light); line-height:1.8; margin-bottom:16px; }
.content-area ul,.content-area ol { padding-left:20px; color:var(--color-text-light); line-height:1.8; }

/* ═══════════════════════════════════════════════════════════
   23. RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* 1400px */
@media (max-width:1400px) {
    .footer-grid { grid-template-columns:2fr 1fr 1fr 1fr 1fr 1.4fr; gap:32px; }
    .tezgah-strip-scroll { grid-template-columns:repeat(4,1fr); }
    .tezgah-strip-card { height:280px; }
}

/* 1200px */
@media (max-width:1200px) {
    .features-grid { grid-template-columns:repeat(3,1fr); }
    .footer-grid   { grid-template-columns:1fr 1fr 1fr; gap:32px; }
    .catnav-grid   { grid-template-columns:repeat(5,1fr); }
    .showcase-layout { grid-template-columns:300px 1fr; }
    .showcase-left { padding:44px 28px 36px; }
    .ref-wall      { grid-template-columns:repeat(4,1fr); }
    .ref-wide      { grid-column:span 1; }
}

/* 992px */
@media (max-width:992px) {
    #topbar { display:none; }
    .hamburger { display:flex; }
    #site-navigation { display:none; }
    .hero-inner { grid-template-columns:1fr; }
    .hero-stats { grid-template-columns:repeat(2,1fr); }
    .showcase-layout { grid-template-columns:1fr; }
    .showcase-left { border-right:none; border-bottom:1px solid var(--color-border); padding:40px 24px; }
    .showcase-left::after { display:none; }
    .showcase-right { grid-template-rows:repeat(3,180px); }
    .sp-inner { grid-template-columns:1fr; }
    .sp-panel { border-right:none; border-bottom:1px solid rgba(30,111,187,0.15); }
    .sp-panel-sticky { position:static; }
    .video-hizmet-grid { grid-template-columns:1fr; }
    .bsss-wrap { grid-template-columns:1fr; }
    .archive-grid { grid-template-columns:repeat(2,1fr); }
    .mezar-detail-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .footer-trust-bar { display:none; }
    .tezgah-strip-scroll { grid-template-columns:repeat(3,1fr); }
    .tezgah-head-inner { flex-direction:column; align-items:flex-start; }
    .tezgah-strip-info { transform:translateY(0); }
    .tezgah-strip-cta  { opacity:1; }
}

/* 768px */
@media (max-width:768px) {
    .features-grid   { grid-template-columns:repeat(2,1fr); }
    .catnav-grid     { grid-template-columns:repeat(4,1fr); gap:8px; }
    .catnav-item     { padding:14px 6px 10px; }
    .catnav-icon     { width:36px; height:36px; font-size:0.9rem; }
    .catnav-name     { font-size:0.65rem; }
    .ref-wall        { grid-template-columns:repeat(3,1fr); grid-auto-rows:160px; }
    .ref-tall        { grid-row:span 1; }
    .ref-overlay     { opacity:1; }
    .footer-grid     { grid-template-columns:1fr 1fr; }
    .cta-inner       { flex-direction:column; align-items:flex-start; }
    .tezgah-strip-scroll { grid-template-columns:repeat(2,1fr); }
    .tezgah-strip-card   { height:240px; }
    .bsss-blog-panel,.bsss-sss-panel { padding:40px 24px; }
    .sehir-grid { grid-template-columns:repeat(3,1fr); }
}

/* 480px */
@media (max-width:480px) {
    .hero-buttons    { flex-direction:column; }
    .hero-buttons .btn { width:100%; justify-content:center; }
    .features-grid   { grid-template-columns:1fr; }
    .catnav-grid     { grid-template-columns:repeat(3,1fr); }
    .showcase-right  { grid-template-columns:repeat(2,1fr); }
    .showcase-card.span-wide { grid-column:span 1; }
    .ref-wall        { grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
    .footer-grid     { grid-template-columns:1fr; }
    .cta-features    { flex-direction:column; gap:16px; }
    .footer-bottom-inner { flex-direction:column; text-align:center; }
    .bsss-blog-cards { grid-template-columns:1fr; }
    .sehir-grid      { grid-template-columns:repeat(2,1fr); }
    .tezgah-strip-scroll { grid-template-columns:repeat(2,1fr); }
    .archive-grid    { grid-template-columns:repeat(2,1fr); }
    .hero-badge      { top:8px; right:8px; }
}

/* ╔══════════════════════════════════════════════════════════
   ANA SAYFA YENİ TASARIM — hp-* prefix
   ╚══════════════════════════════════════════════════════════ */

/* ─── ORTAK ──────────────────────────────────────────────── */
.hp-section { padding:80px 0; }
.hp-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:0.72rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--color-accent); margin-bottom:10px; }
.hp-eyebrow::before { content:''; width:20px; height:2px; background:var(--color-accent); display:inline-block; }
.hp-eyebrow--accent { color:var(--color-accent); }
.hp-eyebrow--accent::before { background:var(--color-accent); }
.hp-section-title { font-family:var(--font-heading); font-size:clamp(1.5rem,2.5vw,2.2rem); font-weight:800; color:var(--color-primary); margin-bottom:12px; line-height:1.15; }
.hp-section-title--white { color:#fff !important; }
.hp-section-desc { color:var(--color-text-light); font-size:0.95rem; line-height:1.7; max-width:560px; }
.hp-section-header { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:40px; }
.hp-section-header--dark {}
.hp-section-header-left {}
.hp-all-link { display:inline-flex; align-items:center; gap:7px; font-size:0.82rem; font-weight:700; color:var(--color-accent); transition:gap 0.25s; text-decoration:none; white-space:nowrap; margin-top:6px; }
.hp-all-link:hover { gap:12px; }
.hp-all-link--light { color:rgba(255,255,255,0.65); }
.hp-all-link--light:hover { color:#fff; }

/* ─── A: KATEGORİ ŞERİDİ ─────────────────────────────────── */
.hp-cats-strip {
    background:var(--color-primary);
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,0.06);
}
.hp-cats-inner {
    display:flex; flex-wrap:wrap; gap:8px; justify-content:center;
}
.hp-cat-pill {
    display:inline-flex; align-items:center; gap:7px;
    padding:9px 16px; border-radius:50px;
    border:1px solid rgba(255,255,255,0.12);
    color:rgba(255,255,255,0.75); font-size:0.78rem; font-weight:600;
    text-decoration:none; transition:var(--transition); white-space:nowrap;
    background:rgba(255,255,255,0.04);
}
.hp-cat-pill i { color:var(--color-accent); font-size:0.82rem; }
.hp-cat-pill:hover { background:rgba(30,111,187,0.2); border-color:var(--color-accent); color:#fff; transform:translateY(-2px); }
.hp-cat-all { background:var(--color-accent); border-color:var(--color-accent); color:#fff; font-weight:700; }
.hp-cat-all i { color:#fff; }
.hp-cat-all:hover { background:var(--color-accent-dark); border-color:var(--color-accent-dark); }

/* ─── B: MEZAR BENTO ─────────────────────────────────────── */
.hp-mezar-section { background:var(--color-light-bg); }

.hp-bento {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:200px;
    gap:6px;
}

.bento-card {
    position:relative; overflow:hidden; display:block;
    border-radius:var(--radius); background:var(--color-secondary);
    text-decoration:none; cursor:pointer;
}
.bento-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.45s ease; }
.bento-card:hover img { transform:scale(1.07); }
.bento-card.bento-wide { grid-column:span 2; }
.bento-card.bento-tall { grid-row:span 2; }

/* Hover overlay */
.bento-card::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(to top,rgba(10,22,40,0.85) 0%,transparent 55%);
    z-index:1; opacity:0; transition:opacity 0.3s;
}
.bento-card:hover::before { opacity:1; }

.bento-card-label {
    position:absolute; bottom:12px; left:14px; z-index:2;
    font-size:0.8rem; font-weight:700; color:#fff;
    opacity:0; transform:translateY(6px); transition:opacity 0.3s,transform 0.3s;
    pointer-events:none;
}
.bento-card:hover .bento-card-label { opacity:1; transform:translateY(0); }

/* ─── C: TEZGAH STRIP ────────────────────────────────────── */
.hp-tezgah-section {
    background:var(--color-primary);
    padding:72px 0 80px;
}
.hp-tezgah-strip {
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:4px;
    margin-top:0;
}
.hp-tz-card {
    display:flex; flex-direction:column; text-decoration:none;
    border-radius:var(--radius); overflow:hidden;
    border:1px solid rgba(255,255,255,0.07);
    background:rgba(255,255,255,0.04);
    transition:var(--transition);
}
.hp-tz-card:hover { border-color:var(--color-accent); transform:translateY(-4px); box-shadow:0 12px 32px rgba(30,111,187,0.2); }
.hp-tz-img { width:100%; height:180px; overflow:hidden; position:relative; background:var(--color-secondary); flex-shrink:0; }
.hp-tz-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; filter:brightness(0.8); }
.hp-tz-card:hover .hp-tz-img img { transform:scale(1.08); filter:brightness(0.95); }
.hp-tz-body { padding:14px 12px 16px; display:flex; flex-direction:column; gap:5px; }
.hp-tz-icon { font-size:1.1rem; color:var(--color-accent); }
.hp-tz-name { font-family:var(--font-heading); font-size:0.82rem; font-weight:700; color:#fff; line-height:1.3; }
.hp-tz-cta { font-size:0.68rem; font-weight:700; color:var(--color-accent); display:inline-flex; align-items:center; gap:4px; transition:gap 0.2s; }
.hp-tz-card:hover .hp-tz-cta { gap:8px; }

/* ─── D: NEDEN BİZ ───────────────────────────────────────── */
.hp-neden-section { background:var(--color-white); }

/* Sayaç bandı */
.hp-counter-band {
    display:flex; align-items:center; justify-content:center;
    gap:0; background:var(--color-primary); border-radius:var(--radius-lg);
    padding:32px 40px; margin-bottom:64px; flex-wrap:wrap;
}
.hp-counter-item { display:flex; flex-direction:column; align-items:center; flex:1; min-width:140px; padding:0 20px; }
.hp-counter-num { font-family:var(--font-heading); font-size:2.4rem; font-weight:800; color:var(--color-accent); line-height:1; }
.hp-counter-label { font-size:0.75rem; color:rgba(255,255,255,0.55); font-weight:500; margin-top:6px; text-align:center; }
.hp-counter-div { width:1px; height:48px; background:rgba(255,255,255,0.1); flex-shrink:0; }

.hp-features-header { text-align:center; margin-bottom:40px; }
.hp-features-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.hp-feat-card {
    background:var(--color-light-bg); border-radius:var(--radius-lg);
    padding:32px 18px 26px; text-align:center;
    border:2px solid transparent; transition:var(--transition);
    position:relative; overflow:hidden;
}
.hp-feat-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:var(--color-accent); transform:scaleX(0); transition:transform 0.3s;
}
.hp-feat-card:hover::before { transform:scaleX(1); }
.hp-feat-card:hover { border-color:var(--color-accent); background:var(--color-white); transform:translateY(-6px); box-shadow:var(--shadow-md); }
.hp-feat-icon { width:60px; height:60px; border-radius:50%; background:rgba(30,111,187,0.1); border:2px solid rgba(30,111,187,0.15); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; transition:var(--transition); }
.hp-feat-icon i { font-size:1.4rem; color:var(--color-accent); transition:var(--transition); }
.hp-feat-card:hover .hp-feat-icon { background:var(--color-accent); border-color:var(--color-accent); }
.hp-feat-card:hover .hp-feat-icon i { color:#fff; }
.hp-feat-title { font-family:var(--font-heading); font-size:0.92rem; font-weight:700; color:var(--color-primary); margin-bottom:8px; }
.hp-feat-desc  { font-size:0.76rem; color:var(--color-text-light); line-height:1.6; }

/* ─── E: SÜREÇLER ────────────────────────────────────────── */
.hp-surecler-section { background:var(--color-primary); padding:80px 0; }
.hp-surecler-header  { text-align:center; margin-bottom:60px; }
.hp-surecler-grid {
    display:grid; grid-template-columns:repeat(5,1fr); gap:0;
    position:relative;
}
.hp-surecler-grid::before {
    content:''; position:absolute; top:40px; left:calc(10% + 20px); right:calc(10% + 20px);
    height:2px; background:linear-gradient(90deg,var(--color-accent),rgba(30,111,187,0.2));
    z-index:0;
}
.hp-surec-item {
    display:flex; flex-direction:column; align-items:center;
    text-align:center; padding:0 12px; position:relative; z-index:1;
}
.hp-surec-num { font-family:'Inter',sans-serif; font-size:0.65rem; font-weight:800; letter-spacing:0.15em; color:var(--color-accent); margin-bottom:12px; }
.hp-surec-icon-wrap { position:relative; display:flex; flex-direction:column; align-items:center; margin-bottom:20px; }
.hp-surec-icon { width:80px; height:80px; border-radius:50%; background:rgba(30,111,187,0.12); border:2px solid rgba(30,111,187,0.3); display:flex; align-items:center; justify-content:center; transition:var(--transition); }
.hp-surec-item:hover .hp-surec-icon { background:var(--color-accent); border-color:var(--color-accent); transform:scale(1.1); }
.hp-surec-icon i { font-size:1.6rem; color:var(--color-accent); transition:var(--transition); }
.hp-surec-item:hover .hp-surec-icon i { color:#fff; }
.hp-surec-connector { display:none; }
.hp-surec-title { font-size:0.85rem; font-weight:800; letter-spacing:0.05em; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.hp-surec-text  { font-size:0.76rem; color:rgba(255,255,255,0.45); line-height:1.6; }

/* ─── F: REFERANS GALERİ ─────────────────────────────────── */
.hp-galeri-section { background:var(--color-white); }
.hp-galeri-grid {
    display:grid;
    grid-template-columns:repeat(5,1fr);
    grid-auto-rows:190px;
    gap:6px;
}
.hp-gal-card { position:relative; overflow:hidden; border-radius:var(--radius); background:var(--color-secondary); cursor:pointer; }
.hp-gal-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.hp-gal-card:hover img { transform:scale(1.08); }
.gal-tall { grid-row:span 2; }
.gal-wide { grid-column:span 2; }
.hp-gal-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(10,22,40,0.88) 0%,transparent 55%);
    display:flex; flex-direction:column; justify-content:flex-end;
    padding:12px 14px; opacity:0; transition:opacity 0.28s;
}
.hp-gal-card:hover .hp-gal-overlay { opacity:1; }
.hp-gal-cat  { display:inline-block; font-size:0.58rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:#fff; border-radius:50px; padding:2px 8px; margin-bottom:4px; width:fit-content; }
.hp-gal-name { font-size:0.75rem; font-weight:600; color:rgba(255,255,255,0.92); display:block; }

/* ─── G: HİZMET BÖLGELERİ ───────────────────────────────── */
.hp-bolgeler-section { background:var(--color-light-bg); }
.hp-bolgeler-layout {
    display:grid; grid-template-columns:380px 1fr; gap:60px; align-items:center;
}
.hp-bolge-stats { display:flex; gap:24px; margin:28px 0 32px; flex-wrap:wrap; }
.hp-bolge-stat {
    display:flex; flex-direction:column; align-items:center;
    background:var(--color-white); border-radius:var(--radius-lg);
    padding:18px 28px; border:2px solid var(--color-border);
    transition:var(--transition);
}
.hp-bolge-stat:hover { border-color:var(--color-accent); transform:translateY(-2px); }
.hp-bolge-stat-num { font-family:var(--font-heading); font-size:1.6rem; font-weight:800; color:var(--color-accent); }
.hp-bolge-stat-lbl { font-size:0.7rem; color:var(--color-gray); font-weight:600; margin-top:3px; }
.hp-bolgeler-right {
    display:flex; flex-wrap:wrap; gap:8px; align-content:flex-start;
}
.hp-sehir-pill {
    display:inline-flex; align-items:center; gap:6px;
    padding:7px 14px; background:var(--color-white);
    border:1px solid var(--color-border); border-radius:50px;
    font-size:0.78rem; font-weight:600; color:var(--color-text);
    transition:var(--transition); cursor:default;
}
.hp-sehir-pill i { color:var(--color-accent); font-size:0.7rem; }
.hp-sehir-pill:hover { border-color:var(--color-accent); color:var(--color-accent); transform:translateY(-1px); }
.hp-sehir-more {
    display:inline-flex; align-items:center; padding:7px 18px;
    background:var(--color-accent); color:#fff; border-radius:50px;
    font-size:0.78rem; font-weight:700; cursor:default;
}

/* ─── H: SSS + BLOG ──────────────────────────────────────── */
.hp-sss-blog-section { background:var(--color-white); padding:80px 0; }
.hp-sb-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:flex-start; }

/* SSS */
.hp-sss-list { margin-top:32px; }
.hp-sss-item { border-bottom:1px solid var(--color-border); }
.hp-sss-btn {
    width:100%; display:flex; align-items:center; gap:14px;
    padding:18px 0; background:none; border:none; cursor:pointer; text-align:left;
}
.hp-sss-num { font-size:0.65rem; font-weight:800; color:rgba(30,111,187,0.35); font-family:'Inter',sans-serif; flex-shrink:0; width:22px; transition:color 0.2s; }
.hp-sss-btn:hover .hp-sss-num, .hp-sss-btn.active .hp-sss-num { color:var(--color-accent); }
.hp-sss-q { flex:1; font-size:0.9rem; font-weight:600; color:var(--color-text); line-height:1.4; transition:color 0.2s; }
.hp-sss-btn:hover .hp-sss-q, .hp-sss-btn.active .hp-sss-q { color:var(--color-accent); }
.hp-sss-ans { display:none; padding:0 0 18px 36px; font-size:0.85rem; color:var(--color-text-light); line-height:1.65; }
.hp-sss-ans.open { display:block; }

/* Blog */
.hp-blog-header { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:28px; }
.hp-blog-list { display:flex; flex-direction:column; gap:0; }
.hp-blog-item {
    display:flex; gap:16px; align-items:center;
    padding:16px 0; border-bottom:1px solid var(--color-border);
    text-decoration:none; color:var(--color-text); transition:var(--transition);
}
.hp-blog-item:first-child { padding-top:0; }
.hp-blog-item:hover { color:var(--color-accent); }
.hp-blog-img { width:80px; height:64px; border-radius:var(--radius); overflow:hidden; flex-shrink:0; background:#e8ecf0; }
.hp-blog-img img,.hp-blog-img .img-placeholder { width:100%; height:100%; object-fit:cover; display:block; }
.hp-blog-body { flex:1; min-width:0; display:flex; flex-direction:column; gap:4px; }
.hp-blog-date  { font-size:0.68rem; color:var(--color-gray); display:flex; align-items:center; gap:4px; }
.hp-blog-title { font-size:0.88rem; font-weight:700; color:var(--color-primary); line-height:1.4; transition:color 0.2s; }
.hp-blog-item:hover .hp-blog-title { color:var(--color-accent); }
.hp-blog-more  { font-size:0.68rem; font-weight:700; color:var(--color-accent); display:inline-flex; align-items:center; gap:4px; transition:gap 0.2s; }
.hp-blog-item:hover .hp-blog-more { gap:8px; }

/* ─── I: CTA BANNER ──────────────────────────────────────── */
.hp-cta-section {
    background:linear-gradient(135deg,var(--color-primary) 0%,#0d2244 100%);
    padding:72px 0; position:relative; overflow:hidden;
}
.hp-cta-section::before {
    content:''; position:absolute; inset:0;
    background-image:radial-gradient(circle,rgba(30,111,187,0.12) 1px,transparent 1px);
    background-size:28px 28px; pointer-events:none;
}
.hp-cta-inner {
    display:flex; align-items:center; justify-content:space-between;
    flex-wrap:wrap; gap:40px; position:relative;
}
.hp-cta-left { flex:1; min-width:280px; }
.hp-cta-title { font-family:var(--font-heading); font-size:clamp(1.5rem,2.5vw,2.2rem); font-weight:800; color:#fff; margin-bottom:12px; line-height:1.2; }
.hp-cta-desc  { color:rgba(255,255,255,0.6); font-size:0.95rem; line-height:1.7; margin-bottom:20px; }
.hp-cta-badges { display:flex; flex-wrap:wrap; gap:12px; }
.hp-cta-badges span { display:inline-flex; align-items:center; gap:6px; font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.75); }
.hp-cta-badges i { color:var(--color-accent); font-size:0.85rem; }
.hp-cta-right { display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; align-items:center; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — hp-* ÖZEL
══════════════════════════════════════════════════════════ */
@media (max-width:1400px) {
    .hp-bento { grid-template-columns:repeat(4,1fr); }
    .hp-tezgah-strip { grid-template-columns:repeat(4,1fr); }
    .hp-tz-img { height:160px; }
}
@media (max-width:1200px) {
    .hp-features-grid { grid-template-columns:repeat(3,1fr); }
    .hp-surecler-grid { grid-template-columns:repeat(3,1fr); gap:32px; }
    .hp-surecler-grid::before { display:none; }
    .hp-galeri-grid { grid-template-columns:repeat(4,1fr); }
    .gal-wide { grid-column:span 1; }
    .hp-bolgeler-layout { grid-template-columns:1fr 1fr; gap:40px; }
    .hp-tezgah-strip { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:992px) {
    .hp-bento { grid-template-columns:repeat(3,1fr); grid-auto-rows:180px; }
    .bento-card.bento-wide { grid-column:span 1; }
    .hp-tezgah-strip { grid-template-columns:repeat(3,1fr); }
    .hp-features-grid { grid-template-columns:repeat(2,1fr); }
    .hp-surecler-grid { grid-template-columns:repeat(2,1fr); }
    .hp-sb-grid { grid-template-columns:1fr; gap:48px; }
    .hp-bolgeler-layout { grid-template-columns:1fr; gap:32px; }
    .hp-counter-band { padding:24px 20px; }
    .hp-counter-div { display:none; }
    .hp-counter-item { min-width:120px; }
    .hp-galeri-grid { grid-template-columns:repeat(3,1fr); }
    .gal-tall { grid-row:span 1; }
    .hp-cats-inner { justify-content:flex-start; }
}
@media (max-width:768px) {
    .hp-section { padding:56px 0; }
    .hp-bento { grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
    .bento-card.bento-tall { grid-row:span 1; }
    .hp-tezgah-strip { grid-template-columns:repeat(2,1fr); }
    .hp-tz-img { height:140px; }
    .hp-features-grid { grid-template-columns:repeat(2,1fr); }
    .hp-surecler-grid { grid-template-columns:repeat(2,1fr); }
    .hp-galeri-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; }
    .hp-gal-overlay { opacity:1; }
    .hp-cta-inner { flex-direction:column; align-items:flex-start; }
    .hp-cta-right { width:100%; }
    .hp-sb-grid { gap:40px; }
    .hp-counter-band { flex-direction:row; flex-wrap:wrap; gap:20px; }
}
@media (max-width:480px) {
    .hp-bento { grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
    .hp-tezgah-strip { grid-template-columns:repeat(2,1fr); }
    .hp-features-grid { grid-template-columns:1fr; }
    .hp-surecler-grid { grid-template-columns:1fr; }
    .hp-galeri-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
    .hp-cta-right { flex-direction:column; }
    .hp-cta-right .btn { width:100%; justify-content:center; }
    .hp-cats-inner { gap:6px; }
    .hp-cat-pill { padding:7px 12px; font-size:0.72rem; }
    .hp-bolgeler-right { gap:6px; }
    .hp-sehir-pill { padding:6px 10px; font-size:0.72rem; }
}

/* ╔══════════════════════════════════════════════════════════════
   YENİ ANA SAYFA — fp-* prefix — SIFIR TASARIM
   ╚══════════════════════════════════════════════════════════════ */

/* ── ORTAK ─────────────────────────────────────────────────── */
.fp-eyebrow { display:inline-flex; align-items:center; gap:8px; font-size:0.7rem; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--color-accent); margin-bottom:14px; }
.fp-eyebrow--light { color:rgba(255,255,255,0.5); }
.fp-eyebrow--light::before { background:rgba(255,255,255,0.3); }
.fp-eyebrow::before { content:''; width:24px; height:2px; background:var(--color-accent); display:inline-block; }

.fp-big-title { font-family:var(--font-heading); font-size:clamp(2.2rem,4vw,3.6rem); font-weight:900; color:var(--color-primary); line-height:1.0; letter-spacing:-0.02em; margin-bottom:20px; }
.fp-big-title--sm { font-size:clamp(1.6rem,3vw,2.6rem); }
.fp-big-title--white { color:#fff !important; }

.fp-light-link { display:inline-flex; align-items:center; gap:8px; font-size:0.8rem; font-weight:700; color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.25s,gap 0.25s; }
.fp-light-link:hover { color:#fff; gap:13px; }
.fp-all-lnk { display:inline-flex; align-items:center; gap:6px; font-size:0.78rem; font-weight:700; color:var(--color-accent); text-decoration:none; transition:gap 0.2s; }
.fp-all-lnk:hover { gap:10px; }

/* ── MARQUEE ŞERİDİ ────────────────────────────────────────── */
.marquee-band {
    background:var(--color-primary);
    border-bottom:1px solid rgba(255,255,255,0.06);
    overflow:hidden; padding:0; height:48px;
    display:flex; align-items:center;
}
.marquee-track {
    display:flex; align-items:center; gap:0;
    animation:marqueeScroll 40s linear infinite;
    white-space:nowrap;
}
.marquee-band:hover .marquee-track { animation-play-state:paused; }
@keyframes marqueeScroll {
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}
.marquee-item {
    display:inline-flex; align-items:center; gap:8px;
    padding:0 24px; color:rgba(255,255,255,0.6); font-size:0.78rem;
    font-weight:600; text-decoration:none; white-space:nowrap;
    transition:color 0.2s;
}
.marquee-item i { color:var(--color-accent); font-size:0.8rem; }
.marquee-item:hover { color:#fff; }
.marquee-dot { color:rgba(255,255,255,0.15); font-size:0.5rem; flex-shrink:0; }

/* ── BÖLÜM AYRACI ──────────────────────────────────────────── */
.fp-divider { background:var(--color-light-bg); padding:34px 0; }
.fp-divider .container { display:flex; align-items:center; gap:18px; }
.fp-divider-line { flex:1; height:1px; background:linear-gradient(90deg,transparent,var(--color-border) 30%,var(--color-border) 70%,transparent); }
.fp-divider-mark { display:inline-flex; align-items:center; gap:10px; color:var(--color-accent); font-size:0.72rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; white-space:nowrap; }
.fp-divider-mark i { font-size:0.6rem; color:var(--color-accent); opacity:0.7; }

/* ── SPLIT SECTION: MEZAR ──────────────────────────────────── */
.fp-split {
    display:grid; grid-template-columns:38% 62%;
    min-height:360px; overflow:hidden;
}
.fp-split-panel--dark {
    background:var(--color-primary);
    position:relative; overflow:hidden;
}
.fp-split-panel--dark::before {
    content:''; position:absolute; width:500px; height:500px; border-radius:50%;
    border:1px solid rgba(30,111,187,0.06);
    bottom:-180px; right:-180px; pointer-events:none;
}
.fp-panel-inner {
    padding:26px 32px; height:100%; display:flex;
    flex-direction:column; gap:0; position:relative; z-index:1;
}
.fp-panel-inner .fp-big-title { color:#fff; margin-bottom:6px; font-size:1.55rem; line-height:1.05; }
.fp-panel-desc { display:none; }

/* Kategori nav listesi */
.fp-cat-nav { display:flex; flex-direction:column; gap:0; flex:1; margin-bottom:10px; }
.fp-cat-row {
    display:flex; align-items:center; justify-content:space-between;
    padding:3px 0; border-bottom:1px solid rgba(255,255,255,0.06);
    text-decoration:none; transition:padding 0.2s;
}
.fp-cat-row:last-child { border-bottom:none; }
.fp-cat-row:hover { padding-left:6px; }
.fp-cat-row-left { display:flex; align-items:center; gap:10px; font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.7); transition:color 0.2s; }
.fp-cat-row-left i { color:var(--color-accent); width:14px; text-align:center; font-size:0.8rem; }
.fp-cat-row:hover .fp-cat-row-left { color:#fff; }
.fp-cat-row-right { display:flex; align-items:center; gap:8px; }
.fp-cat-count { font-size:0.68rem; color:rgba(255,255,255,0.3); font-weight:500; }
.fp-cat-arrow { font-size:0.62rem; color:rgba(255,255,255,0.2); transition:color 0.2s,transform 0.2s; }
.fp-cat-row:hover .fp-cat-arrow { color:var(--color-accent); transform:translateX(4px); }

/* Panel CTA butonu */
.fp-panel-cta {
    display:inline-flex; align-items:center; gap:12px;
    padding:14px 24px; background:rgba(30,111,187,0.12);
    border:1px solid rgba(30,111,187,0.3); border-radius:var(--radius);
    color:#fff; font-size:0.82rem; font-weight:700; letter-spacing:0.05em;
    text-transform:uppercase; text-decoration:none;
    transition:background 0.25s,border-color 0.25s,gap 0.25s; width:fit-content;
}
.fp-panel-cta:hover { background:var(--color-accent); border-color:var(--color-accent); gap:16px; }
.fp-panel-cta--accent { background:var(--color-accent); border-color:var(--color-accent); }
.fp-panel-cta--accent:hover { background:var(--color-accent-dark); border-color:var(--color-accent-dark); }
.fp-cta-arr { width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; font-size:0.7rem; flex-shrink:0; }

/* Fotoğraf kolaj */
.fp-split-photos {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:116px;
    gap:4px;
    background:var(--color-border);
    align-self:start;
}
.fp-photo { position:relative; overflow:hidden; background:var(--color-secondary); }
.fp-photo img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.45s ease; }
.fp-photo:hover img { transform:scale(1.08); }
.fp-photo.col-span-1 { grid-column:span 1; }
.fp-photo.row-span-2 { grid-row:span 2; }
.fp-photo.col-span-2 { grid-column:span 2; }
.fp-photo-label {
    position:absolute; bottom:0; left:0; right:0;
    padding:10px 12px; font-size:0.72rem; font-weight:700; color:#fff;
    background:linear-gradient(transparent,rgba(10,22,40,0.8));
    opacity:0; transition:opacity 0.3s;
}
.fp-photo:hover .fp-photo-label { opacity:1; }

/* ── TEZGAH SECTION ────────────────────────────────────────── */
.fp-tezgah-section { background:var(--color-primary); padding:80px 0 0; overflow:hidden; }
.fp-tz-header { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:32px; margin-bottom:48px; }
.fp-tz-header-right { display:flex; flex-direction:column; align-items:flex-start; gap:20px; padding-bottom:4px; }

.fp-tz-scroll-outer { overflow:hidden; }
.fp-tz-cards {
    display:grid; grid-template-columns:repeat(7,1fr);
    gap:0;
}
.fp-tz-card {
    display:flex; flex-direction:column; text-decoration:none;
    border-right:1px solid rgba(255,255,255,0.06);
    transition:background 0.3s;
    overflow:hidden;
}
.fp-tz-card:last-child { border-right:none; }
.fp-tz-card:hover { background:rgba(255,255,255,0.04); }
.fp-tz-card-img { width:100%; height:220px; overflow:hidden; position:relative; flex-shrink:0; }
.fp-tz-card-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.45s,filter 0.45s; filter:brightness(0.65) saturate(0.9); }
.fp-tz-card:hover .fp-tz-card-img img { transform:scale(1.1); filter:brightness(0.85) saturate(1.1); }
.fp-tz-card-body { padding:20px 18px 28px; display:flex; flex-direction:column; gap:8px; }
.fp-tz-card-top { display:flex; align-items:center; justify-content:space-between; }
.fp-tz-card-top i { font-size:1.2rem; color:var(--color-accent); }
.fp-tz-card-count { font-size:0.62rem; font-weight:600; color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.06); padding:3px 8px; border-radius:50px; }
.fp-tz-card-name { font-family:var(--font-heading); font-size:0.88rem; font-weight:700; color:#fff; line-height:1.3; }
.fp-tz-card-link { font-size:0.68rem; font-weight:700; color:var(--color-accent); display:inline-flex; align-items:center; gap:4px; transition:gap 0.2s; margin-top:auto; }
.fp-tz-card:hover .fp-tz-card-link { gap:8px; }

/* ── NEDEN BİZ (editoryal) ─────────────────────────────────── */
.fp-why { background:var(--color-light-bg); padding:88px 0; }

/* Sayaç şeridi — temiz beyaz kart */
.fp-why-stats {
    display:grid; grid-template-columns:repeat(5,1fr);
    background:var(--color-white); border:1px solid var(--color-border);
    border-radius:var(--radius-lg); overflow:hidden; margin-bottom:68px;
    box-shadow:0 12px 34px rgba(10,22,40,0.06);
}
.fp-why-stat { padding:34px 24px; text-align:center; position:relative; transition:background 0.3s; }
.fp-why-stat:not(:last-child)::after { content:''; position:absolute; right:0; top:28px; bottom:28px; width:1px; background:var(--color-border); }
.fp-why-stat:hover { background:var(--color-light-bg); }
.fp-why-stat-val { font-family:var(--font-heading); font-size:2.4rem; font-weight:900; color:var(--color-primary); line-height:1; letter-spacing:-0.02em; margin-bottom:8px; }
.fp-why-stat-lbl { font-size:0.74rem; color:var(--color-text-light); font-weight:600; letter-spacing:0.05em; text-transform:uppercase; }

/* İçerik: intro + numaralı neden listesi */
.fp-why-main { display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:start; }
.fp-why-intro { position:sticky; top:100px; }
.fp-why-intro .fp-eyebrow { margin-bottom:16px; }
.fp-why-title { font-family:var(--font-heading); font-size:clamp(1.8rem,2.8vw,2.6rem); font-weight:800; color:var(--color-primary); line-height:1.14; letter-spacing:-0.02em; margin-bottom:18px; }
.fp-why-title span { color:var(--color-accent); }
.fp-why-desc { color:var(--color-text-light); font-size:0.96rem; line-height:1.8; margin-bottom:30px; max-width:380px; }

.fp-why-list { display:flex; flex-direction:column; }
.fp-why-item {
    display:grid; grid-template-columns:auto 1fr; gap:24px; align-items:flex-start;
    padding:26px 0; border-bottom:1px solid var(--color-border);
}
.fp-why-item:first-child { padding-top:0; }
.fp-why-item:last-child { border-bottom:none; padding-bottom:0; }
.fp-why-ico {
    width:56px; height:56px; border-radius:14px; flex-shrink:0;
    background:rgba(30,111,187,0.1); display:flex; align-items:center; justify-content:center;
    color:var(--color-accent); font-size:1.3rem; transition:var(--transition);
}
.fp-why-item:hover .fp-why-ico { background:var(--color-accent); color:#fff; transform:translateY(-3px); }
.fp-why-it-head { display:flex; align-items:baseline; gap:12px; margin-bottom:8px; }
.fp-why-it-idx { font-family:var(--font-heading); font-size:0.92rem; font-weight:800; color:var(--color-accent); letter-spacing:0.05em; }
.fp-why-it-title { font-family:var(--font-heading); font-size:1.22rem; font-weight:700; color:var(--color-primary); }
.fp-why-it-desc { font-size:0.92rem; color:var(--color-text-light); line-height:1.75; }

@media (max-width:992px) {
    .fp-why-main { grid-template-columns:1fr; gap:40px; }
    .fp-why-intro { position:static; }
    .fp-why-desc { max-width:none; }
}
@media (max-width:768px) {
    .fp-why-stats { grid-template-columns:repeat(2,1fr); }
    .fp-why-stat:nth-child(2)::after { display:none; }
    .fp-why-stat:nth-child(odd)::after { display:none; }
}
@media (max-width:480px) {
    .fp-why-stats { grid-template-columns:1fr; }
    .fp-why-stat::after { display:none !important; }
    .fp-why-stat { border-bottom:1px solid var(--color-border); }
    .fp-why-item { grid-template-columns:1fr; gap:14px; }
}

/* ── REFERANS DUVARI ───────────────────────────────────────── */
.fp-galeri-section { background:var(--color-primary); padding:80px 0 0; }
.fp-galeri-header { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:40px; }
.fp-galeri-wall {
    display:grid; grid-template-columns:repeat(5,1fr); grid-auto-rows:210px; gap:4px;
}
.fp-fw-card { position:relative; overflow:hidden; background:var(--color-secondary); cursor:pointer; }
.fp-fw-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }
.fp-fw-card:hover img { transform:scale(1.08); }
.fw-tall { grid-row:span 2; }
.fw-wide { grid-column:span 2; }
.fp-fw-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(10,22,40,0.9) 0%,transparent 55%);
    display:flex; flex-direction:column; justify-content:flex-end;
    padding:14px 16px; opacity:0; transition:opacity 0.28s;
}
.fp-fw-card:hover .fp-fw-overlay { opacity:1; }
.fp-fw-cat  { display:inline-block; font-size:0.58rem; font-weight:800; letter-spacing:0.1em; text-transform:uppercase; color:#fff; border-radius:50px; padding:3px 10px; margin-bottom:5px; width:fit-content; }
.fp-fw-name { font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.92); }

/* ── ÜRETİM SÜRECİ TİMELİNE ───────────────────────────────── */
/* ── ÜRETİM SÜRECİ — YATAY STEPPER (koyu) ─────────────────── */
.fp-process { background:var(--color-primary); padding:90px 0; position:relative; overflow:hidden; }
.fp-process::before {
    content:''; position:absolute; inset:0;
    background-image:radial-gradient(circle, rgba(30,111,187,0.14) 1px, transparent 1px);
    background-size:30px 30px; pointer-events:none;
}
.fp-process > .container { position:relative; z-index:1; }
.fp-process-head { text-align:center; max-width:640px; margin:0 auto 64px; }
.fp-process-head .fp-eyebrow { justify-content:center; color:var(--color-accent); }
.fp-process-head .fp-eyebrow::before { display:none; }
.fp-process-title { font-family:var(--font-heading); font-size:clamp(1.8rem,2.8vw,2.6rem); font-weight:800; color:#fff; line-height:1.12; letter-spacing:-0.02em; }
.fp-process-sub { color:rgba(255,255,255,0.55); font-size:0.96rem; line-height:1.75; margin-top:12px; }

.fp-process-track { display:grid; grid-template-columns:repeat(5,1fr); gap:0; position:relative; }
.fp-process-track::before {
    content:''; position:absolute; top:34px; left:10%; right:10%; height:2px;
    background:linear-gradient(90deg, rgba(30,111,187,0.25), var(--color-accent) 50%, rgba(30,111,187,0.25));
}
.fp-process-step { position:relative; padding:0 16px; text-align:center; }
.fp-process-ghost {
    position:absolute; top:-26px; left:50%; transform:translateX(-50%);
    font-family:var(--font-heading); font-size:5rem; font-weight:900;
    color:rgba(255,255,255,0.05); line-height:1; z-index:0; pointer-events:none; user-select:none;
}
.fp-process-node {
    position:relative; z-index:2; width:68px; height:68px; margin:0 auto 22px;
    border-radius:50%; background:var(--color-secondary); border:2px solid rgba(30,111,187,0.4);
    display:flex; align-items:center; justify-content:center; color:var(--color-accent); font-size:1.4rem;
    transition:var(--transition);
}
.fp-process-step:hover .fp-process-node {
    background:var(--color-accent); border-color:var(--color-accent); color:#fff;
    transform:translateY(-6px); box-shadow:0 16px 34px rgba(30,111,187,0.45);
}
.fp-process-label { display:block; font-size:0.66rem; font-weight:800; letter-spacing:0.18em; text-transform:uppercase; color:var(--color-accent); margin-bottom:10px; }
.fp-process-step-title { font-family:var(--font-heading); font-size:1.12rem; font-weight:700; color:#fff; margin-bottom:10px; }
.fp-process-text { font-size:0.84rem; color:rgba(255,255,255,0.5); line-height:1.7; }

@media (max-width:992px) {
    .fp-process-track { grid-template-columns:repeat(2,1fr); gap:48px 0; }
    .fp-process-track::before { display:none; }
}
@media (max-width:560px) {
    .fp-process-track { grid-template-columns:1fr; gap:40px 0; }
}

/* ── SSS + HİZMET BÖLGELERİ ──────────────────────────────── */
.fp-sss-bolge-section { background:var(--color-light-bg); padding:80px 0; }
.fp-sb-layout { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:flex-start; }

/* SSS sol */
.fp-sss-wrap {}
.fp-sss-acc { margin-top:36px; }
.fp-acc-item { border-bottom:1px solid var(--color-border); }
.fp-acc-btn {
    width:100%; display:flex; align-items:center; gap:14px;
    padding:20px 0; background:none; border:none; cursor:pointer; text-align:left;
}
.fp-acc-n { font-size:0.62rem; font-weight:800; color:rgba(30,111,187,0.3); font-family:'Inter',sans-serif; flex-shrink:0; width:22px; transition:color 0.2s; }
.fp-acc-btn:hover .fp-acc-n, .fp-acc-btn.active .fp-acc-n { color:var(--color-accent); }
.fp-acc-q { flex:1; font-size:0.92rem; font-weight:600; color:var(--color-text); line-height:1.4; transition:color 0.2s; }
.fp-acc-btn:hover .fp-acc-q, .fp-acc-btn.active .fp-acc-q { color:var(--color-accent); }
.fp-acc-ico { width:30px; height:30px; border-radius:50%; background:var(--color-white); border:1px solid var(--color-border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:0.75rem; color:var(--color-accent); transition:background 0.25s,border-color 0.25s,transform 0.25s; }
.fp-acc-btn.active .fp-acc-ico { background:var(--color-accent); border-color:var(--color-accent); color:#fff; transform:rotate(45deg); }
.fp-acc-ans { display:none; padding:0 0 20px 36px; font-size:0.86rem; color:var(--color-text-light); line-height:1.7; }
.fp-acc-ans.open { display:block; }

/* Sağ kolon */
.fp-right-col { display:flex; flex-direction:column; gap:28px; }

/* Hizmet Bölgeleri kutusu */
.fp-bolge-box {
    background:var(--color-primary); border-radius:var(--radius-lg);
    padding:36px 36px 32px; overflow:hidden;
}
.fp-bolge-box-head { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom:24px; }
.fp-bolge-box-title { font-family:var(--font-heading); font-size:1.3rem; font-weight:800; color:#fff; margin:0; }
.fp-bolge-pills { display:flex; flex-wrap:wrap; gap:8px; }
.fp-bolge-pill {
    display:inline-flex; align-items:center; gap:5px;
    padding:6px 12px; background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1); border-radius:50px;
    font-size:0.74rem; font-weight:600; color:rgba(255,255,255,0.65);
    transition:var(--transition);
}
.fp-bolge-pill i { color:var(--color-accent); font-size:0.65rem; }
.fp-bolge-pill:hover { background:rgba(30,111,187,0.15); border-color:var(--color-accent); color:#fff; transform:translateY(-1px); }
.fp-bolge-more { background:var(--color-accent); border-color:var(--color-accent); color:#fff; font-weight:700; }
.fp-bolge-more:hover { background:var(--color-accent-dark); border-color:var(--color-accent-dark); }

/* Blog kutusu */
.fp-blog-box { background:var(--color-white); border-radius:var(--radius-lg); padding:32px; box-shadow:var(--shadow-sm); }
.fp-blog-box-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; flex-wrap:wrap; gap:10px; }
.fp-blog-box-title { font-family:var(--font-heading); font-size:1rem; font-weight:800; color:var(--color-primary); letter-spacing:0.05em; margin:0; }
.fp-blog-items { display:flex; flex-direction:column; }
.fp-blog-row {
    display:flex; gap:14px; align-items:flex-start;
    padding:14px 0; border-bottom:1px solid var(--color-border);
    text-decoration:none; color:var(--color-text); transition:var(--transition);
}
.fp-blog-row:last-child { border-bottom:none; padding-bottom:0; }
.fp-blog-row:first-child { padding-top:0; }
.fp-blog-row:hover { color:var(--color-accent); }
.fp-blog-row-img { width:72px; height:56px; border-radius:var(--radius); overflow:hidden; flex-shrink:0; background:#e8ecf0; }
.fp-blog-row-img img, .fp-blog-row-img .img-placeholder { width:100%; height:100%; object-fit:cover; display:block; }
.fp-blog-row-body { flex:1; min-width:0; }
.fp-blog-row-date  { font-size:0.65rem; color:var(--color-gray); display:block; margin-bottom:4px; }
.fp-blog-row-title { font-size:0.86rem; font-weight:700; color:var(--color-primary); line-height:1.4; transition:color 0.2s; }
.fp-blog-row:hover .fp-blog-row-title { color:var(--color-accent); }

/* ── CTA FULL BANNER ───────────────────────────────────────── */
.fp-cta-full {
    position:relative; padding:88px 0; overflow:hidden;
    background:var(--color-primary);
}
.fp-cta-bg {
    position:absolute; inset:0;
    background:
        radial-gradient(ellipse 800px 600px at 20% 50%, rgba(30,111,187,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 50%, rgba(30,111,187,0.08) 0%, transparent 70%);
    pointer-events:none;
}
.fp-cta-bg::before {
    content:''; position:absolute; inset:0;
    background-image: repeating-linear-gradient(
        0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px
    ),
    repeating-linear-gradient(
        90deg, transparent, transparent 59px, rgba(255,255,255,0.02) 60px
    );
}
.fp-cta-content {
    position:relative; z-index:1;
    display:flex; align-items:center;
    justify-content:space-between; flex-wrap:wrap; gap:48px;
}
.fp-cta-text-side { flex:1; min-width:280px; }
.fp-cta-headline {
    font-family:var(--font-heading);
    font-size:clamp(1.8rem,3.5vw,3rem);
    font-weight:900; color:#fff; line-height:1.1;
    margin-bottom:16px; letter-spacing:-0.02em;
}
.fp-cta-sub { color:rgba(255,255,255,0.5); font-size:1rem; line-height:1.7; }

.fp-cta-btn-side { display:flex; flex-direction:column; gap:12px; flex-shrink:0; min-width:280px; }
.fp-cta-btn {
    display:flex; align-items:center; gap:16px;
    padding:16px 24px; border-radius:var(--radius-lg);
    text-decoration:none; transition:var(--transition);
    border:2px solid transparent;
}
.fp-cta-btn strong { display:block; font-size:0.95rem; font-weight:700; color:#fff; }
.fp-cta-btn small  { display:block; font-size:0.7rem; color:rgba(255,255,255,0.55); font-weight:500; }
.fp-cta-btn-ico {
    width:44px; height:44px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:1.2rem;
}
.fp-cta-btn--primary { background:var(--color-accent); border-color:var(--color-accent); }
.fp-cta-btn--primary .fp-cta-btn-ico { background:rgba(255,255,255,0.15); color:#fff; }
.fp-cta-btn--primary:hover { background:var(--color-accent-dark); border-color:var(--color-accent-dark); transform:translateX(4px); }
.fp-cta-btn--wa { background:rgba(37,211,102,0.12); border-color:rgba(37,211,102,0.3); }
.fp-cta-btn--wa .fp-cta-btn-ico { background:rgba(37,211,102,0.2); color:#25d366; font-size:1.4rem; }
.fp-cta-btn--wa:hover { background:#25d366; border-color:#25d366; transform:translateX(4px); }
.fp-cta-btn--wa:hover .fp-cta-btn-ico { background:rgba(255,255,255,0.2); color:#fff; }
.fp-cta-btn--wa:hover small { color:rgba(255,255,255,0.7); }
.fp-cta-btn--outline { background:rgba(255,255,255,0.04); border-color:rgba(255,255,255,0.15); }
.fp-cta-btn--outline .fp-cta-btn-ico { background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.6); }
.fp-cta-btn--outline:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.35); transform:translateX(4px); }

/* ── FP RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1400px) {
    .fp-split { grid-template-columns:42% 58%; }
    .fp-tz-cards { grid-template-columns:repeat(4,1fr); }
    .fp-galeri-wall { grid-template-columns:repeat(4,1fr); }
    .fw-wide { grid-column:span 1; }
}
@media (max-width:1200px) {
    .fp-split { grid-template-columns:1fr 1fr; }
    .fp-split-photos { grid-auto-rows:116px; }
    .fp-stat-row { grid-template-columns:repeat(3,1fr); }
    .fp-feat-3 { grid-template-columns:repeat(3,1fr); }
    .fp-galeri-wall { grid-template-columns:repeat(3,1fr); }
    .fw-tall { grid-row:span 1; }
    .fp-tz-cards { grid-template-columns:repeat(4,1fr); }
    .fp-sb-layout { gap:48px; }
    .fp-surec-timeline::before { left:60px; }
}
@media (max-width:992px) {
    .fp-split { grid-template-columns:1fr; }
    .fp-panel-inner { padding:48px 28px; }
    .fp-split-photos { grid-template-columns:repeat(3,1fr); grid-auto-rows:160px; }
    .fp-photo.row-span-2 { grid-row:span 1; }
    .fp-tz-cards { grid-template-columns:repeat(3,1fr); }
    .fp-stat-row { grid-template-columns:repeat(3,1fr); }
    .fp-feat-3 { grid-template-columns:1fr 1fr 1fr; gap:16px; }
    .fp-galeri-wall { grid-template-columns:repeat(3,1fr); }
    .fp-sb-layout { grid-template-columns:1fr; gap:40px; }
    .fp-cta-content { flex-direction:column; align-items:flex-start; }
    .fp-cta-btn-side { flex-direction:row; flex-wrap:wrap; }
    .fp-surec-timeline::before { display:none; }
    .fp-surec-step { grid-template-columns:40px 60px 1fr; }
    .fp-tz-header { flex-direction:column; align-items:flex-start; }
}
@media (max-width:768px) {
    .marquee-band { height:40px; }
    .fp-split-photos { grid-template-columns:repeat(2,1fr); }
    .fp-photo.col-span-2 { grid-column:span 1; }
    .fp-tz-cards { grid-template-columns:repeat(2,1fr); }
    .fp-tz-card-img { height:180px; }
    .fp-stat-row { grid-template-columns:repeat(2,1fr); }
    .fp-feat-3 { grid-template-columns:1fr; }
    .fp-galeri-wall { grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
    .fp-fw-overlay { opacity:1; }
    .fp-surec-step { grid-template-columns:1fr; gap:12px; text-align:left; }
    .fp-surec-step-num { display:none; }
    .fp-surec-step-center { flex-direction:row; }
    .fp-surec-step-line { display:none; }
    .fp-cta-btn-side { flex-direction:column; width:100%; }
    .fp-cta-btn { width:100%; }
    .fp-bolge-box { padding:24px; }
}
@media (max-width:480px) {
    .fp-split-photos { grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
    .fp-tz-cards { grid-template-columns:repeat(2,1fr); }
    .fp-stat-row { grid-template-columns:repeat(2,1fr); }
    .fp-galeri-wall { grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
    .fp-cat-nav { display:none; }
    .fp-panel-inner { padding:36px 20px; }
    .fp-feat-3 { grid-template-columns:1fr; }
    .fp-cta-headline { font-size:1.8rem; }
    .fp-big-title { font-size:2rem; }
}

/* ── FOOTER GRUP SİTELERİ + YASAL LİNKLER ──────────────────── */
.footer-partners { background:var(--color-primary); border-top:1px solid rgba(255,255,255,0.07); padding:16px 0; }
.footer-partners .container { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px 28px; }
.footer-partners__group { display:flex; align-items:center; flex-wrap:wrap; gap:10px 22px; }
.footer-partners__label { font-size:0.78rem; font-weight:700; color:rgba(255,255,255,0.55); display:inline-flex; align-items:center; gap:8px; }
.footer-partners__label i { color:var(--color-accent); }
.footer-partners__group a { font-size:0.82rem; font-weight:600; color:rgba(255,255,255,0.7); transition:color 0.2s; position:relative; }
.footer-partners__group a:not(:last-child)::after { content:'•'; position:absolute; right:-13px; color:rgba(255,255,255,0.2); }
.footer-partners__group a:hover { color:var(--color-accent); }
.footer-partners__legal { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.footer-partners__legal a { font-size:0.78rem; font-weight:600; color:rgba(255,255,255,0.55); transition:color 0.2s; }
.footer-partners__legal a:hover { color:var(--color-accent); }
@media (max-width:600px){
    .footer-partners .container { justify-content:center; text-align:center; }
    .footer-partners__group { justify-content:center; }
    .footer-partners__group a::after{ display:none; }
}

/* ── FOOTER TASARIMCI KREDİSİ ──────────────────────────────── */
.footer-credit { display:inline-flex; align-items:center; gap:8px; font-size:0.76rem; color:rgba(255,255,255,0.4); transition:color 0.25s; }
.footer-credit i { color:var(--color-accent); font-size:0.85rem; }
.footer-credit strong { color:rgba(255,255,255,0.7); font-weight:700; }
.footer-credit:hover { color:rgba(255,255,255,0.7); }
.footer-credit:hover strong { color:var(--color-accent); }

/* ═══════════════════════════════════════════════════════════
   YÜZEN WHATSAPP (masaüstü) + MOBİL ALT ÇUBUK
   ═══════════════════════════════════════════════════════════ */
.mobile-cta-bar { display:none; }

.float-wa { position:fixed; right:22px; bottom:22px; z-index:1500; }
.float-wa__btn {
    width:60px; height:60px; border-radius:50%; background:#25d366; color:#fff;
    font-size:1.75rem; display:flex; align-items:center; justify-content:center;
    cursor:pointer; box-shadow:0 8px 26px rgba(37,211,102,0.5);
    animation:floatWaPulse 2.4s ease-in-out infinite; transition:transform 0.25s, background 0.25s;
}
.float-wa__btn:hover { background:#1da851; transform:scale(1.06); }
@keyframes floatWaPulse {
    0%   { box-shadow:0 8px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.45); }
    70%  { box-shadow:0 8px 26px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow:0 8px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}
.float-wa__panel {
    position:absolute; bottom:74px; right:0; width:288px; max-width:calc(100vw - 44px); background:#fff;
    border-radius:14px; overflow:hidden; box-shadow:0 20px 54px rgba(10,22,40,0.26);
    opacity:0; visibility:hidden; transform:translateY(14px) scale(0.97);
    transform-origin:bottom right; transition:opacity 0.26s ease, transform 0.26s ease, visibility 0.26s;
}
.float-wa.open .float-wa__panel { opacity:1; visibility:visible; transform:translateY(0) scale(1); }
.float-wa__head { background:#075e54; color:#fff; padding:14px 18px; font-weight:700; font-size:0.9rem; display:flex; align-items:center; gap:9px; }
.float-wa__head i { font-size:1.1rem; }
.float-wa__panel a { display:flex; align-items:center; gap:13px; padding:13px 18px; border-bottom:1px solid #eef2f6; color:var(--color-text); font-weight:700; font-size:0.95rem; transition:background 0.2s, color 0.2s; }
.float-wa__panel a:last-child { border-bottom:none; }
.float-wa__panel a:hover { background:#f0fbf4; color:#1da851; }
.float-wa__panel a i { color:#25d366; font-size:1.3rem; flex-shrink:0; }
.float-wa__panel a small { display:block; color:var(--color-text-light); font-weight:500; font-size:0.72rem; margin-top:2px; }
