/* ===== Dedatek — Tasarım Sistemi (Kese Kağıdı + Metalik Bronz Yeşil) ===== */
:root {
    /* Ana marka rengi — metalik bronz yeşil (a2.webp: #8A8B4F) */
    --green: #8A8B4F;
    --green-dark: #6B6C3A;
    --green-darker: #4F4F2B;
    --green-light: #A8A968;
    --green-pale: #E8E8C9;

    /* Kese kağıdı arka planlar (a1.jpg: #D1C5A4 baz alındı) */
    --bg: #F5F1E3;         /* ana bg — en açık kese kağıdı (birkaç ton açık) */
    --bg-soft: #EFEAD9;    /* soft section */
    --bg-accent: #E5DCC3;  /* alternatif section */
    --bg-deep: #D1C5A4;    /* orijinal kese kağıdı tonu */

    /* Dark tonlar — koyu kese kağıdı + koyu bronz */
    --dark: #2D2B1E;
    --dark-2: #3A3828;
    --dark-3: #4A4833;
    --darker: #1F1D13;

    /* Text */
    --text: #3B3A28;             /* ana text — koyu bronz-kahve */
    --text-light: #F5F1E3;       /* dark bg üzerinde açık text */
    --text-muted: #706B52;       /* muted metin */
    --text-muted-dark: #C5BFA3;  /* dark bg üzerinde muted */

    /* Border */
    --border: rgba(138, 139, 79, 0.22);
    --border-dark: rgba(245, 241, 227, 0.12);

    /* Card */
    --card: rgba(138, 139, 79, 0.05);
    --card-hover: rgba(138, 139, 79, 0.12);
    --card-border: rgba(138, 139, 79, 0.18);

    /* Shadows — daha sıcak ton */
    --shadow-sm: 0 2px 8px rgba(75, 73, 51, 0.08);
    --shadow-md: 0 6px 24px rgba(75, 73, 51, 0.14);
    --shadow-lg: 0 16px 48px rgba(75, 73, 51, 0.2);
    --shadow-glow: 0 8px 28px rgba(138, 139, 79, 0.35);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Construction Banner (en üstte sabit duyuru) ===== */
.construction-banner {
    background: linear-gradient(90deg, #f5a623 0%, #f9b84a 100%);
    color: #3a2a00;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 100;
}
.construction-banner svg {
    width: 14px; height: 14px; display: inline-block; vertical-align: -2px; margin-right: 0.3rem;
}

/* ===== Header / Navigation ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(45, 43, 30, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Top header (sosyal + hızlı aksiyonlar) */
.top-header {
    background: rgba(31, 29, 19, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    max-height: 44px;
    overflow: visible; /* dropdown taşması için — scroll'da collapsed iken hidden */
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.top-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}
.top-left, .top-right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
}

/* Top-nav (sağda: Anasayfa / Kurumsal / Blog / İletişim) */
.top-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    border-radius: 50px;
    transition: all 0.25s var(--ease);
    position: relative;
}
.top-nav a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s var(--ease), left 0.3s var(--ease);
    border-radius: 2px;
}
.top-nav a:hover {
    color: var(--green-light);
}
.top-nav a:hover::before {
    width: 50%;
    left: 25%;
}
.top-nav li + li { margin-left: 0.1rem; }

.top-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.top-socials a {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease);
}
.top-socials a:hover {
    color: var(--darker);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-2px);
}
.top-socials a svg { width: 13px; height: 13px; }

.top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.top-btn svg { width: 13px; height: 13px; color: var(--green); transition: color 0.3s var(--ease); }
.top-btn:hover {
    color: var(--darker);
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-1px);
}
.top-btn:hover svg { color: var(--darker); }

.top-btn-call {
    background: rgba(138, 139, 79, 0.12);
    border-color: rgba(138, 139, 79, 0.35);
    color: var(--green-light);
}
.top-btn-wa {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.top-btn-wa svg { color: #fff; }
.top-btn-wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.top-btn-wa:hover svg { color: #fff; }

/* Scroll olduğunda top-header gizlenir */
.site-header.scrolled .top-header {
    max-height: 0;
    opacity: 0;
    border-color: transparent;
}

.main-header {
    padding: 0.85rem 0;
    transition: padding 0.35s var(--ease);
}
.site-header.scrolled .main-header { padding: 0.6rem 0; }

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

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
}
.logo:hover { transform: scale(1.04); }
.logo img {
    height: 76px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(138, 139, 79, 0.25));
    transition: height 0.35s var(--ease), filter 0.35s var(--ease);
}
.site-header.scrolled .logo img {
    height: 62px;
    filter: drop-shadow(0 2px 8px rgba(138, 139, 79, 0.35));
}
.site-footer .logo img { height: 84px; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.4rem;
}
.nav-menu > li { display: flex; align-items: center; }
.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    position: relative;
}
.nav-menu a:hover { color: var(--green); background: rgba(138, 139, 79, 0.08); }
.nav-menu a.active { color: var(--green); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
/* Hemen Ara butonu (ana menü sağı) */
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    padding: 0.55rem 1rem 0.55rem 0.55rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 18px rgba(138, 139, 79, 0.35);
    text-decoration: none;
}
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(138, 139, 79, 0.5);
    background: linear-gradient(135deg, var(--green-light), var(--green));
}
.btn-call .bc-icon {
    width: 40px; height: 40px;
    background: rgba(31, 29, 19, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.btn-call .bc-icon svg { width: 18px; height: 18px; color: var(--darker); }
.btn-call .bc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.btn-call .bc-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}
.btn-call .bc-number {
    font-size: 0.95rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.2px;
}

/* ===== Dropdown (Hizmetler & Ürünler) ===== */
.has-dropdown { position: relative; }
.has-dropdown > a {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}
.nav-chev {
    width: 13px; height: 13px;
    transition: transform 0.3s var(--ease);
    color: rgba(255, 255, 255, 0.6);
}
.has-dropdown:hover .nav-chev,
.has-dropdown:focus-within .nav-chev {
    transform: rotate(180deg);
    color: var(--green);
}

.dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    min-width: 340px;
    background: linear-gradient(180deg, rgba(45, 43, 30, 0.98), rgba(31, 29, 19, 0.98));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(138, 139, 79, 0.25);
    border-radius: 18px;
    padding: 0.9rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(138, 139, 79, 0.05) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s var(--ease);
    z-index: 100;
}
.dropdown.mega {
    min-width: 620px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover .dropdown.mega,
.has-dropdown:focus-within .dropdown.mega {
    transform: translateX(-50%) translateY(0);
}
/* Dropdown üstü boşluk kapatıcı (hover kesilmesin) */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.6rem;
}

.dropdown-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0.75rem 0.7rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(138, 139, 79, 0.15);
}
.dd-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green);
}
.dd-count {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.22rem 0.55rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.15rem;
}
.dropdown-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.35rem;
}

.dropdown-list a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.8rem !important;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
    transition: all 0.25s var(--ease);
    text-decoration: none;
}
.dropdown-list a:hover {
    background: rgba(138, 139, 79, 0.1) !important;
    transform: translateX(3px);
}
.dd-ico {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 139, 79, 0.12);
    color: var(--green);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.25s var(--ease);
}
.dd-ico svg { width: 18px; height: 18px; }
.dropdown-list a:hover .dd-ico {
    background: var(--green);
    color: var(--darker);
    transform: rotate(-6deg);
}
.dd-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.dd-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}
.dd-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.15rem;
}
.dd-arrow {
    color: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
    transition: all 0.25s var(--ease);
}
.dd-arrow svg { width: 14px; height: 14px; }
.dropdown-list a:hover .dd-arrow {
    color: var(--green);
    transform: translateX(2px);
}

.dropdown-footer {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    padding: 0.7rem !important;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.12), rgba(138, 139, 79, 0.05)) !important;
    color: var(--green) !important;
    border: 1px solid rgba(138, 139, 79, 0.25);
    border-radius: 10px !important;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease);
}
.dropdown-footer:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark)) !important;
    color: var(--darker) !important;
    border-color: var(--green);
}
.dropdown-footer svg { width: 15px; height: 15px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px; height: 44px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero Slider ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--darker);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
    display: flex;
    align-items: center;
}
.slide.active { opacity: 1; visibility: visible; z-index: 2; }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.06);
    transition: transform 1.2s var(--ease);
    will-change: transform;
}
.slide.active .slide-bg {
    animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    0%   { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.20) translate(-2%, -1.5%); }
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(110deg, rgba(5,13,6,0.88) 0%, rgba(10,24,12,0.65) 45%, rgba(10,24,12,0.30) 100%),
        linear-gradient(to bottom, rgba(31,29,19,0.15) 0%, rgba(31,29,19,0.55) 100%);
}
.slide-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(138,139,79,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138,139,79,0.045) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 40s linear infinite;
    mix-blend-mode: screen;
}
@keyframes gridShift { to { background-position: 60px 60px; } }

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 1.5rem;
}
.slide-content .container { max-width: 900px; }
.slide-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 139, 79, 0.12);
    border: 1px solid rgba(138, 139, 79, 0.3);
    color: var(--green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease) 0.3s;
}
.slide-kicker::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(138, 139, 79, 0.6); }
    50% { box-shadow: 0 0 0 12px rgba(138, 139, 79, 0); }
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease) 0.5s;
}
.slide-title strong {
    font-weight: 800;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease) 0.7s;
}

.slide-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease) 0.9s;
}

.slide.active .slide-kicker,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    box-shadow: 0 6px 20px rgba(138, 139, 79, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(138, 139, 79, 0.55);
}

/* Ghost buton — varsayılan light zemin için */
.btn-ghost {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green-dark);
}
.btn-ghost:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 139, 79, 0.3);
}

/* Ghost buton — dark zeminde (hero, CTA banner, page-hero) beyaz varyant */
.hero .btn-ghost,
.cta-banner-service .btn-ghost,
.page-hero .btn-ghost,
.coming-soon-card .btn-ghost,
.cs-ctas .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}
.hero .btn-ghost:hover,
.cta-banner-service .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.coming-soon-card .btn-ghost:hover,
.cs-ctas .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1.5px solid var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--darker);
    transform: translateY(-2px);
}

/* Slider controls */
.slide-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 20;
}
.dot {
    width: 40px; height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s var(--ease);
    padding: 0;
}
.dot.active { background: var(--green); width: 60px; }

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(10px);
    transition: all 0.35s var(--ease);
}
.slide-arrow:hover { background: var(--green); color: var(--darker); border-color: var(--green); }
.slide-arrow.prev { left: 2rem; }
.slide-arrow.next { right: 2rem; }
.slide-arrow svg { width: 22px; height: 22px; }

.scroll-indicator {
    position: absolute;
    bottom: 7rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
}
.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--green), transparent);
    margin: 0.5rem auto 0;
}
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ===== Sections (shared) ===== */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-dark {
    background: var(--dark);
    color: var(--text-light);
}
.section-darker {
    background: var(--darker);
    color: var(--text-light);
}
.section-pattern-dark {
    background:
        radial-gradient(circle at 15% 25%, rgba(138, 139, 79, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(138, 139, 79, 0.06) 0%, transparent 40%),
        var(--dark);
    color: var(--text-light);
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-kicker {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-darker);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-dark .section-kicker,
.section-darker .section-kicker,
.section-pattern-dark .section-kicker {
    background: rgba(138, 139, 79, 0.12);
    color: var(--green-light);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.5px;
}
.section-title .accent {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark section'lar için beyaz başlık + açık gri desc */
.features .section-title,
.products .section-title,
.hero .section-title,
.cta-banner .section-title {
    color: #fff;
}
.features .section-title .accent,
.products .section-title .accent {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features .section-desc,
.products .section-desc,
.section-dark .section-desc,
.section-darker .section-desc,
.section-pattern-dark .section-desc {
    color: rgba(255, 255, 255, 0.75);
}
.features .section-kicker,
.products .section-kicker {
    background: rgba(138, 139, 79, 0.18);
    color: var(--green-light);
    border: 1px solid rgba(138, 139, 79, 0.3);
}

/* ===== About Section ===== */
.about { background: var(--bg); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-3), var(--green-darker));
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(138, 139, 79, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(138, 139, 79, 0.2) 0%, transparent 45%);
}
.about-visual-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}
.about-visual-inner svg {
    width: 280px; height: 280px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(138, 139, 79, 0.5));
}
.about-visual-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(45, 43, 30, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 139, 79, 0.3);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    color: #fff;
    z-index: 3;
}
.about-visual-badge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.about-visual-badge .lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.2rem;
}
.about-content h2 .accent {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.about-stats .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.about-stats .stat-lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ===== Services (kategori kartları) ===== */
.services { background: var(--bg-soft); }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid rgba(138, 139, 79, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    cursor: default;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green-pale), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(138, 139, 79, 0.25);
    transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: rotate(-6deg) scale(1.08);
    box-shadow: var(--shadow-glow);
}
.service-icon svg {
    width: 30px; height: 30px;
    color: var(--green-dark);
    transition: color 0.4s var(--ease);
}
.service-card:hover .service-icon svg { color: #fff; }

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.service-card > p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 1.2rem;
}
.service-items {
    list-style: none;
    border-top: 1px dashed var(--border);
    padding-top: 1rem;
}
.service-items li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
}
.service-items li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.75rem;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(138, 139, 79, 0.2);
}
.service-items li a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-items li a:hover {
    color: var(--green-dark);
    transform: translateX(3px);
}
.service-card:hover .service-items li { color: var(--text); }
.service-items .more {
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
}
.service-items .more::before { display: none; }
.service-items .more a { color: var(--green-dark); font-weight: 600; }
.service-items .more a:hover { color: var(--green); }

/* ===== Features strip (neden biz) ===== */
.features { background: var(--dark-3); position: relative; overflow: hidden; }
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(138, 139, 79, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 139, 79, 0.1) 0%, transparent 45%);
}
.features .container { position: relative; z-index: 2; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.25rem;
}
.feature-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s var(--ease);
    backdrop-filter: blur(8px);
}
.feature-item:hover {
    background: rgba(138, 139, 79, 0.1);
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: var(--shadow-glow);
}
.feature-item .ico {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    transition: transform 0.4s var(--ease-bounce);
}
.feature-item:hover .ico { transform: rotate(-8deg) scale(1.1); }
.feature-item .ico svg { width: 26px; height: 26px; }
.feature-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.feature-item p {
    color: var(--text-muted-dark);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===== Products (ürün tab'leri) ===== */
.products { background: var(--dark); position: relative; }
.products::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(138, 139, 79, 0.3), transparent);
}

.product-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.product-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-muted-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.product-tab:hover { color: #fff; border-color: var(--green); }
.product-tab.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    border-color: var(--green);
    font-weight: 600;
}

.product-panel { display: none; animation: fadePanel 0.6s var(--ease); }
.product-panel.active { display: block; }
@keyframes fadePanel {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.product-card::after {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(138, 139, 79, 0.15) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    background: linear-gradient(145deg, rgba(138, 139, 79, 0.1), rgba(255, 255, 255, 0.03));
}
.product-card:hover::after { opacity: 1; }
.product-card .dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 0 4px rgba(138, 139, 79, 0.2);
}
.product-card h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* ===== CTA banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-wrap h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--darker);
    margin-bottom: 0.4rem;
}
.cta-wrap p { color: rgba(31, 29, 19, 0.75); font-weight: 500; }
.cta-wrap .btn-primary {
    background: var(--darker);
    color: var(--green);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.cta-wrap .btn-primary:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4); }

/* Ghost buton — CTA banner koyu zemin için beyaz varyant */
.cta-wrap .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}
.cta-wrap .btn-ghost:hover {
    background: #fff;
    border-color: #fff;
    color: var(--darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

/* ===== Contact ===== */
.contact { background: var(--bg); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}
.contact-info > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
}
.contact-cards {
    display: grid;
    gap: 1rem;
}
.contact-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.4rem;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    color: inherit;
}
.contact-card:hover {
    background: #fff;
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}
.contact-card .ico {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
}
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.contact-card .val {
    color: var(--text);
    font-weight: 500;
    margin-top: 0.2rem;
    font-size: 0.98rem;
}

.contact-form {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}
.contact-form h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(138, 139, 79, 0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.75rem; }

.contact-disabled {
    background: rgba(245, 166, 35, 0.12);
    border: 1px dashed rgba(245, 166, 35, 0.4);
    color: #8a5a00;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.12), transparent 45%);
    pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo img {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.3)) brightness(1.15);
}
.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 340px;
    color: rgba(255, 255, 255, 0.85);
}
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
    background: #fff;
    color: var(--green-dark);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
    letter-spacing: 0.3px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: #fff;
    border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.82);
    transition: all 0.3s var(--ease);
}
.footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}
.footer-contact li svg {
    width: 18px; height: 18px;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.9;
}
.footer-contact li a { color: rgba(255, 255, 255, 0.9); }
.footer-contact li a:hover { color: #fff; padding-left: 0; text-decoration: underline; }

/* ===== Dil seçici (top-nav içinde) ===== */
.lang-switcher {
    position: relative;
    list-style: none;
}
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, rgba(168, 169, 104, 0.22), rgba(168, 169, 104, 0.1));
    border: 1px solid rgba(168, 169, 104, 0.45);
    color: #fff;
    font: inherit;
    padding: 0.38rem 0.75rem 0.38rem 0.55rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.25s var(--ease);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 2px 8px rgba(0,0,0,0.15);
}
.lang-toggle:hover {
    background: linear-gradient(135deg, rgba(168, 169, 104, 0.4), rgba(168, 169, 104, 0.22));
    border-color: var(--green-light, #A8A968);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(168, 169, 104, 0.35);
}
.lang-switcher.is-open .lang-toggle {
    background: linear-gradient(135deg, rgba(168, 169, 104, 0.45), rgba(168, 169, 104, 0.28));
    border-color: var(--green-light, #A8A968);
    box-shadow: 0 4px 14px rgba(168, 169, 104, 0.4);
}
.lang-toggle .lang-globe {
    width: 15px;
    height: 15px;
    color: var(--green-light, #A8A968);
    flex-shrink: 0;
}
.lang-toggle:hover .lang-globe { color: #fff; }
.lang-toggle .lang-code {
    letter-spacing: 0.08em;
    font-weight: 800;
}
.lang-toggle .lang-chev {
    width: 12px;
    height: 12px;
    opacity: 0.85;
    transition: transform 0.25s var(--ease);
    margin-left: 0.1rem;
}
.lang-switcher.is-open .lang-toggle .lang-chev { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid rgba(168, 169, 104, 0.25);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(31, 29, 19, 0.25), 0 4px 12px rgba(31, 29, 19, 0.1);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transform-origin: top right;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
    z-index: 200;
}
.lang-switcher.is-open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0s;
}
/* Küçük üçgen ok */
.lang-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(168, 169, 104, 0.25);
    border-left: 1px solid rgba(168, 169, 104, 0.25);
    transform: rotate(45deg);
}
.lang-menu-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem 0.65rem;
    color: var(--green-dark, #6B6C3F);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(168, 169, 104, 0.18);
    margin-bottom: 0.35rem;
}
.lang-menu-head svg {
    width: 14px;
    height: 14px;
    color: var(--green, #8A8B4F);
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.7rem;
    border-radius: 9px;
    text-decoration: none;
    color: #2a2a18;
    font-size: 0.95rem;
    transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.15s var(--ease);
    position: relative;
}
.lang-item .lang-badge {
    flex-shrink: 0;
    width: 38px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--green-dark, #6B6C3F);
    background: rgba(138, 139, 79, 0.12);
    border: 1px solid rgba(138, 139, 79, 0.18);
    border-radius: 7px;
    transition: all 0.18s var(--ease);
}
.lang-item .lang-native {
    flex: 1;
    font-weight: 600;
    color: #2a2a18;
    letter-spacing: 0.01em;
}
.lang-item .lang-check {
    width: 16px;
    height: 16px;
    color: #fff;
    flex-shrink: 0;
}
.lang-item:hover {
    background: rgba(168, 169, 104, 0.1);
    transform: translateX(2px);
}
.lang-item:hover .lang-badge {
    background: rgba(138, 139, 79, 0.22);
    border-color: rgba(138, 139, 79, 0.32);
    color: var(--green-darker, #4F4F2B);
}
.lang-item.active {
    background: linear-gradient(135deg, var(--green, #8A8B4F), var(--green-dark, #6B6C3F));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(138, 139, 79, 0.3);
}
.lang-item.active .lang-native { color: #fff; }
.lang-item.active .lang-badge {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}
.lang-item.active:hover {
    transform: none;
    background: linear-gradient(135deg, var(--green-dark, #6B6C3F), var(--green-darker, #4F4F2B));
}

@media (max-width: 768px) {
    .lang-menu { right: 0; left: auto; min-width: 220px; }
}

/* Mobil dil değiştirici — masaüstünde gizli (.nav-menu > li > flex override için yüksek specificity) */
.nav-menu > li.mobile-lang { display: none; }

/* RTL desteği — Arapça için */
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .breadcrumb svg,
html[dir="rtl"] .nav-chev,
html[dir="rtl"] .dd-arrow svg,
html[dir="rtl"] .btn svg:last-child { transform: scaleX(-1); }

/* ===== Site Arama — Header butonu + Overlay ===== */
.btn-search-toggle {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--green-darker);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.btn-search-toggle:hover {
    background: var(--green-pale);
    border-color: var(--green-light);
    color: var(--green-dark);
}
.btn-search-toggle svg { width: 18px; height: 18px; }

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(28, 30, 18, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6vh 1.5rem 2rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.search-overlay.is-open { opacity: 1; }
.search-overlay[hidden] { display: none !important; }
.so-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.so-close:hover { background: rgba(255, 255, 255, 0.18); }
.so-close svg { width: 20px; height: 20px; }
.so-inner {
    width: 100%;
    max-width: 720px;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.search-overlay.is-open .so-inner {
    transform: translateY(0);
    opacity: 1;
}
.so-kicker {
    display: block;
    color: var(--green-pale);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    text-align: center;
}
.so-form {
    background: #fff;
    border-radius: 14px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.so-icon {
    color: var(--green-dark);
    display: flex;
    padding-left: 0.7rem;
}
.so-icon svg { width: 20px; height: 20px; }
.so-form input[type="search"] {
    flex: 1 1 auto;
    border: 0;
    outline: none;
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--green-darker);
    background: transparent;
    min-width: 0;
}
.so-form input[type="search"]::placeholder { color: rgba(79, 79, 43, 0.5); }
.so-submit {
    flex: 0 0 auto;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}
.so-hints {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}
.so-hints span { font-weight: 600; }
.so-hints a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    transition: background 0.2s, border-color 0.2s;
}
.so-hints a:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.35); }
@media (max-width: 640px) {
    .so-form { flex-wrap: wrap; }
    .so-form input[type="search"] { min-width: 0; flex: 1 1 60%; padding: 0.65rem 0.4rem; }
    .so-submit { flex: 0 0 auto; padding: 0.6rem 1rem; }
}

/* ===== Arama sonuç sayfası ===== */
.search-results { padding: 2.5rem 0 4rem; }
.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--border, #E8E2CD);
    border-radius: 12px;
    padding: 0.55rem 0.6rem 0.55rem 1rem;
    box-shadow: 0 4px 16px rgba(79, 79, 43, 0.06);
    margin-bottom: 2rem;
}
.search-form .sf-icon {
    color: var(--green-dark);
    display: flex;
}
.search-form .sf-icon svg { width: 20px; height: 20px; }
.search-form input[type="search"] {
    flex: 1 1 auto;
    border: 0;
    outline: none;
    padding: 0.7rem 0.4rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--green-darker);
    background: transparent;
    min-width: 0;
}
.search-form .btn { flex: 0 0 auto; padding: 0.65rem 1.4rem; font-size: 0.92rem; }

.sr-group { margin-bottom: 2.4rem; }
.sr-group-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--green-darker);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-pale);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sr-group-title span {
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 0.78rem;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
}
.sr-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.sr-list li a {
    display: block;
    background: #fff;
    border: 1px solid var(--border, #E8E2CD);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.sr-list li a:hover {
    border-color: var(--green-light);
    box-shadow: 0 6px 18px rgba(79, 79, 43, 0.07);
    transform: translateY(-1px);
}
.sr-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.sr-title {
    display: block;
    color: var(--green-darker);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
.sr-meta {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}
.sr-desc {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.search-empty {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border, #E8E2CD);
    border-radius: 14px;
    padding: 2.5rem 2rem;
}
.search-empty h2 {
    color: var(--green-darker);
    font-size: 1.25rem;
    margin: 0 0 0.6rem;
}
.search-empty p {
    color: var(--text-muted);
    margin: 0 0 1.4rem;
}
.search-suggest {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.7rem;
    text-align: left;
}
.ss-card {
    display: block;
    background: var(--bg-soft);
    border: 1px solid var(--border, #E8E2CD);
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}
.ss-card:hover {
    border-color: var(--green-light);
    transform: translateY(-1px);
}
.ss-card strong {
    display: block;
    color: var(--green-darker);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}
.ss-card span {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}
.ss-card-cta {
    background: var(--green-pale);
    border-color: var(--green-light);
}

/* Mobil header'da search butonu sığabilsin */
@media (max-width: 768px) {
    .btn-search-toggle { width: 38px; height: 38px; }
    .btn-search-toggle svg { width: 16px; height: 16px; }
}

/* ===== Footer Newsletter ===== */
.footer-newsletter {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem 0 1.6rem;
}
.fnl-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}
.fnl-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    line-height: 1.25;
}
.fnl-info p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}
.fnl-form { width: 100%; }
.fnl-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
    margin-bottom: 0.7rem;
}
.fnl-row input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--green-darker);
    font-size: 0.95rem;
    padding: 0.78rem 1rem;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}
.fnl-row input[type="email"]:focus {
    outline: none;
    background: #fff;
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(168, 169, 104, 0.25);
}
.fnl-submit {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.78rem 1.3rem;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.fnl-submit svg { width: 16px; height: 16px; }
.fnl-kvkk {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.45;
    cursor: pointer;
}
.fnl-kvkk input[type="checkbox"] {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 0.15rem;
    accent-color: var(--green-light);
    cursor: pointer;
}
.fnl-kvkk a { color: #fff; text-decoration: underline; }
.fnl-kvkk a:hover { color: var(--green-pale); }
.fnl-msg {
    margin-top: 0.7rem;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.4;
}
.fnl-msg-ok {
    background: rgba(168, 169, 104, 0.22);
    border: 1px solid rgba(168, 169, 104, 0.5);
    color: #fff;
}
.fnl-msg-info {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.92);
}
.fnl-msg-err {
    background: rgba(220, 53, 69, 0.18);
    border: 1px solid rgba(220, 53, 69, 0.45);
    color: #ffd5d8;
}
@media (max-width: 768px) {
    .fnl-wrap { grid-template-columns: 1fr; gap: 1.4rem; }
    .fnl-info h3 { font-size: 1.1rem; }
    .fnl-row { flex-direction: column; gap: 0.55rem; }
    .fnl-submit { justify-content: center; }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.18);
    padding: 1.1rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom > div > div,
.footer-bottom-inner > div { position: relative; z-index: 2; }
.footer-bottom span a { color: #fff; }
@media (max-width: 640px) {
    .footer-bottom-inner { justify-content: center; text-align: center; }
}
.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s;
}
.footer-bottom-links a:hover { color: #fff; text-decoration: underline; }
.footer-bottom-links .fb-sep { color: rgba(255, 255, 255, 0.35); }

/* ===== Yüzen Aksiyon Butonları (WhatsApp + Hemen Ara + Teklif) ===== */
.float-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-end;
}

.float-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    height: 56px;
    padding: 0;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    overflow: hidden;
    transition: width 0.4s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
    width: 56px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.float-btn .fb-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.float-btn .fb-icon svg { width: 24px; height: 24px; display: block; }
.float-btn .fb-label {
    padding: 0;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.4s var(--ease), opacity 0.25s var(--ease), padding 0.4s var(--ease);
}
.float-btn:hover {
    width: auto;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.float-btn:hover .fb-label {
    padding-right: 1.1rem;
    padding-left: 0.25rem;
    max-width: 220px;
    opacity: 1;
}

/* Renk varyasyonları */
.float-wa {
    background: #25D366;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}
.float-wa:hover { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55); }
/* WhatsApp dalga efekti */
.float-wa::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    border: 3px solid #25D366;
    border-radius: 50%;
    opacity: 0.5;
    animation: waRing 2s ease-out infinite;
    pointer-events: none;
}
@keyframes waRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.55); opacity: 0; }
}

.float-call {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    box-shadow: 0 8px 22px rgba(138, 139, 79, 0.5);
}
.float-call:hover { box-shadow: 0 12px 30px rgba(138, 139, 79, 0.6); }
.float-call .fb-icon svg { stroke: var(--darker); }

.float-quote {
    background: linear-gradient(135deg, #2D2B1E, #4A4833);
    border: 1px solid rgba(138, 139, 79, 0.45);
    color: #fff;
    box-shadow: 0 8px 22px rgba(31, 29, 19, 0.5);
}
.float-quote:hover {
    background: linear-gradient(135deg, #4A4833, #4F4F2B);
    border-color: var(--green);
    box-shadow: 0 12px 30px rgba(138, 139, 79, 0.35);
}
.float-quote .fb-icon svg { stroke: var(--green); }

/* Mobil: sadece ikonlar, etiketler gizli, tek sütun kalır */
@media (max-width: 640px) {
    .float-actions {
        bottom: 1rem;
        right: 1rem;
        gap: 0.55rem;
    }
    .float-btn {
        height: 50px;
        width: 50px;
    }
    .float-btn .fb-icon {
        width: 50px; height: 50px;
    }
    .float-btn .fb-icon svg { width: 22px; height: 22px; }
    .float-wa::before { width: 50px; height: 50px; }
}

/* ===== Reveal animation ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { height: 380px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body.menu-open { overflow: hidden; position: fixed; width: 100%; }
    body.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 99;
        pointer-events: none;
    }
    .nav-menu.active { z-index: 101; }
    /* Hamburger butonu menünün üstünde, her zaman erişilebilir */
    .nav-toggle.active { z-index: 102; position: relative; }

    .section { padding: 4rem 0; }
    .section-head { margin-bottom: 2.5rem; }

    .nav-toggle { display: block; }
    .nav-phone { display: none; }
    .top-header { display: none; }
    .logo img { height: 58px; }
    .site-header.scrolled .logo img { height: 50px; }
    .site-footer .logo img { height: 68px; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        width: 86%;
        max-width: 380px;
        background: #1A180F;
        background: linear-gradient(180deg, #2D2B1E 0%, #14130C 100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        padding: 5.5rem 1rem 6rem;
        gap: 0.3rem;
        transition: right 0.4s var(--ease);
        border-left: 1px solid rgba(168, 169, 104, 0.25);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
    }
    .nav-menu.active { right: 0; }
    .nav-menu > li { display: block; width: 100%; }
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.15rem;
        font-size: 1.02rem;
        font-weight: 700;
        color: #FFFFFF;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(168, 169, 104, 0.22);
        border-radius: 10px;
        margin-bottom: 0.45rem;
        letter-spacing: 0.2px;
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    }
    .nav-menu > li > a:hover,
    .nav-menu > li > a:active { background: rgba(168, 169, 104, 0.22); border-color: var(--green-light); color: #FFFFFF; transform: translateX(2px); }
    .nav-menu > li.has-dropdown.open > a { background: rgba(168, 169, 104, 0.28); border-color: var(--green-light); color: var(--green-light); }
    .nav-menu .nav-chev { width: 18px; height: 18px; color: var(--green-light); opacity: 0.85; }

    /* Mobil dropdown: accordion */
    .has-dropdown .nav-chev {
        transition: transform 0.3s var(--ease);
    }
    .has-dropdown.open > a .nav-chev {
        transform: rotate(180deg);
        color: var(--green-light);
    }
    .has-dropdown::after { display: none; }

    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: hidden;
        transform: none !important;
        min-width: 0 !important;
        width: 100%;
        max-height: 0;
        padding: 0 !important;
        margin: 0 0 0.4rem;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        border-radius: 10px;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow: hidden;
        transition: max-height 0.4s var(--ease), padding 0.3s ease, visibility 0s linear 0.4s;
    }
    .has-dropdown.open .dropdown {
        visibility: visible;
        max-height: 800px;
        padding: 0.6rem !important;
        transition: max-height 0.5s var(--ease), padding 0.3s ease, visibility 0s linear 0s;
    }
    .dropdown.mega {
        left: auto !important; right: auto !important;
    }
    .dropdown-head { display: none; }
    .dropdown-footer {
        margin-top: 0.5rem;
        padding: 0.85rem 1rem !important;
        background: var(--green) !important;
        color: #fff !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        text-align: center;
        justify-content: center;
    }
    .dropdown-list { display: flex; flex-direction: column; gap: 0.3rem; }
    .dropdown-grid-2 { grid-template-columns: 1fr !important; display: grid; gap: 0.3rem; }
    .dropdown-list a {
        padding: 0.8rem 0.9rem !important;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(168, 169, 104, 0.18) !important;
        color: rgba(255,255,255,0.92) !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
    }
    .dropdown-list a:hover, .dropdown-list a:active {
        background: rgba(168, 169, 104, 0.2) !important;
        border-color: var(--green-light) !important;
        color: #fff !important;
    }
    .dropdown-list .dd-ico { color: var(--green-light) !important; opacity: 1 !important; }
    .dropdown-list .dd-title { color: #fff !important; font-weight: 700 !important; }
    .dropdown-list .dd-sub { color: rgba(255,255,255,0.6) !important; font-size: 0.78rem; }
    .dropdown-list .dd-arrow { color: var(--green-light) !important; opacity: 0.7; }

    /* Hover'ı mobilde devre dışı bırak — sadece .open ile açılsın */
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown {
        opacity: 1 !important;
        visibility: hidden;
        transform: none !important;
    }
    .has-dropdown.open:hover .dropdown,
    .has-dropdown.open .dropdown {
        visibility: visible;
    }

    .slide-arrow { display: none; }
    .slide-dots { bottom: 2rem; }
    .scroll-indicator { display: none; }
    .hero { min-height: 560px; }

    .service-card { padding: 1.8rem 1.4rem; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .product-tabs { gap: 0.35rem; }
    .product-tab { padding: 0.5rem 0.9rem; font-size: 0.82rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
    .footer-bottom { text-align: center; justify-content: center; }


    .construction-banner { font-size: 0.78rem; }

    /* === Mobil dil değiştirici (mobile menü içinde) === */
    .nav-menu > li.mobile-lang {
        display: block;
        margin-top: 1.25rem;
        padding: 1rem;
        background: rgba(168, 169, 104, 0.08);
        border: 1px solid rgba(168, 169, 104, 0.25);
        border-radius: 12px;
    }
    .mobile-lang-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--green-light);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }
    .mobile-lang-label svg { width: 16px; height: 16px; }
    .mobile-lang-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    .mobile-lang-item {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.7rem 0.85rem !important;
        background: rgba(255, 255, 255, 0.06) !important;
        border: 1px solid rgba(168, 169, 104, 0.2) !important;
        color: rgba(255, 255, 255, 0.92) !important;
        border-radius: 8px;
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .mobile-lang-item:hover,
    .mobile-lang-item:active {
        background: rgba(168, 169, 104, 0.22) !important;
        border-color: var(--green-light) !important;
        transform: translateY(-1px);
    }
    .mobile-lang-item.active {
        background: var(--green) !important;
        border-color: var(--green) !important;
        color: #fff !important;
        font-weight: 700;
    }
    .mll-code {
        flex-shrink: 0;
        min-width: 32px;
        text-align: center;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        padding: 0.2rem 0.45rem;
        background: rgba(168, 169, 104, 0.25);
        border-radius: 5px;
        color: var(--green-light);
    }
    .mobile-lang-item.active .mll-code {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
    }
    .mll-native { flex: 1; font-size: 0.92rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .product-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .form-row { grid-template-columns: 1fr; }
    .slide-ctas { flex-direction: column; align-items: flex-start; width: 100%; }
    .slide-ctas .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.1s !important; }
}

/* ========================================================= */
/* ===== YENİ EKLENEN BÖLÜMLER / İYİLEŞTİRMELER ============ */
/* ========================================================= */

/* ----- About: yeni görsel + değerler + stats strip ----- */
.about-visual-inner img {
    max-width: 100%;
    height: auto;
    width: 480px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 36px rgba(138, 139, 79, 0.28));
}
.about-visual-card {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 43, 30, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(138, 139, 79, 0.35);
    border-radius: 14px;
    padding: 0.85rem 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}
.about-visual-card .ac-ico {
    width: 40px; height: 40px;
    background: rgba(138, 139, 79, 0.22);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}
.about-visual-card .ac-ico svg { width: 20px; height: 20px; }
.about-visual-card .ac-ttl { font-weight: 700; font-size: 0.9rem; color: #fff; }
.about-visual-card .ac-sub { font-size: 0.72rem; color: var(--green); letter-spacing: 1px; text-transform: uppercase; }

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}
.about-content .lead strong { color: var(--green); font-weight: 600; }

.about-values {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem 1.3rem;
}
.about-values li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}
.av-check {
    position: relative;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 9px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(138, 139, 79, 0.3);
    display: block;
    margin-top: 2px;
}
/* CSS-only check mark — pseudo element ile rotate edilmiş border */
.av-check::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 48%;
    width: 7px;
    height: 13px;
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: translate(-50%, -58%) rotate(45deg);
    box-sizing: border-box;
}
.about-values li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}
.about-values li span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.about-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

/* Stats strip (yeni standalone şerit) */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    padding: 2.4rem 2rem;
    background: linear-gradient(135deg, var(--dark-3), var(--green-darker));
    border: 1px solid rgba(138, 139, 79, 0.25);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(138, 139, 79, 0.18), transparent 55%),
        radial-gradient(circle at 15% 30%, rgba(138, 139, 79, 0.12), transparent 45%);
    pointer-events: none;
}
.stats-strip .stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stats-strip .stat-item + .stat-item {
    border-left: 1px solid rgba(138, 139, 79, 0.18);
}
.stats-strip .stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--green-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stats-strip .stat-lbl {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ----- Hizmet kartları ek iyileştirme ----- */
.service-card {
    --card-accent: var(--green);
    display: flex;
    flex-direction: column;
}
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.service-key {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: rgba(138, 139, 79, 0.12);
    color: var(--card-accent);
    border: 1px solid rgba(138, 139, 79, 0.3);
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
.service-detail {
    margin-top: auto;
    padding-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--card-accent);
    font-size: 0.85rem;
    font-weight: 600;
    border-top: 1px solid rgba(138, 139, 79, 0.15);
    margin-top: 1.4rem;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease), transform 0.35s var(--ease), font-size 0.35s var(--ease), letter-spacing 0.35s var(--ease);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transform-origin: left center;
}
.service-detail svg { width: 16px; height: 16px; transition: width 0.35s var(--ease), height 0.35s var(--ease); }
.service-card:hover .service-detail {
    gap: 0.5rem;
    color: var(--card-accent);
    border-top-color: rgba(138, 139, 79, 0.4);
    font-size: 0.74rem;
    letter-spacing: 0.5px;
    transform: scale(0.9);
}
.service-card:hover .service-detail svg { width: 13px; height: 13px; }

/* ----- Süreç bölümü ----- */
.process { background: var(--bg-soft); position: relative; overflow: hidden; }
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(138, 139, 79, 0.08), transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(138, 139, 79, 0.06), transparent 45%);
    pointer-events: none;
}
.process .container { position: relative; z-index: 1; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 3rem;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 11%;
    right: 11%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(138, 139, 79, 0.35) 8%, rgba(138, 139, 79, 0.35) 92%, transparent);
    z-index: 0;
}

.process-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 1.5rem 1.8rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease);
}
.process-step:hover {
    transform: translateY(-6px);
    background: var(--card-hover);
    border-color: rgba(138, 139, 79, 0.4);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}

.ps-no {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    font-weight: 800;
    font-size: 1.1rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(138, 139, 79, 0.45);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}
.ps-icon {
    width: 56px; height: 56px;
    background: rgba(138, 139, 79, 0.08);
    border: 1px solid rgba(138, 139, 79, 0.22);
    border-radius: 14px;
    margin: 0.5rem auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    transition: all 0.3s var(--ease);
}
.ps-icon svg { width: 26px; height: 26px; }
.process-step:hover .ps-icon {
    background: var(--green);
    color: var(--darker);
    transform: scale(1.08) rotate(-4deg);
    border-color: var(--green);
}
.process-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ----- Ürün panel başlığı + zenginleşmiş kartlar ----- */
.product-panel-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.pp-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(138, 139, 79, 0.3);
}
.pp-icon svg { width: 26px; height: 26px; }
.product-panel-head > div:nth-child(2) { flex: 1; min-width: 0; }
.pp-key {
    display: inline-block;
    background: rgba(138, 139, 79, 0.15);
    color: var(--green);
    padding: 0.22rem 0.55rem;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
    font-family: 'Montserrat', sans-serif;
}
.product-panel-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.pp-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.35rem 0.7rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
}

/* Zenginleştirilmiş product-card (eski basit versiyonun üstüne yazıyor) */
.product-card {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.35s var(--ease) !important;
    position: relative;
    overflow: hidden;
}
.product-card::after { display: none; }
.product-card .dot { display: none; }
.product-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--green-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease);
}
.product-card:hover::before { transform: scaleY(1); }
.product-card:hover {
    border-color: rgba(138, 139, 79, 0.5) !important;
    background: rgba(138, 139, 79, 0.12) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}
.pc-icon {
    width: 38px; height: 38px;
    background: rgba(138, 139, 79, 0.18);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.product-card:hover .pc-icon {
    background: var(--green);
    color: var(--darker);
    transform: rotate(-6deg);
}
.pc-icon svg { width: 18px; height: 18px; }
.pc-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
}
.product-card h4 {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}
.product-card:hover h4 { color: #fff !important; }
.pc-action {
    font-size: 0.7rem;
    color: var(--green-light);
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}
.pc-action svg { width: 12px; height: 12px; }
.product-card:hover .pc-action { opacity: 1; transform: translateX(0); }

/* Product panel başlığı (dark bg için) */
.product-panel-head {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.product-panel-head h3 { color: #fff !important; }
.pp-count { color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }

/* ----- İletişim: çalışma saatleri + harita ----- */
.contact-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.1), rgba(138, 139, 79, 0.04));
    border: 1px solid rgba(138, 139, 79, 0.28);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}
.contact-hours svg {
    width: 24px; height: 24px;
    color: var(--green);
    flex-shrink: 0;
}
.contact-hours strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.contact-hours span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-map {
    margin-top: 3rem;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}
.contact-map iframe {
    display: block;
    filter: grayscale(0.25) contrast(1.05);
}
.map-cta {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(31, 29, 19, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(138, 139, 79, 0.45);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s var(--ease);
    text-decoration: none;
}
.map-cta svg { width: 15px; height: 15px; color: var(--green); transition: color 0.3s var(--ease); }
.map-cta:hover {
    background: var(--green);
    color: var(--darker);
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 139, 79, 0.4);
}
.map-cta:hover svg { color: var(--darker); }

/* Eski .about-stats (kullanılmıyor artık) - gizle */
.about-stats { display: none; }

/* Mobile */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 420px; }
    .about-values { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 0.5rem; padding: 1.8rem 1rem; }
    .stats-strip .stat-item + .stat-item { border-left: none; }
    .stats-strip .stat-item:nth-child(3),
    .stats-strip .stat-item:nth-child(4) {
        padding-top: 1.8rem;
        border-top: 1px solid rgba(138, 139, 79, 0.15);
    }
    .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
    .process-steps::before { display: none; }
}
@media (max-width: 560px) {
    .process-steps { grid-template-columns: 1fr; }
    .about-ctas .btn { width: 100%; justify-content: center; }
    .about-visual-card { top: 1rem; right: 1rem; padding: 0.7rem 0.85rem; }
    .about-visual-card .ac-ico { width: 34px; height: 34px; }
    .about-visual-card .ac-ttl { font-size: 0.82rem; }
    .about-visual-card .ac-sub { font-size: 0.68rem; }
    .contact-hours { padding: 0.85rem; gap: 0.75rem; }
    .map-cta { font-size: 0.72rem; padding: 0.5rem 0.75rem; top: 0.7rem; right: 0.7rem; }
    .product-panel-head { padding: 1rem 1.1rem; gap: 0.7rem; }
    .pp-icon { width: 44px; height: 44px; }
    .pp-icon svg { width: 22px; height: 22px; }
    .product-panel-head h3 { font-size: 1.05rem; }
    .pp-count { font-size: 0.7rem; padding: 0.25rem 0.55rem; }
}

/* ========================================================= */
/* Header yeniden yapılandırma — mobile + tablet düzeltmeleri */
/* ========================================================= */

/* Tablet: dropdown mega → tek kolon */
@media (max-width: 1100px) {
    .dropdown.mega { min-width: 380px; }
    .dropdown-grid-2 { grid-template-columns: 1fr; }
    .btn-call .bc-label { display: none; }
    .btn-call .bc-number { font-size: 0.88rem; }
}

/* Mobile: top-header gizli, dropdown accordion */
@media (max-width: 768px) {
    .top-header { display: none; }

    /* Hemen Ara butonu mobilde gizli — alt bar karşılıyor */
    .btn-call { display: none; }

    /* Dropdown: mobile menu içinde accordion */
    .has-dropdown > a .nav-chev {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    .has-dropdown.open > a .nav-chev { transform: rotate(180deg); }

    .dropdown {
        position: static !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        min-width: 0 !important;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 0.3rem 0.5rem 0.5rem 1rem;
        margin-top: 0.3rem;
        backdrop-filter: none;
        display: none;
    }
    .dropdown.mega { right: auto; }
    .has-dropdown.open .dropdown { display: block; }

    .dropdown-head { display: none; }
    .dropdown-grid-2 { grid-template-columns: 1fr; }
    .dropdown-list a {
        padding: 0.55rem 0.7rem !important;
    }
    .dd-ico { width: 32px; height: 32px; }
    .dd-ico svg { width: 16px; height: 16px; }
    .dd-title { font-size: 0.85rem; }
    .dd-sub { font-size: 0.7rem; }
    .dropdown-footer { font-size: 0.75rem; padding: 0.6rem !important; }
}

@media (max-width: 420px) {
    .btn-call .bc-icon { width: 38px; height: 38px; }
    .btn-call .bc-icon svg { width: 17px; height: 17px; }
}

/* ========================================================= */
/* İletişim bölümü — yeni kutu-tabanlı düzen                 */
/* ========================================================= */

/* 4 Bilgi Kutusu grid'i */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    margin-bottom: 3rem;
}

.info-box {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.8rem 1.4rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}
.info-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.info-box:hover {
    transform: translateY(-6px);
    border-color: rgba(138, 139, 79, 0.45);
    box-shadow: 0 18px 40px rgba(138, 139, 79, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, #fff 0%, #F5F1E3 100%);
}
.info-box:hover::before { transform: scaleX(1); }

.ib-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.15), rgba(138, 139, 79, 0.05));
    border: 1px solid rgba(138, 139, 79, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: 1.1rem;
    transition: all 0.4s var(--ease);
}
.ib-icon svg { width: 26px; height: 26px; }
.info-box:hover .ib-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(138, 139, 79, 0.4);
    border-color: var(--green);
}

.ib-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-dark);
    margin-bottom: 0.45rem;
}
.ib-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 1.1rem;
    flex: 1;
}
.ib-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.ib-action svg { width: 14px; height: 14px; }
.info-box:hover .ib-action {
    color: var(--green);
    gap: 0.6rem;
}

/* Main contact: harita + form yanyana */
.contact-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Harita tarafı */
.contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-map {
    margin-top: 0;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    filter: grayscale(0.15) contrast(1.05);
    transition: filter 0.4s var(--ease);
}
.contact-map:hover iframe { filter: grayscale(0) contrast(1); }

/* Çalışma saatleri + sosyal medya yan kutusu */
.contact-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.08), rgba(138, 139, 79, 0.02));
    border: 1px solid rgba(138, 139, 79, 0.22);
    border-radius: var(--radius-lg);
}
.cs-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}
.cs-icon {
    width: 42px; height: 42px;
    background: #fff;
    border: 1px solid rgba(138, 139, 79, 0.28);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(138, 139, 79, 0.1);
}
.cs-icon svg { width: 20px; height: 20px; }
.cs-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--green-dark);
    margin-bottom: 0.3rem;
}
.cs-value {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.45;
}
.cs-divider {
    display: none;
}

.cs-socials {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.35rem;
}
.cs-socials a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(138, 139, 79, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    transition: all 0.3s var(--ease);
}
.cs-socials a svg { width: 14px; height: 14px; }
.cs-socials a:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-color: var(--green);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 14px rgba(138, 139, 79, 0.35);
}

/* Form kart başlığı (yeni) */
.contact-form { position: relative; }
.cf-head { margin-bottom: 1.3rem; }
.cf-kicker {
    display: inline-block;
    background: rgba(138, 139, 79, 0.12);
    color: var(--green-dark);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.cf-head h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}
.cf-head p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.form-group .req { color: #dc3545; font-weight: 700; }

/* Responsive */
@media (max-width: 1100px) {
    .info-boxes { grid-template-columns: repeat(2, 1fr); }
    .contact-main { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 360px; }
}
@media (max-width: 640px) {
    .info-boxes { grid-template-columns: 1fr; gap: 0.85rem; margin-bottom: 2rem; }
    .info-box { padding: 1.5rem 1.2rem 1.3rem; }
    .ib-icon { width: 48px; height: 48px; }
    .ib-icon svg { width: 22px; height: 22px; }
    .contact-side { grid-template-columns: 1fr; gap: 1rem; padding: 1.2rem; }
    .cs-divider { display: block; height: 1px; background: rgba(138, 139, 79, 0.2); width: 100%; }
    .contact-map iframe { min-height: 300px; }
}

/* ========================================================= */
/* Alt sayfa (iletişim vs.) page-hero, breadcrumb           */
/* ========================================================= */

.page-hero {
    position: relative;
    padding: calc(var(--header-h, 160px) + 2.5rem) 0 3rem;
    background: linear-gradient(135deg, #1F1D13 0%, #2D2B1E 60%, #1F1D13 100%);
    color: #fff;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(138, 139, 79, 0.18), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(138, 139, 79, 0.12), transparent 45%),
        linear-gradient(rgba(138, 139, 79, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 139, 79, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 60px 60px, 60px 60px;
    opacity: 0.9;
    pointer-events: none;
}
.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.95rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { color: var(--green-light); font-weight: 500; }
.breadcrumb svg { width: 12px; height: 12px; color: rgba(255, 255, 255, 0.4); }

.page-hero .section-kicker {
    background: rgba(138, 139, 79, 0.18);
    color: var(--green-light);
    border: 1px solid rgba(138, 139, 79, 0.3);
}
.page-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}
.page-title .accent {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
}

/* Tight section: daha az üst padding */
.section-light-tight {
    background: #fff;
    padding: 3.5rem 0 2.5rem;
}
.contact-page-section {
    background: var(--bg-soft);
    padding: 3rem 0 5rem;
}

/* CTA btns */
.cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.cta-btns .btn svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
    .page-hero { padding: calc(var(--header-h, 120px) + 1.5rem) 0 2.2rem; }
    .page-title { font-size: 2rem; }
    .page-desc { font-size: 0.95rem; }
}

/* ========================================================= */
/* Mobil alt sabit çubuk — notch orta buton tasarımı        */
/* ========================================================= */

.mobile-bar {
    display: none; /* desktop gizli */
}

@media (max-width: 768px) {
    /* Desktop yüzen butonlar mobilde gizli */
    .float-actions { display: none !important; }

    /* Body alt padding - bar kapatmasın */
    body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

    .mobile-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        padding: 10px 0.5rem calc(10px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(45, 43, 30, 0.96), rgba(31, 29, 19, 0.99));
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(138, 139, 79, 0.22);
        box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.4), 0 -1px 0 rgba(138, 139, 79, 0.1) inset;
        align-items: center;
        justify-content: space-around;
        gap: 0.5rem;
    }

    /* Her item */
    .mb-item {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 0.35rem 0.25rem;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.2px;
        text-decoration: none;
        border-radius: 12px;
        transition: color 0.25s, transform 0.15s;
        position: relative;
    }
    .mb-item:active { transform: scale(0.94); }

    .mb-icon {
        width: 36px; height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        transition: transform 0.25s, color 0.25s;
    }
    .mb-icon svg { width: 22px; height: 22px; }

    .mb-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    /* Sol: Teklif İste */
    .mb-quote .mb-icon {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        width: 40px; height: 34px;
    }
    .mb-quote:hover,
    .mb-quote:active { color: var(--green-light); }
    .mb-quote:hover .mb-icon,
    .mb-quote:active .mb-icon {
        background: rgba(138, 139, 79, 0.18);
    }

    /* Sağ: WhatsApp */
    .mb-wa { color: rgba(255, 255, 255, 0.85); }
    .mb-wa .mb-icon {
        background: rgba(37, 211, 102, 0.18);
        border-radius: 10px;
        width: 40px; height: 34px;
        color: #25D366;
    }
    .mb-wa:active { color: #25D366; }

    /* Orta: Hemen Ara — NOTCH tasarım (yukarı taşan yuvarlak) */
    .mb-call {
        flex: 0 0 auto;
        margin-top: -28px;
        color: var(--green);
        gap: 5px;
        padding-bottom: 0;
    }
    .mb-call .mb-call-btn {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--green-light), var(--green) 45%, var(--green-dark));
        color: var(--darker);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow:
            0 10px 26px rgba(138, 139, 79, 0.55),
            0 4px 10px rgba(0, 0, 0, 0.3),
            0 0 0 6px rgba(31, 29, 19, 0.98),  /* dark ring (bar ile harmanlanır) */
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
        transition: transform 0.2s var(--ease-bounce);
        position: relative;
        z-index: 2;
    }
    .mb-call .mb-call-btn svg { width: 26px; height: 26px; }
    .mb-call:active .mb-call-btn { transform: scale(0.92); }

    /* Pulse halka kaldırıldı — daha sade görünüm */
    .mb-call .mb-ring { display: none; }

    .mb-call .mb-label {
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--green);
        margin-top: 2px;
    }
}

/* Küçük telefonlar için kompakt */
@media (max-width: 360px) {
    .mb-item { font-size: 0.65rem; }
    .mb-call { margin-top: -24px; }
    .mb-call .mb-call-btn { width: 54px; height: 54px; }
    .mb-call .mb-call-btn svg { width: 22px; height: 22px; }
    .mb-call .mb-ring { width: 58px; height: 58px; }
    .mb-icon svg { width: 20px; height: 20px; }
}

/* ========================================================= */
/* Scroll Progress Bar — sayfa konum göstergesi             */
/* ========================================================= */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--green-light) 0%, var(--green) 50%, var(--green-dark) 100%);
    box-shadow: 0 0 10px rgba(138, 139, 79, 0.6), 0 1px 3px rgba(138, 139, 79, 0.4);
    z-index: 100;
    transition: width 0.08s linear;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
}
.scroll-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--green-light);
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 12px var(--green), 0 0 4px #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.scroll-progress.active::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .scroll-progress { transition: none; }
}

/* ========================================================= */
/* Hizmet kartı — animatif tematik arka planlar              */
/* ========================================================= */

/* Kart content'ini arka planın üstüne al */
.service-card > *:not(.service-bg-wrap) {
    position: relative;
    z-index: 1;
}

.service-bg-wrap {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 210px;
    height: 210px;
    pointer-events: none;
    color: var(--card-accent);
    opacity: 0.09;
    transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
    z-index: 0;
}
.service-card:hover .service-bg-wrap {
    opacity: 0.18;
    transform: scale(1.05) translate(-6px, -6px);
}
.s-bg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- A — Konut & Ofis: Home + Waves ---------- */
.s-bg-a .bg-home { animation: aHouseGlow 4s ease-in-out infinite; }
.s-bg-a .wv {
    animation: aWave 2.4s ease-in-out infinite;
    transform-origin: 115px 100px;
}
.s-bg-a .wv1 { animation-delay: 0s; }
.s-bg-a .wv2 { animation-delay: 0.25s; }
.s-bg-a .wv3 { animation-delay: 0.5s; }
.s-bg-a .bg-dot { animation: aBlink 2s ease-in-out infinite; }

@keyframes aWave {
    0%, 100% { opacity: 0.2; transform: translateX(0); }
    50%      { opacity: 1;   transform: translateX(3px); }
}
@keyframes aHouseGlow {
    0%, 100% { opacity: 0.9; }
    50%      { opacity: 1; }
}
@keyframes aBlink {
    0%, 100% { opacity: 0.3; }
    50%      { opacity: 1; }
}

/* ---------- B — Mekanik: Dönen dişli + pulse halkalar ---------- */
.s-bg-b .bg-gear {
    transform-origin: 100px 100px;
    animation: bGear 18s linear infinite;
}
.s-bg-b .rng {
    transform-origin: 100px 100px;
    animation: bRing 3s ease-out infinite;
    opacity: 0;
}
.s-bg-b .r1 { animation-delay: 0s; }
.s-bg-b .r2 { animation-delay: 1s; }
.s-bg-b .r3 { animation-delay: 2s; }

@keyframes bGear {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes bRing {
    0%   { transform: scale(0.4); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* ---------- C — Hacim Akustiği: EQ barlar + mic ---------- */
.s-bg-c .bar {
    transform-origin: center bottom;
    animation: cEq 1.4s ease-in-out infinite;
}
.s-bg-c .b1 { animation-delay: 0s;    animation-duration: 1.2s; }
.s-bg-c .b2 { animation-delay: 0.15s; animation-duration: 1.6s; }
.s-bg-c .b3 { animation-delay: 0.3s;  animation-duration: 1.0s; }
.s-bg-c .b4 { animation-delay: 0.45s; animation-duration: 1.4s; }
.s-bg-c .b5 { animation-delay: 0.6s;  animation-duration: 1.3s; }
.s-bg-c .b6 { animation-delay: 0.75s; animation-duration: 1.5s; }
.s-bg-c .b7 { animation-delay: 0.9s;  animation-duration: 1.1s; }

@keyframes cEq {
    0%, 100% { transform: scaleY(0.4); }
    50%      { transform: scaleY(1); }
}

/* ---------- C1 — Niş: Target pulse + merkez dot ---------- */
.s-bg-c1 .tr {
    transform-origin: 100px 100px;
    animation: c1Pulse 3s ease-in-out infinite;
}
.s-bg-c1 .r1 { animation-delay: 0s; }
.s-bg-c1 .r2 { animation-delay: 0.2s; }
.s-bg-c1 .r3 { animation-delay: 0.4s; }
.s-bg-c1 .r4 { animation-delay: 0.6s; }
.s-bg-c1 .bg-dot-center { animation: c1DotPulse 1.5s ease-in-out infinite; }
.s-bg-c1 .bg-crosshair { animation: c1HairFade 3s ease-in-out infinite; }

@keyframes c1Pulse {
    0%, 100% { opacity: 0.8; }
    50%      { opacity: 1; stroke-width: 3; }
}
@keyframes c1DotPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.4); }
    transform-origin: 100px 100px;
}
@keyframes c1HairFade {
    0%, 100% { opacity: 0.2; }
    50%      { opacity: 0.65; }
}

/* ---------- D — Gürültü/Titreşim: Sinus dalgalar kayar ---------- */
.s-bg-d .wv {
    animation: dWave 4s linear infinite;
}
.s-bg-d .wv1 { animation-delay: 0s;   animation-duration: 5s; }
.s-bg-d .wv2 { animation-delay: -1s;  animation-duration: 4s; }
.s-bg-d .wv3 { animation-delay: -2s;  animation-duration: 6s; }
.s-bg-d .bg-source { animation: dSourcePulse 1.5s ease-in-out infinite; }

@keyframes dWave {
    from { transform: translateX(0); }
    to   { transform: translateX(-80px); }
}
@keyframes dSourcePulse {
    0%, 100% { opacity: 0.5; r: 4; }
    50%      { opacity: 1; r: 7; }
}

/* ---------- F — Mühendislik: Pusula iğnesi salınır ---------- */
.s-bg-f .bg-needle {
    transform-origin: 100px 100px;
    animation: fNeedle 4s ease-in-out infinite;
}
.s-bg-f .bg-compass-rings circle:last-child {
    transform-origin: 100px 100px;
    animation: fDash 20s linear infinite;
}
.s-bg-f .bg-compass-ticks { animation: fTicksFade 3s ease-in-out infinite; }

@keyframes fNeedle {
    0%, 100% { transform: rotate(-12deg); }
    50%      { transform: rotate(18deg); }
}
@keyframes fDash {
    from { stroke-dashoffset: 0; }
    to   { stroke-dashoffset: 80; }
}
@keyframes fTicksFade {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 1; }
}

/* Reduced motion için animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
    .service-bg-wrap * { animation: none !important; }
}

/* Mobilde arka planı biraz küçült */
@media (max-width: 640px) {
    .service-bg-wrap {
        width: 160px;
        height: 160px;
        right: -15px;
        bottom: -15px;
        opacity: 0.07;
    }
}

/* ========================================================= */
/* Projeler — Yakında placeholder                            */
/* ========================================================= */
.coming-soon-section {
    background: var(--bg-soft);
    padding: 4rem 0 6rem;
}
.coming-soon-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 12px 40px rgba(138, 139, 79, 0.08);
    position: relative;
    overflow: hidden;
}
.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-dark));
}
.cs-icon-wrap {
    width: 84px;
    height: 84px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.15), rgba(138, 139, 79, 0.05));
    border: 1px solid rgba(138, 139, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}
.cs-icon-wrap svg { width: 40px; height: 40px; }
.cs-badge {
    display: inline-block;
    background: rgba(138, 139, 79, 0.15);
    color: var(--green-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.coming-soon-card h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}
.coming-soon-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cs-ctas {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================================= */
/* Hizmet Sayfaları — ana liste, kategori, detay             */
/* ========================================================= */

/* Section head compact (hero altı başlık) */
.section-head-compact {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

/* Ana liste (/hizmetler) — 6 kategori kartı grid */
.hizmetler-list-section {
    background: #fff;
    padding: 4rem 0 5rem;
}
.hizmetler-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.hl-card {
    --card-accent: #8A8B4F;
    display: flex;
    flex-direction: column;
    padding: 2.2rem 1.8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease);
}
.hl-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}
.hl-card:hover {
    transform: translateY(-8px);
    border-color: rgba(138, 139, 79, 0.5);
    box-shadow: 0 20px 48px rgba(138, 139, 79, 0.18), 0 6px 16px rgba(0, 0, 0, 0.06);
}
.hl-card:hover::before { transform: scaleX(1); }

.hl-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.15), rgba(138, 139, 79, 0.06));
    border: 1px solid rgba(138, 139, 79, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-accent);
    margin-bottom: 1.2rem;
    transition: all 0.4s var(--ease);
}
.hl-icon svg { width: 32px; height: 32px; }
.hl-card:hover .hl-icon {
    background: linear-gradient(135deg, var(--card-accent), var(--green-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
    box-shadow: 0 10px 22px rgba(138, 139, 79, 0.4);
    border-color: var(--card-accent);
}

.hl-key {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    background: rgba(138, 139, 79, 0.12);
    color: var(--card-accent);
    border: 1px solid rgba(138, 139, 79, 0.3);
    border-radius: 6px;
    margin-bottom: 0.7rem;
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}
.hl-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.hl-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex: 1;
}
.hl-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.hl-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hl-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--card-accent);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: gap 0.3s var(--ease);
}
.hl-arrow svg { width: 14px; height: 14px; }
.hl-card:hover .hl-arrow { gap: 0.6rem; }

/* FAQ */
.faq-section { background: var(--bg-soft); padding: 4rem 0; }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: border-color 0.3s var(--ease);
}
.faq-item[open] {
    border-color: rgba(138, 139, 79, 0.45);
    box-shadow: 0 8px 22px rgba(138, 139, 79, 0.12);
}
.faq-item summary {
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2.5px solid var(--green-dark);
    border-bottom: 2.5px solid var(--green-dark);
    transform: rotate(45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-right: 0.5rem;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-answer {
    padding: 0 1.4rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* CTA service variant */
.cta-banner-service {
    background: linear-gradient(135deg, #2D2B1E 0%, #2D2B1E 50%, #1F1D13 100%);
    padding: 3rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(138, 139, 79, 0.18), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(138, 139, 79, 0.1), transparent 45%);
    pointer-events: none;
}
.cta-banner-service .cta-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-banner-service .cta-text { flex: 1; min-width: 280px; }
.cta-banner-service h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.cta-banner-service h3 .accent {
    background: linear-gradient(135deg, var(--green-light), var(--green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-banner-service p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================================= */
/* 2 Kolon Layout (Kategori + Detay paylaşır)                */
/* ========================================================= */
.service-detail-section { padding: 4rem 0 5rem; background: var(--bg-soft); }
.sd-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}
.sd-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.sd-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}
.sd-content h2:first-child { margin-top: 0; }
.sd-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.sd-content a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.sd-content a:hover { color: var(--green); }

.sd-featured {
    margin: 0 0 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-3);
    border: 1px solid var(--border);
}
.sd-featured img { display: block; width: 100%; height: auto; }
.sd-featured figcaption {
    padding: 0.5rem 1rem;
    background: rgba(138, 139, 79, 0.08);
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border);
}

.sd-intro p strong { color: var(--green-dark); font-weight: 600; }
.sd-lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem !important; }

/* sd-list — tikli liste */
.sd-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.sd-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed rgba(138, 139, 79, 0.2);
    color: var(--text);
    font-size: 0.98rem;
}
.sd-list li:last-child { border-bottom: none; }
.sd-tick {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 3px 8px rgba(138, 139, 79, 0.25);
}
.sd-tick svg { width: 14px; height: 14px; }

/* Standards list */
.sd-standards { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.6rem; }
.sd-standards li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
    background: rgba(138, 139, 79, 0.06);
    border: 1px solid rgba(138, 139, 79, 0.2);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}
.sd-standards li svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; }

/* Process 4 adım (detay içinde — anasayfaya göre kompakt) */
.sd-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 0 0 1.5rem;
}
.sdp-step {
    position: relative;
    padding: 2rem 1rem 1.2rem;
    background: rgba(138, 139, 79, 0.05);
    border: 1px solid rgba(138, 139, 79, 0.2);
    border-radius: 12px;
    text-align: center;
}
.sdp-no {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 6px 14px rgba(138, 139, 79, 0.35);
}
.sdp-step h4 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.sdp-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* Inline img */
.sd-inline-img {
    margin: 2rem 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.sd-inline-img img { display: block; width: 100%; height: auto; }

/* Galeri */
.sd-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.gal-item {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 4/3;
    transition: transform 0.4s var(--ease);
    cursor: zoom-in;
}
.gal-item:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15); }
.gal-item img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Specs tablosu */
.sd-specs { margin-bottom: 1.5rem; }
.sd-specs table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.sd-specs th, .sd-specs td { padding: 0.9rem 1.1rem; text-align: left; font-size: 0.95rem; }
.sd-specs th {
    background: rgba(138, 139, 79, 0.08);
    color: var(--green-dark);
    font-weight: 700;
    width: 35%;
    border-right: 1px solid var(--border);
}
.sd-specs td { color: var(--text); }
.sd-specs tr + tr { border-top: 1px solid var(--border); }

/* Kategori hub panel (alt hizmet kartları) */
.category-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}
.cat-hub-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    background: rgba(138, 139, 79, 0.05);
    border: 1px solid rgba(138, 139, 79, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.cat-hub-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--green-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease);
}
.cat-hub-card:hover {
    background: rgba(138, 139, 79, 0.12);
    border-color: rgba(138, 139, 79, 0.45);
    transform: translateX(4px);
}
.cat-hub-card:hover::before { transform: scaleY(1); }
.chc-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(138, 139, 79, 0.3);
}
.chc-icon svg { width: 20px; height: 20px; }
.chc-body { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.cat-hub-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin: 0; line-height: 1.3; }
.chc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.75rem;
    color: var(--green-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}
.chc-link svg { width: 12px; height: 12px; }
.cat-hub-card:hover .chc-link { opacity: 1; transform: translateX(0); }

/* Kategori avantajları */
.cat-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}
.ca-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.ca-tick {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(138, 139, 79, 0.3);
}
.ca-tick svg { width: 16px; height: 16px; }
.ca-item h4 { font-size: 0.98rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.ca-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.45; margin: 0; }

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

.sd-sticky { display: flex; flex-direction: column; gap: 1rem; }

.sd-actions { display: flex; flex-direction: column; gap: 0.55rem; }

.sd-btn {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.sd-btn svg { flex-shrink: 0; width: 22px; height: 22px; }
.sd-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.sdb-label { font-size: 0.95rem; font-weight: 700; }
.sdb-sub { font-size: 0.75rem; font-weight: 500; opacity: 0.85; }

.sd-call {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--darker);
    box-shadow: 0 6px 18px rgba(138, 139, 79, 0.35);
}
.sd-call:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(138, 139, 79, 0.5); }

.sd-wa {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.sd-wa:hover { transform: translateY(-2px); background: #1ebe5a; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5); }

.sd-quote {
    background: #fff;
    color: var(--text);
    border: 1px solid rgba(138, 139, 79, 0.4);
}
.sd-quote svg { color: var(--green-dark); }
.sd-quote:hover {
    background: rgba(138, 139, 79, 0.08);
    border-color: var(--green);
    transform: translateY(-2px);
}

/* Sidebar blocks */
.sd-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
}
.sd-block h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.85rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
}

.sd-links { list-style: none; padding: 0; margin: 0; }
.sd-links li + li { margin-top: 0.2rem; }
.sd-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.7rem;
    border-radius: 8px;
    color: var(--text);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s var(--ease);
}
.sd-links a > svg:last-child {
    margin-left: auto;
    width: 14px; height: 14px;
    color: var(--text-muted);
    transition: all 0.25s;
}
.sd-li-icon {
    width: 26px; height: 26px;
    background: rgba(138, 139, 79, 0.1);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    flex-shrink: 0;
    transition: all 0.25s;
}
.sd-li-icon svg { width: 14px; height: 14px; }
.sd-li-text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sd-links a:hover {
    background: rgba(138, 139, 79, 0.1);
    color: var(--green-dark);
    transform: translateX(3px);
}
.sd-links a:hover > svg:last-child { color: var(--green-dark); transform: translateX(2px); }
.sd-links a:hover .sd-li-icon { background: var(--green); color: #fff; }

/* ========================================================= */
/* İlgili ürün kategorileri (cross-silo)                     */
/* ========================================================= */
.cat-products-related { background: var(--bg); padding: 3rem 0 5rem; }
.cpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.cpr-card {
    padding: 1.5rem 1.1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.35s var(--ease);
}
.cpr-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 139, 79, 0.45);
    box-shadow: 0 12px 28px rgba(138, 139, 79, 0.15);
}
.cpr-icon {
    width: 48px; height: 48px;
    margin: 0 auto 0.85rem;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.15), rgba(138, 139, 79, 0.05));
    border: 1px solid rgba(138, 139, 79, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    transition: all 0.3s var(--ease);
}
.cpr-icon svg { width: 24px; height: 24px; }
.cpr-card:hover .cpr-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    transform: rotate(-6deg);
}
.cpr-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.cpr-count { font-size: 0.75rem; color: var(--text-muted); }

/* ========================================================= */
/* Related services (detay sayfası altında)                  */
/* ========================================================= */
.related-services { background: var(--bg-soft); padding: 3rem 0 5rem; }
.rs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.rs-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease);
}
.rs-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 139, 79, 0.5);
    box-shadow: 0 14px 32px rgba(138, 139, 79, 0.15);
}
.rs-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    box-shadow: 0 5px 12px rgba(138, 139, 79, 0.3);
}
.rs-icon svg { width: 22px; height: 22px; }
.rs-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.9rem; line-height: 1.35; flex: 1; }
.rs-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: gap 0.3s var(--ease);
}
.rs-arrow svg { width: 13px; height: 13px; }
.rs-card:hover .rs-arrow { gap: 0.6rem; }

/* ========================================================= */
/* Responsive — hizmet sayfaları                             */
/* ========================================================= */
@media (max-width: 1100px) {
    .sd-grid { grid-template-columns: 1fr 300px; gap: 2rem; }
}
@media (max-width: 900px) {
    .sd-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sd-sidebar { position: static; top: auto; }
    .sd-content { padding: 2rem 1.5rem; }
    .sd-content h2 { font-size: 1.35rem; }
    .hizmetler-cats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .service-detail-section { padding: 2rem 0 3rem; }
    .sd-content { padding: 1.5rem 1.2rem; }
    .sd-content h2 { font-size: 1.2rem; margin: 1.8rem 0 0.8rem; }
    .hl-card { padding: 1.8rem 1.4rem; }
    .hl-icon { width: 54px; height: 54px; }
    .hl-icon svg { width: 28px; height: 28px; }
    .hl-card h3 { font-size: 1.15rem; }
    .category-hub { grid-template-columns: 1fr; }
    .cat-advantages { grid-template-columns: 1fr; }
    .sd-process { grid-template-columns: 1fr 1fr; gap: 1.8rem 0.6rem; }
    .sd-gallery { grid-template-columns: 1fr 1fr; }
    .cta-banner-service .cta-wrap { flex-direction: column; text-align: center; }
    .cta-banner-service .cta-btns { width: 100%; justify-content: center; }
    .sd-specs table { font-size: 0.85rem; }
    .sd-specs th, .sd-specs td { padding: 0.7rem 0.8rem; }
}

/* ========================================================= */
/* Hizmet sayfaları — kritik düzeltmeler                     */
/* ========================================================= */

/* Kompakt page-hero (kategori + detay için) */
.page-hero-sm {
    padding: calc(var(--header-h, 160px) + 1.5rem) 0 2.5rem;
}
.page-hero-sm .page-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    margin-bottom: 0.8rem;
}
.page-hero-sm .page-desc {
    font-size: 1rem;
    max-width: 640px;
}
.page-hero-sm .breadcrumb { margin-bottom: 1rem; }

/* Breadcrumb — uzun yol için wrap */
.breadcrumb {
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
}
.breadcrumb a, .breadcrumb span {
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Hero container default max-width 900 idi — page-hero-sm'de daha geniş */
.page-hero-sm .container { max-width: 1040px; }

/* Service detail section: padding/spacing ince ayar */
.service-detail-section {
    padding: 3rem 0 4.5rem;
}

/* sd-content — spacing tweaks */
.sd-content h2 { font-size: 1.45rem; margin: 2rem 0 0.9rem; }
.sd-content h2:first-of-type { margin-top: 0.5rem; }

/* sd-featured: çok büyük görünmesin */
.sd-featured {
    max-width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
}
.sd-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kategori hub panel — daha düzenli grid */
.category-hub { gap: 0.7rem; }

/* Cat-hub-card içerik hizalama */
.cat-hub-card h3 { margin-bottom: 0; }

/* sd-intro daha iyi spacing */
.sd-intro { margin-bottom: 2rem; }
.sd-intro p:last-child { margin-bottom: 0; }

/* sd-list — tikli madde iyileştirmeler */
.sd-list li { font-size: 0.96rem; }

/* Process adımlar: daha kompakt */
.sd-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.sdp-step { padding: 1.8rem 0.9rem 1rem; }

@media (max-width: 760px) {
    .sd-process { grid-template-columns: 1fr 1fr; gap: 1.5rem 0.6rem; }
}

/* Standards — daha iyi kart */
.sd-standards { gap: 0.5rem; }
.sd-standards li { padding: 0.7rem 0.9rem; font-size: 0.88rem; }

/* Gallery — daha küçük kart aralığı */
.sd-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}
@media (max-width: 900px) { .sd-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .sd-gallery { grid-template-columns: 1fr; } }

/* Sidebar sticky offset (header scroll durumuna göre) */
.sd-sidebar { top: 120px; }

/* CTA banner daha dengeli */
.cta-banner-service .cta-text h3 { line-height: 1.3; }
.cta-banner-service .cta-wrap { align-items: center; }

/* Kategori sayfasında "Bu Kategoride" çift kullanılmasın (zaten hub panel var, sidebar'da da gösterilmesin detay sayfasındaymış gibi) */
/* ^^ Zaten CURRENT_ITEM_SLUG boş olunca sidebar bunu gösteriyor, OK. */

/* İlgili ürünler (cat-products-related) spacing */
.cat-products-related { padding: 3rem 0 4rem; }
.cat-products-related .section-head { margin-bottom: 2rem; }

/* Related services spacing */
.related-services { padding: 3rem 0 4rem; }
.related-services .section-head { margin-bottom: 2rem; }

/* hl-card içindeki hl-key çakışmasın */
.hl-card { align-items: flex-start; }
.hl-key { margin-top: -0.25rem; }

/* --header-h variable — fallback 160px doğru değerde */
:root { --header-h: 160px; }
@media (max-width: 768px) { :root { --header-h: 80px; } }

/* ========================================================= */
/* MOBILE GENİŞLİK FIX'LERİ — yatay overflow önleme          */
/* ========================================================= */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Her element border-box ve max-width korunsun */
*, *::before, *::after { max-width: 100%; }

/* Mobilde daha dar padding */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Minmax'lı grid'leri mobile'da tek kolonla */
    .hizmetler-cats-grid,
    .service-grid,
    .product-grid,
    .feature-grid,
    .rs-grid,
    .cpr-grid {
        grid-template-columns: 1fr !important;
    }

    /* Section padding mobile'da daralt */
    .section { padding: 3rem 0; }

    /* Title'lar ekrana sığsın */
    .slide-title,
    .page-title,
    .section-title {
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    /* Harita iframe ekrana sığsın */
    .contact-map iframe { width: 100% !important; }

    /* Form elementleri taşmasın */
    input, textarea, select, button {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Sağ alt float butonlar ekrana taşmasın */
    .float-actions { right: 0.75rem; bottom: 0.75rem; }

    /* sd-content iç padding'i daralt */
    .sd-content { padding: 1.5rem 1rem; }

    /* Table scrollable yap — specs table taşmasın */
    .sd-specs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Breadcrumb uzun olunca sığmıyorsa font küçültme */
    .breadcrumb {
        font-size: 0.72rem;
        padding: 0.35rem 0.75rem;
    }
    .breadcrumb a, .breadcrumb span { max-width: 140px; }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .sd-content { padding: 1.2rem 0.9rem; }

    /* Büyük başlıklar ekranda sığdırılsın */
    .slide-title { font-size: clamp(1.5rem, 7vw, 2.5rem); }
    .page-title { font-size: clamp(1.4rem, 6vw, 2rem); }
}

/* ========================================================= */
/* Hakkımızda sayfası — özel stiller                         */
/* ========================================================= */

.hakkimizda-intro {
    background: var(--bg);
    padding: 4rem 0 3.5rem;
}

.hi-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.hi-text { }
.hi-text .lead {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.1rem;
    font-weight: 400;
}
.hi-text .lead strong { color: var(--green-dark); font-weight: 600; }
.hi-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.hi-text p strong { color: var(--text); font-weight: 600; }
.hi-closing {
    padding: 1rem 1.2rem;
    background: rgba(138, 139, 79, 0.08);
    border-left: 3px solid var(--green);
    border-radius: 0 10px 10px 0;
    margin-top: 1.5rem !important;
    color: var(--text) !important;
}
.hi-closing strong { color: var(--green-dark); }

.hi-ctas {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

/* Sağ taraf — büyük deneyim kartı */
.hi-visual {
    position: sticky;
    top: 140px;
}
.hi-visual-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border: 1px solid rgba(138, 139, 79, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--text-light);
    box-shadow: 0 16px 40px rgba(75, 73, 51, 0.25);
    position: relative;
    overflow: hidden;
}
.hi-visual-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-dark));
}

.hi-big-num {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--green-light);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -3px;
}
.hi-big-num span {
    color: var(--green);
    font-size: 3.5rem;
    vertical-align: top;
    margin-left: 0.1rem;
}
.hi-big-label {
    font-size: 1rem;
    color: rgba(245, 241, 227, 0.85);
    margin-top: 0.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hi-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 241, 227, 0.12);
}
.hi-badges .hi-badge:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid rgba(245, 241, 227, 0.08); padding-top: 1rem; }

.hi-badge .hib-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}
.hi-badge .hib-num span { color: var(--green-light); font-size: 1.2rem; vertical-align: top; }
.hi-badge .hib-lbl {
    font-size: 0.78rem;
    color: rgba(245, 241, 227, 0.7);
    margin-top: 0.3rem;
    letter-spacing: 0.3px;
}

/* ===== Değerler grid ===== */
.hakkimizda-values {
    background: var(--bg-soft);
    padding: 4rem 0;
}

.hv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.hv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.6rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.hv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.hv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 139, 79, 0.4);
    box-shadow: 0 14px 32px rgba(75, 73, 51, 0.12);
}
.hv-card:hover::before { transform: scaleX(1); }

.hv-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.15), rgba(138, 139, 79, 0.05));
    border: 1px solid rgba(138, 139, 79, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: 1rem;
    transition: all 0.4s var(--ease);
}
.hv-icon svg { width: 28px; height: 28px; }
.hv-card:hover .hv-icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
    border-color: var(--green);
}

.hv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.hv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===== Ne yapıyoruz grid ===== */
.hakkimizda-services {
    background: var(--bg);
    padding: 4rem 0 5rem;
}

.hs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.hs-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease);
    position: relative;
}
.hs-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--green), var(--green-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s var(--ease);
    border-radius: 14px 0 0 14px;
}
.hs-item:hover::before { transform: scaleY(1); }
.hs-item:hover {
    border-color: rgba(138, 139, 79, 0.4);
    background: rgba(138, 139, 79, 0.04);
    transform: translateX(4px);
}

.hs-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(138, 139, 79, 0.28);
}
.hs-icon svg { width: 24px; height: 24px; }

.hs-body { flex: 1; min-width: 0; }
.hs-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}
.hs-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.hs-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}
.hs-arrow svg { width: 18px; height: 18px; }
.hs-item:hover .hs-arrow {
    color: var(--green);
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 900px) {
    .hi-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hi-visual { position: static; top: auto; }
    .hi-visual-card { padding: 2rem 1.5rem; }
    .hi-big-num { font-size: 4.5rem; }
    .hi-big-num span { font-size: 2.5rem; }
    .hi-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .hakkimizda-intro { padding: 2.5rem 0; }
    .hi-text .lead { font-size: 1rem; }
    .hi-badges { grid-template-columns: 1fr; }
    .hi-badges .hi-badge:nth-child(3) { border-top: none; padding-top: 0; }
    .hv-grid { grid-template-columns: 1fr; }
    .hs-grid { grid-template-columns: 1fr; }
    .hi-ctas .btn { width: 100%; justify-content: center; }
}

/* ========================================================= */
/* Projeler sayfası                                          */
/* ========================================================= */

.projeler-section {
    background: var(--bg);
    padding: 3rem 0 5rem;
}

/* Filtre barı */
.projeler-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: rgba(138, 139, 79, 0.06);
    border: 1px solid var(--border);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.pf-btn {
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
}
.pf-btn:hover {
    color: var(--green-dark);
    background: rgba(138, 139, 79, 0.1);
}
.pf-btn.active {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(138, 139, 79, 0.35);
}

/* Proje grid */
.proje-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.proje-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}
.proje-card:hover {
    transform: translateY(-6px);
    border-color: rgba(138, 139, 79, 0.4);
    box-shadow: 0 18px 42px rgba(75, 73, 51, 0.16);
}
.proje-card:hover .proje-thumb img {
    transform: scale(1.06);
}

/* Thumbnail */
.proje-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-soft);
}
.proje-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.proje-kat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(31, 29, 19, 0.88);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
}
.proje-db-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(138, 139, 79, 0.4);
}
.proje-db-badge svg { width: 14px; height: 14px; }

/* Body */
.proje-body {
    padding: 1.5rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.proje-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
    line-height: 1.35;
}
.proje-ozet {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    flex: 1;
}

.proje-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.proje-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.proje-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--green-dark);
}

.proje-etiketler {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.proje-etiket {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    background: rgba(138, 139, 79, 0.1);
    color: var(--green-dark);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Empty state */
.proje-empty {
    display: none;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}
.proje-empty svg {
    width: 48px;
    height: 48px;
    color: rgba(138, 139, 79, 0.4);
    margin-bottom: 1rem;
}
.proje-empty p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .projeler-filter {
        max-width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0.4rem;
        white-space: nowrap;
    }
    .pf-btn {
        font-size: 0.82rem;
        padding: 0.5rem 1rem;
        flex-shrink: 0;
    }
    .proje-grid { grid-template-columns: 1fr; }
    .proje-thumb { aspect-ratio: 16/10; }
}

/* ========================================================= */
/* Blog sayfaları                                            */
/* ========================================================= */

/* Featured card */
.blog-featured-section { background: var(--bg); padding: 3rem 0 1.5rem; }

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 28px rgba(75, 73, 51, 0.1);
}
.blog-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(75, 73, 51, 0.18);
    border-color: rgba(138, 139, 79, 0.4);
}
.bfc-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.bfc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.blog-featured-card:hover .bfc-image img { transform: scale(1.05); }
.bfc-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 14px rgba(138, 139, 79, 0.4);
}
.bfc-body {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bfc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    align-items: center;
}
.bfc-kat {
    background: rgba(138, 139, 79, 0.12);
    color: var(--green-dark);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bfc-read, .bfc-date {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.bfc-read svg { width: 14px; height: 14px; }
.bfc-body h2 {
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}
.bfc-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.3rem;
}
.bfc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: gap 0.3s var(--ease);
}
.bfc-cta svg { width: 18px; height: 18px; }
.blog-featured-card:hover .bfc-cta { gap: 0.7rem; }

/* Blog grid */
.blog-section { background: var(--bg-soft); padding: 3rem 0 5rem; }

.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 0.5rem;
    background: rgba(138, 139, 79, 0.06);
    border: 1px solid var(--border);
    border-radius: 50px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 139, 79, 0.4);
    box-shadow: 0 16px 38px rgba(75, 73, 51, 0.14);
}
.bc-link { display: block; text-decoration: none; color: inherit; }

.bc-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.blog-card:hover .bc-image img { transform: scale(1.05); }
.bc-kat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(31, 29, 19, 0.88);
    color: #fff;
    padding: 0.28rem 0.7rem;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.bc-body {
    padding: 1.4rem 1.35rem;
}
.bc-meta {
    display: flex;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
}
.bc-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.65rem;
    line-height: 1.4;
}
.bc-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.bc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap 0.3s var(--ease);
}
.bc-read-more svg { width: 14px; height: 14px; }
.blog-card:hover .bc-read-more { gap: 0.55rem; }

/* ===== Blog detay sayfası ===== */
.page-hero .blog-post-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    justify-content: center;
}
.blog-post-meta .bp-kat {
    background: rgba(138, 139, 79, 0.25);
    color: var(--green-light);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-article-section {
    background: var(--bg);
    padding: 3rem 0 4rem;
}
.blog-article {
    max-width: 820px;
    margin: 0 auto;
}
.blog-cover {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}
.blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 2rem;
}
.ba-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ba-avatar svg { width: 26px; height: 26px; }
.ba-info { flex: 1; }
.ba-name { font-weight: 700; color: var(--text); font-size: 0.98rem; }
.ba-role { font-size: 0.82rem; color: var(--text-muted); }
.ba-share a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}
.ba-share a:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4); }
.ba-share svg { width: 18px; height: 18px; }

/* Article content typography */
.blog-content {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
}
.blog-content p { margin-bottom: 1.2rem; }
.blog-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin: 2.2rem 0 1rem;
    line-height: 1.3;
}
.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.8rem 0 0.8rem;
    line-height: 1.35;
}
.blog-content ul, .blog-content ol {
    margin: 0 0 1.2rem 1.5rem;
    padding: 0;
}
.blog-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}
.blog-content strong { color: var(--green-darker); font-weight: 700; }
.blog-content em { font-style: italic; }
.blog-content a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}
.blog-content a:hover { color: var(--green); }
.blog-content blockquote {
    border-left: 3px solid var(--green);
    background: rgba(138, 139, 79, 0.06);
    padding: 1rem 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blog-etiketler {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.be-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    margin-right: 0.3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .blog-featured-card { grid-template-columns: 1fr; }
    .bfc-image { aspect-ratio: 16/9; }
    .bfc-body { padding: 1.8rem 1.5rem; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-author { flex-wrap: wrap; }
    .ba-share { margin-left: auto; }
    .blog-content { font-size: 1rem; }
    .blog-content h2 { font-size: 1.4rem; }
    .blog-content h3 { font-size: 1.15rem; }
}

/* DB-driven rich content + feature cards (Admin panel içeriği) */
.sd-rich { font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 2rem; }
.sd-rich p { margin-bottom: 1rem; }
.sd-rich h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--dark); }
.sd-rich h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 0.8rem; color: var(--dark); }
.sd-rich ul, .sd-rich ol { margin: 1rem 0 1rem 1.5rem; }
.sd-rich li { margin-bottom: 0.5rem; }
.sd-rich a { color: var(--green-darker); text-decoration: underline; text-underline-offset: 3px; }
.sd-rich a:hover { color: var(--green); }
.sd-rich strong { color: var(--dark); font-weight: 700; }
.sd-rich img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }

.sd-feature-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: 1.2rem 0 2rem; }
.sdf-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; transition: all 0.2s; }
.sdf-card:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(138,139,79,0.12); }
.sdf-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.sdf-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ===== Foto Galeri — Hover + Zoom ikonu ===== */
.sd-gallery .gal-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 8px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sd-gallery .gal-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(75,73,51,0.18); }
.sd-gallery .gal-item img { transition: transform 0.4s var(--ease); }
.sd-gallery .gal-item:hover img { transform: scale(1.05); }
.sd-gallery .gal-zoom {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,29,19,0) 50%, rgba(31,29,19,0.55));
    display: flex; align-items: flex-end; justify-content: flex-end;
    padding: 0.7rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.sd-gallery .gal-zoom svg { width: 26px; height: 26px; color: #fff; }
.sd-gallery .gal-item:hover .gal-zoom { opacity: 1; }

/* ===== Lightbox Modal ===== */
.lb-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 14, 8, 0.94);
    z-index: 9998;
    display: none;
    align-items: center; justify-content: center;
    animation: lbFadeIn 0.18s ease;
}
.lb-overlay.open { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-img-wrap {
    max-width: 92vw;
    max-height: 86vh;
    position: relative;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}
.lb-img {
    max-width: 92vw;
    max-height: 80vh;
    width: auto; height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    background: #1F1D13;
    user-select: none;
    animation: lbZoomIn 0.22s var(--ease);
}
@keyframes lbZoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lb-caption {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-top: 0.8rem;
    text-align: center;
    max-width: 80vw;
}
.lb-counter {
    position: absolute;
    top: 1.2rem; left: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(0,0,0,0.4);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
}
.lb-close, .lb-arrow {
    position: absolute;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.lb-close:hover, .lb-arrow:hover { background: var(--green); transform: scale(1.06); }
.lb-close { top: 1.2rem; right: 1.5rem; }
.lb-close svg { width: 22px; height: 22px; }
.lb-arrow.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-arrow.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-arrow.prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-arrow.next:hover { transform: translateY(-50%) scale(1.06); }
.lb-arrow svg { width: 24px; height: 24px; }
.lb-arrow[disabled] { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 640px) {
    .lb-close, .lb-arrow { width: 40px; height: 40px; }
    .lb-close { top: 0.8rem; right: 0.8rem; }
    .lb-arrow.prev { left: 0.5rem; }
    .lb-arrow.next { right: 0.5rem; }
    .lb-counter { top: 0.8rem; left: 0.8rem; font-size: 0.78rem; }
}

/* ===== Proje Detay ===== */
.proje-detay-head {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: start;
}
@media (max-width: 880px) {
    .proje-detay-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

.proje-detay-cover { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 36px rgba(75, 73, 51, 0.18); margin: 0; }
.proje-detay-cover img { width: 100%; display: block; height: auto; aspect-ratio: 16/9; object-fit: cover; background: var(--bg-soft); }
.proje-detay-db {
    position: absolute; left: 1rem; top: 1rem;
    background: var(--green); color: #fff;
    padding: 0.5rem 0.9rem; border-radius: 10px;
    font-weight: 700; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.proje-detay-db svg { width: 16px; height: 16px; }

.proje-detay-meta {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky; top: 100px;
}
.proje-detay-meta .pdm-block {
    display: flex; flex-direction: column; gap: 0.15rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(75,73,51,0.1);
}
.proje-detay-meta .pdm-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.proje-detay-meta .pdm-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
}
.proje-detay-meta .pdm-block strong {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 700;
}
.proje-detay-meta .pdm-tags { padding-bottom: 0.4rem; }
.proje-detay-meta .pdm-tags .proje-etiketler { margin-top: 0.3rem; }

.proje-detay-content { max-width: 880px; margin: 0 auto; }
.proje-detay-content h2 { font-size: 1.4rem; margin: 2.2rem 0 1rem; color: var(--dark); }
.proje-detay-content .sd-rich { line-height: 1.75; color: var(--text); font-size: 1rem; }

/* Kart hover & link */
.proje-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    display: block;
}
.proje-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(75, 73, 51, 0.18); }
.proje-card:hover .proje-thumb img { transform: scale(1.04); }
.proje-card .proje-thumb img { transition: transform 0.4s var(--ease); }

.proje-detay-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--green-darker);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s;
}
.proje-detay-link svg { width: 16px; height: 16px; }
.proje-card:hover .proje-detay-link { gap: 0.7rem; color: var(--green); }

/* ========== Çerez Onay Bildirimi ========== */
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9990;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    padding: 1rem 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    max-width: 1100px;
    margin: 0 auto;
}
.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.cookie-banner-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}
.cookie-text strong { color: var(--dark); margin-right: 0.25rem; }
.cookie-text a {
    color: var(--green-darker);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.cookie-actions .btn { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
@media (max-width: 640px) {
    .cookie-banner { left: 0.6rem; right: 0.6rem; bottom: 0.6rem; padding: 0.85rem 0.95rem; border-radius: 10px; }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 0.7rem; }
    .cookie-actions { justify-content: flex-end; }
}

/* ========== Statik içerik sayfaları (KVKK, Gizlilik, Çerez) ========== */
.static-page { line-height: 1.75; color: var(--text); font-size: 1rem; }
.static-page h2 { font-size: 1.35rem; margin: 2rem 0 0.8rem; color: var(--dark); }
.static-page h3 { font-size: 1.1rem; margin: 1.4rem 0 0.6rem; color: var(--dark); }
.static-page p { margin: 0 0 1rem; }
.static-page ul { margin: 0 0 1.2rem 1.2rem; }
.static-page ul li { margin-bottom: 0.4rem; }
.static-page a { color: var(--green-darker); text-decoration: underline; }
.static-page strong { color: var(--dark); }

/* ========== Trust Band (Sertifika Rozeti) ========== */
.trust-band {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #fff 0%, #f7f8f1 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}
.trust-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem 1.3rem;
    text-align: left;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(75, 73, 51, 0.12);
    border-color: var(--green);
}
.trust-badge {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(138, 139, 79, 0.1);
    color: var(--green-darker);
    margin-bottom: 0.9rem;
}
.trust-badge svg { width: 28px; height: 28px; }
.trust-item h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.45rem;
    line-height: 1.35;
}
.trust-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 640px) {
    .trust-band { padding: 3rem 0 2.5rem; }
    .trust-grid { grid-template-columns: 1fr; gap: 1rem; }
    .trust-item { padding: 1.2rem 1.1rem; }
}

/* ========== Blog TL;DR Direct-Answer Kutusu (AEO için) ========== */
.blog-tldr {
    background: linear-gradient(135deg, rgba(138, 139, 79, 0.08) 0%, rgba(138, 139, 79, 0.03) 100%);
    border-left: 4px solid var(--green);
    border-radius: 12px;
    padding: 1.25rem 1.4rem;
    margin: 0 0 2rem;
    position: relative;
}
.blog-tldr-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--green-darker);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}
.blog-tldr p {
    margin: 0;
    color: var(--dark);
    font-size: 1.02rem;
    line-height: 1.7;
}
.blog-tldr strong { color: var(--dark); font-weight: 700; }
@media (max-width: 640px) {
    .blog-tldr { padding: 1rem 1.1rem; }
    .blog-tldr p { font-size: 0.96rem; }
}
