/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   CRITICAL: HEADER STYLE PROTECTION - HIGHEST PRIORITY
   ============================================ */
/* Force header styles to load first and override everything */
header.header,
.header,
header.header *,
.header * {
    /* Prevent any inheritance issues */
}

/* Force header navigation links to be styled correctly */
header.header .header-nav .nav-link,
.header .header-nav .nav-link,
header.header .header-nav a.nav-link,
.header .header-nav a.nav-link,
header.header .header-nav .nav-link:link,
header.header .header-nav .nav-link:visited,
header.header .header-nav .nav-link:active,
header.header .header-nav .nav-link:hover,
.header .header-nav .nav-link:link,
.header .header-nav .nav-link:visited,
.header .header-nav .nav-link:active,
.header .header-nav .nav-link:hover {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

/* Force header layout - fixed gap: logo↔nav ve nav↔contact arası sabit mesafe */
header.header .header-content,
.header .header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    gap: var(--header-gap, 3rem) !important;
}

header.header .header-nav,
.header .header-nav {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
}

header.header .header-nav .nav-links,
.header .header-nav .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 1.15rem !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

header.header .header-right,
.header .header-right {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-left: auto !important;
    flex-direction: row !important;
}

:root {
    --header-height: 140px; /* .header-content padding 1.25rem*2 + .logo-image height 100px */
    --header-gap: 1.75rem; /* Logo↔nav ve nav↔contact arası – tek satırda sığması için azaltıldı */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --primary-300: #7dd3fc;
    --primary-400: #38bdf8;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-800: #075985;
    --primary-900: #0c4a6e;
    
    --accent-400: #f472b6;
    --accent-500: #ec4899;
    --accent-600: #db2777;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

html {
    scroll-behavior: auto;
}

/* Scroll açık; height: 100% kaldırıldı, doküman içerikle uzayabilsin */
html {
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100%;
    height: auto;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--gray-900);
    background-color: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* CRITICAL: Prevent body-level link styles from affecting header */
body a,
body a:link,
body a:visited,
body a:active {
    /* Default link styles - but header links are excluded below */
}

/* Explicitly exclude header from body link styles */
body .header a,
body .header a:link,
body .header a:visited,
body .header a:active,
body header.header a,
body header.header a:link,
body header.header a:visited,
body header.header a:active {
    /* Header links use their own styles defined above */
    color: inherit !important;
    text-decoration: inherit !important;
}

/* Tüm sayfalar (ana sayfa dahil) scroll açık; kilitleme kaldırıldı */
body,
body.page-body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    position: relative;
    height: auto;
    width: 100%;
}

/* Ana sayfa: tam ekran bölümler, kaydırınca tek bölüm görünsün */
body:has(.home-first-view) {
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    overflow-x: hidden;
}

.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* İlk ekran: yalnızca slayt tam ekran (100vh), aşağı kaydırınca diğer bölümler */
.home-first-view {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    flex-shrink: 0;
}

/* Ana sayfa: hero sonrası bölüm - tam ekran, taşma yok */
.page-scroll-spacer {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    pointer-events: none;
    flex-shrink: 0;
}

/* ============================================
   HEADER STYLE PROTECTION FOR PAGE-BODY
   ============================================ */
/* Ensure header styles are NEVER overridden by page-body or any content styles */
.page-body .header,
body.page-body .header {
    background: transparent !important;
    color: #fff !important;
    padding: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 200 !important;
    width: 100% !important;
}

/* Header Content Layout Protection - logo↔nav ve nav↔contact arası sabit mesafe */
.page-body .header .header-content,
body.page-body .header .header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: var(--header-gap, 3rem) !important;
    padding: 1.25rem 2rem !important;
    position: relative !important;
    width: 100% !important;
    flex-direction: row !important;
}

/* Header Navigation Layout Protection */
.page-body .header .header-nav,
body.page-body .header .header-nav {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
}

.page-body .header .header-nav .nav-links,
body.page-body .header .header-nav .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 1.15rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

/* Navigation Links - Complete Style Reset */
.page-body .header .header-nav .nav-links .nav-link,
.page-body .header .header-nav .nav-links a.nav-link,
body.page-body .header .header-nav .nav-links .nav-link,
body.page-body .header .header-nav .nav-links a.nav-link,
.page-body .header .header-nav .nav-link:link,
.page-body .header .header-nav .nav-link:visited,
.page-body .header .header-nav .nav-link:active,
.page-body .header .header-nav .nav-link:hover,
body.page-body .header .header-nav .nav-link:link,
body.page-body .header .header-nav .nav-link:visited,
body.page-body .header .header-nav .nav-link:active,
body.page-body .header .header-nav .nav-link:hover {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    position: relative !important;
    padding: 0.5rem 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

.page-body .header .header-nav .nav-link:hover,
body.page-body .header .header-nav .nav-link:hover {
    color: var(--primary-400) !important;
    transform: translateY(-2px) !important;
}

/* Dropdown Items - Complete Style Reset */
.page-body .header .header-nav .dropdown-menu .dropdown-item,
.page-body .header .header-nav .dropdown-menu a.dropdown-item,
body.page-body .header .header-nav .dropdown-menu .dropdown-item,
body.page-body .header .header-nav .dropdown-menu a.dropdown-item,
.page-body .header .header-nav .dropdown-item:link,
.page-body .header .header-nav .dropdown-item:visited,
.page-body .header .header-nav .dropdown-item:active,
.page-body .header .header-nav .dropdown-item:hover,
body.page-body .header .header-nav .dropdown-item:link,
body.page-body .header .header-nav .dropdown-item:visited,
body.page-body .header .header-nav .dropdown-item:active,
body.page-body .header .header-nav .dropdown-item:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    display: block !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.875rem !important;
    position: relative !important;
    cursor: pointer !important;
}

.page-body .header .header-nav .dropdown-item:hover,
body.page-body .header .header-nav .dropdown-item:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    padding-left: 1.5rem !important;
}

/* Header Right Section Layout Protection */
.page-body .header .header-right,
body.page-body .header .header-right {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-left: auto !important;
    flex-direction: row !important;
}

/* Contact Text Links */
.page-body .header .contact-text,
.page-body .header .contact-text:link,
.page-body .header .contact-text:visited,
.page-body .header .contact-text:active,
body.page-body .header .contact-text,
body.page-body .header .contact-text:link,
body.page-body .header .contact-text:visited,
body.page-body .header .contact-text:active {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* ============================================
   HEADER - YENİDEN TASARLANDI
   ============================================ */
.header {
    background: transparent;
    color: #fff;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    overflow: visible;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header .container {
    overflow: visible;
}

/* Sayfa scroll edildiğinde header arka planı */
.page-body .header.scrolled,
.header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--header-gap);
    padding: 1.25rem 2rem;
    position: relative;
    width: 100%;
}

/* Logo */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-image {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

/* Navigation - Header içinde */
.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav .nav-link {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border: none !important;
    outline: none !important;
}

.header-nav .nav-link:visited,
.header-nav .nav-link:link,
.header-nav .nav-link:active {
    color: #fff !important;
    text-decoration: none !important;
}

.header-nav .nav-link:hover {
    color: var(--primary-400);
    transform: translateY(-2px);
}

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-400);
    transition: width 0.3s ease;
}

.header-nav .nav-link:hover::after {
    width: 100%;
}

/* Dropdown in Header Nav */
.header-nav .nav-dropdown {
    position: relative;
}

.header-nav .dropdown-trigger {
    cursor: pointer;
}

.header-nav .dropdown-arrow {
    transition: transform 0.3s ease;
}

.header-nav .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.header-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-8px) scale(0.95) !important;
    background: rgba(20, 20, 20, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    min-width: 200px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    padding: 0.5rem 0 !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    display: block !important;
}

.header-nav .nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

/* Page-body protection for dropdowns */
.page-body .header .header-nav .dropdown-menu,
body.page-body .header .header-nav .dropdown-menu {
    position: absolute !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: block !important;
}

.page-body .header .header-nav .nav-dropdown:hover .dropdown-menu,
body.page-body .header .header-nav .nav-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.header-nav .dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
    border: none !important;
    outline: none !important;
}

.header-nav .dropdown-item:visited,
.header-nav .dropdown-item:link,
.header-nav .dropdown-item:active {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

.header-nav .dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
}

/* Sağ taraf - İletişim, Sosyal Medya ve Dil */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1.25rem);
    margin-left: auto;
}

/* İletişim Bilgileri */
.header-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.contact-icon {
    color: var(--primary-400);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header-contact-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--primary-300);
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.contact-text:hover {
    color: var(--primary-300);
}

/* Sosyal Medya İkonları */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    background: transparent;
}

.social-icon:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon[aria-label="Instagram"] svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp */
.social-icon[aria-label="WhatsApp"]:hover {
    color: #25D366;
}

/* Instagram */
.social-icon[aria-label="Instagram"] {
    color: rgba(255, 255, 255, 0.8);
}

.social-icon[aria-label="Instagram"]:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

/* Twitter */
.social-icon[aria-label="Twitter"]:hover {
    color: #1DA1F2;
}

/* LinkedIn */
.social-icon[aria-label="LinkedIn"]:hover {
    color: #0077B5;
}

/* Dil Seçici */
.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-search-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Arama - Dropdown (glassmorphism, saydam, profesyonel) */
.header-search-wrap {
    position: relative;
}

.search-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-dropdown-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.015);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.search-dropdown-panel {
    position: absolute;
    top: calc(var(--header-height, 90px) + 0.5rem);
    right: 1.5rem;
    left: auto;
    width: 100%;
    min-width: 320px;
    max-width: 440px;
    padding: 0;
    animation: search-panel-in 0.25s ease;
}

@keyframes search-panel-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-dropdown-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 0.625rem 1rem 0.625rem 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.search-dropdown-icon {
    flex-shrink: 0;
    color: var(--primary-500);
    opacity: 0.9;
}

.search-dropdown-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    font-family: inherit;
    background: transparent;
}

.search-dropdown-input::placeholder {
    color: var(--gray-400);
}

.search-dropdown-close {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.search-dropdown-close:hover {
    color: var(--gray-700);
    background: rgba(0, 0, 0, 0.04);
}

.search-dropdown-results {
    margin-top: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.search-dropdown-results:empty {
    display: none;
}

.search-result-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-800);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(14, 165, 233, 0.06);
}

.search-result-item .search-result-title {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-900);
    line-height: 1.4;
}

.search-result-item .search-result-meta {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary-600);
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .search-dropdown-panel {
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

.header-language {
    position: relative;
    flex-shrink: 0; /* Dil seçici hiçbir ekranda küçülmesin, hep görünsün */
}

.language-selector {
    position: relative;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 120px;
    justify-content: space-between;
    white-space: nowrap;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.language-selector.active .language-button {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 1px var(--primary-400);
}

.language-icon {
    color: var(--primary-400);
    flex-shrink: 0;
}

.language-text {
    flex: 1;
    text-align: left;
}

.language-arrow {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.language-selector.active .language-arrow {
    transform: rotate(180deg);
    color: var(--primary-300);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 150px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.language-option.active {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    color: #fff;
    font-weight: 600;
}

.language-option.active::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    font-size: 0.875rem;
    color: #fff;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
}

/* Never show mobile-only header controls on desktop */
@media (min-width: 1025px) {
    .mobile-header-actions,
    .mobile-header-lang-menu {
        display: none !important;
    }
}

/* Mobil Menü */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-400);
}

/* ============================================
   HERO SECTION - Slider (50vh) veya tam sayfa
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Ana sayfada slider: tam ekran (100vh), above the fold sadece slayt */
.hero.hero-slider {
    height: 100%;
    min-height: 100vh;
    width: 100%;
}

/* Hero görsel slayt */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    animation: heroKenBurns 5.5s linear forwards;
}

.hero-slide.active .hero-slide-img {
    animation: heroKenBurns 5.5s linear forwards;
}

@keyframes heroKenBurns {
    from {
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        transform: translate(-50%, -50%) scale(1.015);
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* Hero Content Wrapper - Sol Alt Köşe */
.hero-content-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    z-index: 100;
    max-width: 58rem;
}

.hero-project-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-project-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.hero-project-description {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 56rem;
}

/* Proje Navigasyon - Sol Alt Köşe */
.project-navigation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 32px;
    padding: 0 4px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-arrow:hover {
    color: #fff;
    opacity: 1;
}

.nav-arrow-icon {
    width: 36px;
    height: 22px;
    display: block;
}

.nav-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.nav-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
}

@keyframes heroProgress {
    from { width: 0%; }
    to { width: 100%; }
}

/* ============================================
   HERO BLOCK - Referans tasarım: kart deneyim kutusu, başlık dekoru, görsel overlay
   ============================================ */
/* Bölüm tam ekran (100vh): kaydırınca sadece bu alan görünsün, altta boşluk / diğer bölüm görünmesin */
.hero-block {
    display: flex;
    align-items: stretch;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.hero-block-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: min(104rem, 100%);
    margin: 0 auto;
    padding: 2rem 1.25rem 2rem 1.5rem;
    gap: 1.75rem;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    min-height: 0;
}

.hero-block-text {
    flex: 1;
    min-width: 280px;
    max-width: 46rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

/* Yazılar arası daha ferah, kompakt değil */
.hero-block-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-600);
    opacity: 0.92;
    margin: 0 0 0.75rem 0;
}

.hero-block-title-wrap {
    position: relative;
    margin: 0 0 1rem 0;
}

/* Başlık arkasında hafif güneş/pusula dekoru (referans: light grey circular pattern) */
.hero-block-title-deco {
    position: absolute;
    left: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10rem;
    height: 10rem;
    opacity: 0.12;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%239ca3af' stroke-width='1'%3E%3Ccircle cx='32' cy='32' r='26'/%3E%3Cline x1='32' y1='6' x2='32' y2='14'/%3E%3Cline x1='32' y1='50' x2='32' y2='58'/%3E%3Cline x1='6' y1='32' x2='14' y2='32'/%3E%3Cline x1='50' y1='32' x2='58' y2='32'/%3E%3Cline x1='14.5' y1='14.5' x2='20.5' y2='20.5'/%3E%3Cline x1='43.5' y1='43.5' x2='49.5' y2='49.5'/%3E%3Cline x1='43.5' y1='14.5' x2='49.5' y2='20.5'/%3E%3Cline x1='14.5' y1='43.5' x2='20.5' y2='49.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    pointer-events: none;
}

.hero-block-title {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4.6vw, 2.7rem);
    font-weight: 700;
    line-height: 1.22;
    color: #0f172a;
    margin: 0;
}

.hero-block-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 1.25rem 0;
}

/* Referans: Deneyim kutusu üstte (büyük), HAKKIMIZDA butonu hemen altında; kompakt */
.hero-block-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
}

/* Beyaz kart – 25+ Yıllık Uzmanlık daha büyük (referans) */
.hero-block-experience {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-block-exp-number {
    font-size: 2.75rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--primary-600);
    line-height: 1;
}

.hero-block-exp-label {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

.hero-block-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary-500);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.hero-block-cta:hover {
    background: var(--primary-600);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

/* Görsel: sağ taraf yuvarlatılmış (referans), hafif gölge, dekoratif üçgen/nokta */
.hero-block-image-wrap {
    position: relative;
    flex: 1;
    min-width: 280px;
    min-height: 200px;
    max-height: 100%;
    overflow: visible;
}

.hero-block-image-clip {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 0 1rem 1rem 0;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-block-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    max-height: 64vh;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}


@media (max-width: 768px) {
    .hero-block-inner {
        flex-direction: column;
        padding: 1.5rem 1rem 1.5rem;
        gap: 1.25rem;
    }
    .hero-block-text {
        max-width: 100%;
    }
    .hero-block-image-wrap {
        min-height: 220px;
        width: 100%;
    }
    .hero-block-image {
        max-height: 32vh;
    }
}

/* ============================================
   HİZMET KARTLARI - Ana sayfa, hero-block hemen altı, 4 kart tek satır
   ============================================ */
.home-service-cards {
    background: #fff;
    padding: 1.5rem 0.75rem 2.25rem;
}

.home-service-cards-inner {
    max-width: 104rem;
    margin: 0 auto;
    padding: 0 0.75rem;
}

.home-service-cards-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.625rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem 0;
    text-align: center;
}

.home-service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.75rem 2.5rem;
    min-height: 380px;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: color 0.35s ease;
    overflow: hidden;
}

.service-card:last-child {
    border-right: none;
}

.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(1) .service-card-bg { background-image: url("public/anasayfa/aa.jpg"); }
.service-card:nth-child(2) .service-card-bg { background-image: url("public/anasayfa/bb.JPG"); }
.service-card:nth-child(3) .service-card-bg { background-image: url("public/anasayfa/cc.jpeg"); }
.service-card:nth-child(4) .service-card-bg { background-image: url("public/anasayfa/dd.jpeg"); }

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-bg,
.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card:hover {
    color: #fff;
}

.service-card-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.75rem;
    color: #94a3b8;
    transition: color 0.35s ease;
}

.service-card:hover .service-card-icon {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.service-card-title {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
    line-height: 1.25;
    transition: color 0.35s ease;
}

.service-card:hover .service-card-title {
    color: #fff;
}

.service-card-desc {
    position: relative;
    z-index: 1;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #374151;
    margin: 0 0 1.75rem 0;
    flex: 1;
    transition: color 0.35s ease;
}

.service-card:hover .service-card-desc {
    color: rgba(255, 255, 255, 0.92);
}

.service-card-link {
    position: relative;
    z-index: 1;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--primary-600);
    transition: color 0.35s ease, transform 0.25s ease;
}

.service-card:hover .service-card-link {
    color: rgba(255, 255, 255, 0.95);
}

.service-card-link::after {
    content: ' →';
}

@media (max-width: 1024px) {
    .home-service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .service-card:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 600px) {
    .home-service-cards {
        padding: 1.5rem 1rem 2rem;
    }
    .home-service-cards-title {
        margin-bottom: 1rem;
    }
    .home-service-cards-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 260px;
        padding: 1.75rem 1.5rem;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .service-card:last-child {
        border-bottom: none;
    }
}

/* ============================================
   İSTATİSTİK + HİZMET LİSTESİ - Hizmet kartları altı, 3 sütun
   ============================================ */
.home-stats-services {
    background: #f1f5f9;
    padding: 2.5rem 0.5rem 2.5rem;
    overflow-x: hidden;
}

.home-stats-services-inner {
    max-width: min(112rem, 100%);
    margin: 0 auto;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.stats-services-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

/* Sol: oval görsel alanı */
.stats-services-image-col {
    position: relative;
}

.stats-services-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.stats-services-oval {
    position: relative;
    width: 360px;
    height: 500px;
    border-radius: 180px / 250px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 4px solid #334155;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.stats-services-image-wrap:hover .stats-services-oval {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.stats-services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.stats-services-vertical-label {
    position: absolute;
    left: calc(50% - 320px);
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0f172a;
    z-index: 2;
    pointer-events: none;
}

.stats-services-email-pill {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: #0f172a;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

.stats-services-image-wrap:hover .stats-services-email-pill {
    background: #1e293b;
    transform: translateX(-50%) rotate(-2deg) scale(1.02);
}

/* Orta: blueprint arka plan + sayaç */
.stats-services-stats-col {
    position: relative;
    padding: 2.25rem 0.75rem;
}

.stats-services-stats-bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none' stroke='%23e2e8f0' stroke-width='0.4' opacity='0.5'%3E%3Cpath d='M0 20h80M0 40h80M0 60h80M20 0v80M40 0v80M60 0v80'/%3E%3Crect x='10' y='10' width='20' height='15'/%3E%3Crect x='50' y='25' width='20' height='15'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-position: 0 0;
    pointer-events: none;
}

.stats-services-stats-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stats-services-counter {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.75rem, 8.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.stats-services-stats-col:hover .stats-services-counter {
    color: #334155;
}

.stats-services-counter-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.02em;
}

.stats-services-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: #374151;
    margin: 0;
    text-align: justify;
}

/* Sağ: hizmet listesi kutusu */
.stats-services-list-col {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.stats-services-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.75rem;
    padding: 2.25rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.stats-services-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-color: rgba(15, 23, 42, 0.15);
}

.stats-services-box-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stats-services-box-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    color: #0f172a;
    transition: color 0.3s ease;
}

.stats-services-box:hover .stats-services-box-icon {
    color: #334155;
}

.stats-services-box-icon svg {
    width: 100%;
    height: 100%;
}

.stats-services-box-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.stats-services-box-sub {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.stats-services-list {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.stats-services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 1rem;
    color: #374151;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color 0.25s ease;
}

.stats-services-list li:last-child {
    border-bottom: none;
}

.stats-services-list li:hover {
    color: #0f172a;
}

.stats-services-item-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    transition: color 0.25s ease;
}

.stats-services-list li:hover .stats-services-item-icon {
    color: #334155;
}

.stats-services-item-icon svg {
    width: 100%;
    height: 100%;
}

.stats-services-cta {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: #0f172a;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.stats-services-cta:hover {
    background: #1e293b;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .stats-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stats-services-image-wrap {
        min-height: 420px;
    }
    .stats-services-oval {
        width: 300px;
        height: 420px;
        border-radius: 150px / 210px;
    }
    .stats-services-vertical-label {
        left: calc(50% - 255px);
    }
    .stats-services-box {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .home-stats-services {
        padding: 1.5rem 0.5rem 2rem;
    }
    .stats-services-image-wrap {
        min-height: 360px;
    }
    .stats-services-oval {
        width: 260px;
        height: 360px;
        border-radius: 130px / 180px;
    }
    .stats-services-vertical-label {
        left: calc(50% - 195px);
        font-size: 0.8125rem;
    }
    .stats-services-email-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    .stats-services-counter {
        font-size: clamp(3rem, 12vw, 4rem);
    }
    .stats-services-box {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   ÇALIŞMA / SÜREÇ - İstatistik bölümü altı, solda görsel sağda 3 adım kartı
   ============================================ */
.home-process {
    background: #fff;
    padding: 2.5rem 0.5rem 2.5rem;
    overflow-x: hidden;
}

.home-process-inner {
    max-width: min(112rem, 100%);
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.home-process-grid {
    display: grid;
    /* minmax(0,1fr): yüksek çözünürlüklü görsel içsel genişliği sol sütunu şişirip metni sıkıştırmasın */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Sol: görsel, sağ sütunla aynı yükseklikte; taşma yok */
.home-process-image-col {
    position: relative;
    order: 1;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.home-process-image-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 260px;
    display: block;
    overflow: hidden;
    background: #f8fafc;
}

.home-process-img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Sağ: içerik kartı, soldakiyle aynı yükseklik; CTA altta */
.home-process-card-col {
    position: relative;
    order: 2;
    display: flex;
    min-width: 0;
    min-height: 0;
}

.home-process-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    min-height: 0;
    padding: 2.25rem 2.25rem 2.25rem 2.5rem;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: box-shadow 0.35s ease;
}

.home-process-grid:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Kart başlık + çizgi */
.home-process-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.01em;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.3;
}

.home-process-card-title-accent {
    color: #334155;
    font-weight: 600;
}

/* 3 adım: eşit kolon; CTA margin-top: auto ile en altta */
.home-process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    align-items: start;
    min-width: 0;
    flex: 1;
    min-height: 0;
    margin-bottom: 1.25rem;
}

.home-process-step {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    border: none;
    transition: transform 0.25s ease;
}

.home-process-step-head {
    display: flex;
    align-items: center;
    gap: 0.5rem 0.6rem;
    min-height: 2.5rem;
    margin-bottom: 0.625rem;
}

.home-process-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    color: #475569;
    background: #f1f5f9;
    border-radius: 50%;
    transition: color 0.25s ease, background 0.25s ease;
}

.home-process-step:hover .home-process-step-icon {
    color: #0f172a;
    background: #e2e8f0;
}

.home-process-step-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.home-process-step-num {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #334155;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.25s ease;
}

.home-process-step:hover .home-process-step-num {
    color: #0f172a;
}

.home-process-step-title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.home-process-step-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    padding-top: 0;
    text-align: start;
    hyphens: auto;
}

/* Adım altı çıktı listesi */
.home-process-step-list {
    list-style: none;
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.home-process-step-list li {
    position: relative;
    padding-left: 0.75rem;
    margin-bottom: 0.25rem;
}

.home-process-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #94a3b8;
}

/* Süreç özeti: tek satır premium blok, CTA’dan önce */

/* CTA: kartın en altında (margin-top: auto), görsel sütunuyla hizalı */
.home-process-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: #0f172a;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.home-process-cta:hover {
    background: #1e293b;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

@media (max-width: 1024px) {
    .home-process-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .home-process-image-col {
        order: 1;
        min-height: 260px;
    }
    .home-process-image-wrap {
        min-height: 260px;
    }
    .home-process-card-col {
        order: 2;
    }
    .home-process-card {
        padding: 2rem 1.5rem;
    }
    .home-process-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .home-process-step {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .home-process-step:not(:last-child) {
        padding-bottom: 1.25rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .home-process-steps {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .home-process {
        padding: 1.5rem 0.5rem 2rem;
    }
    .home-process-image-wrap {
        min-height: 220px;
    }
    .home-process-card {
        padding: 1.5rem 1.25rem;
    }
    .home-process-step-head {
        gap: 0.4rem 0.6rem;
    }
    .home-process-step-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    .home-process-step-icon svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    .home-process-step-num {
        font-size: 1rem;
    }
    .home-process-step-title {
        font-size: 1rem;
    }
    .home-process-step-desc {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    .home-process-card-title {
        font-size: 1.25rem;
    }
    .home-process-step-list {
        font-size: 0.8125rem;
        margin-top: 0.375rem;
    }
    .home-process-steps {
        margin-bottom: 1.25rem;
    }
}

/* ========== Home Categories: başlık + sol menü + sağ galeri ========== */
.home-categories {
    padding: 2.5rem 1.5rem 2.5rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.home-categories-inner {
    max-width: 1440px;
    margin: 0 auto;
}

/* Motto: görselin sol kenarına hizalı (nav + gap kadar soldan) */
/* Başlık: dikey çizgi metnin hemen solunda; blok içerik kadar geniş, sağda hizalı */
.home-categories-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: left;
    margin: 0 0 1.25rem;
    margin-left: calc(220px + 2rem);
    padding-left: 0.75rem;
    border-left: 3px solid #0d9488;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    width: max-content;
    max-width: 100%;
    background: linear-gradient(120deg, #0f172a 0%, #0d9488 55%, #0f172a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0f172a;
}

.home-categories-title::after {
    content: '';
    display: block;
    width: 3.5rem;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, #0d9488 0%, rgba(13, 148, 136, 0.35) 100%);
    margin-top: 0.35rem;
}

.home-categories-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    min-height: 400px;
}

/* Sol: dikey menü görselle üstten hizalı (yüksek görselde ortaya kaymayı önler) */
.home-categories-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
    padding-right: 0.5rem;
    min-height: 0;
}

.home-categories-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
    border-radius: 0.375rem;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
}

.home-categories-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #0f172a;
    border-radius: 0 2px 2px 0;
    transition: height 0.25s ease;
}

.home-categories-nav-item:hover {
    color: #334155;
    background: rgba(15, 23, 42, 0.04);
}

.home-categories-nav-item.is-active {
    color: #0f172a;
    font-weight: 600;
}

.home-categories-nav-item.is-active::before {
    height: 1.5rem;
}

.home-categories-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.home-categories-nav-item.is-active .home-categories-nav-icon {
    opacity: 1;
    color: #0f172a;
}

.home-categories-nav-text {
    flex: 1;
}

/* Sağ: galeri alanı – görsel kesilmeden tam görünsün (contain), oran korunur, gerekirse kenarda boşluk */
.home-categories-gallery-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 480px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-categories-blueprint {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 45%;
    height: 120%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%230f172a' stroke-width='0.15' stroke-opacity='0.04' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.home-categories-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: #f1f5f9;
    z-index: 0;
}

.home-categories-gallery-img-wrap {
    position: absolute;
    inset: 0;
}

.home-categories-gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    opacity: 0;
    transition: opacity 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.home-categories-gallery-img.is-active {
    opacity: 1;
    z-index: 1;
}

/* ff: yapı odak %100 */
.home-categories-gallery-img-lower {
    object-position: center 100%;
}

/* kk: yapı odak %100 */
.home-categories-gallery-img-wrap img[src*="kk.jpg"] {
    object-position: center 100%;
}

/* Görsel altı yarı saydam bant */
/* İnce, yarı saydam etiket şeridi – görseli örtmez, sadece etiketler */
.home-categories-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.4rem 1rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.25));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.home-categories-caption-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .home-categories {
        padding: 3rem 1rem 4rem;
    }
    .home-categories-title {
        margin-bottom: 2rem;
        margin-left: 0;
        padding-left: 0.75rem;
    }
    .home-categories-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: 0;
    }
    .home-categories-nav {
        order: 1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
        gap: 0.5rem;
    }
    .home-categories-nav-item {
        padding: 0.625rem 1rem;
    }
    .home-categories-nav-item::before {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%) translateY(0);
        width: 0;
        height: 3px;
        border-radius: 2px 2px 0 0;
    }
    .home-categories-nav-item.is-active::before {
        width: 60%;
        height: 3px;
    }
    .home-categories-gallery-wrap {
        order: 2;
        min-height: 380px;
    }
    .home-categories-gallery {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .home-categories {
        padding: 2.5rem 0.75rem 3.5rem;
    }
    .home-categories-title {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin-bottom: 1.5rem;
    }
    .home-categories-gallery-wrap,
    .home-categories-gallery {
        min-height: 300px;
    }
    .home-categories-caption {
        padding: 0.35rem 0.875rem;
    }
    .home-categories-caption-text {
        font-size: 0.625rem;
    }
}

/* ========== Home Projects: koyu arka plan, içerik kadar yükseklik, taşmasız ========== */
.home-projects {
    margin-top: 0;
    padding: 1.5rem 0 2.5rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.home-projects-inner {
    max-width: min(1440px, 100vw - 2rem);
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.home-projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.home-projects-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.home-projects-title-accent {
    color: #a5f3fc;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-decoration-color: rgba(165, 243, 252, 0.5);
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.home-projects-title-accent:hover {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* Önce–sonra okları: kurumsal, premium, aktif/pasif net ayrım */
.home-projects-controls {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.home-projects-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.home-projects-arrow:hover:not(:disabled) {
    background: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.home-projects-arrow:disabled {
    background: #475569;
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    cursor: not-allowed;
}

.home-projects-arrow svg {
    flex-shrink: 0;
}

/* Yatay kaydırma alanı – taşma yok */
.home-projects-track-wrap {
    margin: 0 -1.5rem;
    overflow: hidden;
}

.home-projects-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    padding: 0 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-projects-track::-webkit-scrollbar {
    display: none;
}

/* Kart: sabit genişlik ve yükseklik – tüm kartlar aynı boyut, alt hiza aynı, taşma yok */
.home-projects-card {
    flex: 0 0 380px;
    width: 380px;
    min-width: 0;
    height: 432px;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #1e293b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.home-projects-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.home-projects-card-img-wrap {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0f172a;
}

.home-projects-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-orientation: from-image;
    transition: transform 0.35s ease;
}

.home-projects-card:hover .home-projects-card-img-wrap img {
    transform: scale(1.04);
}

.home-projects-card-info {
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.125rem 1.25rem 1.375rem;
    background: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    justify-content: flex-start;
}

.home-projects-card-year {
    display: inline-block;
    align-self: flex-start;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(56, 189, 248, 0.35);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    flex-shrink: 0;
}

.home-projects-card-title {
    margin: 0;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.home-projects-card-category {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.home-projects-card-desc {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .home-projects {
        margin-top: 0;
        padding: 1.25rem 0 2rem;
    }
    .home-projects-inner {
        padding: 0 1rem;
    }
    .home-projects-header {
        margin-bottom: 1.5rem;
    }
    .home-projects-track-wrap {
        margin: 0 -1rem;
    }
    .home-projects-track {
        padding: 0 1rem;
        gap: 1rem;
    }
    .home-projects-card {
        flex: 0 0 320px;
        width: 320px;
        height: 376px;
    }
    .home-projects-card-img-wrap {
        height: 192px;
    }
    .home-projects-card-info {
        padding: 1rem 1.125rem 1.25rem;
    }
    .home-projects-card-title {
        font-size: 1.0625rem;
    }
    .home-projects-card-category,
    .home-projects-card-desc {
        font-size: 0.8125rem;
    }
}

@media (max-width: 600px) {
    .home-projects {
        margin-top: 0;
        padding: 1rem 0 1.5rem;
    }
    .home-projects-inner {
        padding: 0 0.75rem;
    }
    .home-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    .home-projects-track-wrap {
        margin: 0 -0.75rem;
    }
    .home-projects-track {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }
    .home-projects-card {
        flex: 0 0 280px;
        width: 280px;
        height: 352px;
    }
    .home-projects-card-img-wrap {
        height: 168px;
    }
    .home-projects-card-info {
        padding: 0.875rem 1rem 1.125rem;
    }
    .home-projects-card-title {
        font-size: 1rem;
    }
    .home-projects-card-category,
    .home-projects-card-desc {
        font-size: 0.75rem;
    }
}

/* ========== Müşteri deneyimleri: sol görsel, sağ yorum, premium slider ========== */
.home-testimonials {
    background: #f1f5f9;
    overflow: hidden;
    padding: 2.5rem 0;
}

.home-testimonials-inner {
    max-width: min(1440px, 100vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

.home-testimonials-image-wrap {
    position: relative;
    background: #0f172a;
    min-height: 400px;
}

.home-testimonials-image-inner {
    position: absolute;
    inset: 0;
}

.home-testimonials-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.5s ease;
}

.home-testimonials-image-inner img.fade-out {
    opacity: 0;
}

.home-testimonials-content {
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 3.5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-testimonials-label {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #0ea5e9;
    margin-bottom: 0.875rem;
}

.home-testimonials-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.625rem, 2.8vw, 2.25rem);
    font-weight: 500;
    color: #0f172a;
    margin: 0 0 1.75rem;
    line-height: 1.3;
}

.home-testimonials-quote-wrap {
    position: relative;
    margin-bottom: 1.75rem;
}

.home-testimonials-quote-icon {
    position: absolute;
    left: 0;
    top: -0.15em;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(14, 165, 233, 0.25);
}

.home-testimonials-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.65;
    color: #374151;
    margin: 0 0 0 0.5rem;
    padding-left: 2.25rem;
    font-style: normal;
    transition: opacity 0.35s ease;
}

.home-testimonials-author {
    margin-bottom: 2.25rem;
}

.home-testimonials-name {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    font-style: normal;
}

.home-testimonials-location {
    display: block;
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.home-testimonials-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-testimonials-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-testimonials-arrow:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #cbd5e1;
}

.home-testimonials-arrow svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.home-testimonials-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-testimonials-dot {
    width: 2rem;
    height: 0.25rem;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: #e5e7eb;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.home-testimonials-dot:hover {
    background: #94a3b8;
}

.home-testimonials-dot.active {
    background: #0ea5e9;
    width: 2.5rem;
}

/* Statik testimonial: görseller aynı alanda üst üste, sadece .active görünür */
.home-testimonials-image-inner .testimonial-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
    z-index: 0;
}
.home-testimonials-image-inner .testimonial-img.active {
    display: block;
    z-index: 1;
}
.testimonial-slide {
    display: none;
}
.testimonial-slide.active {
    display: block;
}
.testimonial-slide .home-testimonials-text {
    margin: 0;
}

@media (max-width: 900px) {
    .home-testimonials {
        padding: 2rem 0;
    }
    .home-testimonials + .contact-main-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .home-testimonials-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .home-testimonials-image-wrap {
        min-height: 340px;
    }
    .home-testimonials-content {
        padding: 2.5rem 1.75rem 3rem;
    }
    .home-testimonials-quote-icon {
        font-size: 3.5rem;
    }
    .home-testimonials-text {
        padding-left: 1.5rem;
    }
}

@media (max-width: 600px) {
    .home-testimonials {
        padding: 1.5rem 0;
    }
    .home-testimonials + .contact-main-section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .home-testimonials-image-wrap {
        min-height: 280px;
    }
    .home-testimonials-content {
        padding: 2rem 1.25rem 2.5rem;
    }
    .home-testimonials-controls {
        flex-wrap: wrap;
    }
}

/* Proje Navigasyon - Sol Alt Köşe */
.project-navigation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 32px;
    padding: 0 4px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-arrow:hover {
    color: #fff;
    opacity: 1;
}

.nav-arrow-icon {
    width: 36px;
    height: 22px;
    display: block;
}

.nav-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.nav-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --header-gap: 1.5rem;
    }
    
    .header-nav .nav-links {
        gap: 1rem;
    }
    
    .header-nav .nav-link {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-gap: 0.75rem;
    }

    /* Mobile only: keep header in normal document flow (not fixed/sticky). */
    .header,
    .page-body .header,
    body.page-body .header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: auto !important;
    }
    
    .header-content {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: var(--header-gap);
        padding: 0.75rem 1rem;
    }
    
    .header-logo {
        order: 1;
        min-width: 0;
    }

    .logo-image {
        height: 64px;
        max-width: 190px;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
        margin-left: auto;
        padding: 0.375rem;
    }
    
    .header-nav {
        order: 4;
        width: 100%;
        display: none;
    }
    
    .header-right,
    .page-body .header .header-right,
    body.page-body .header .header-right {
        display: none !important;
    }
    
    .hero-content-wrapper {
        bottom: 2rem;
        left: 1.5rem;
        right: 1.5rem;
        max-width: 100%;
    }
    
    .hero-project-name {
        font-size: 0.75rem;
    }
    
    .hero-project-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .project-navigation {
        margin-top: 1rem;
    }
    
    .nav-line {
        max-width: 100px;
    }
    
    .nav-arrow-icon {
        width: 32px;
        height: 20px;
    }
}

/* ============================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ============================================ */

/* Active Navigation Link */
.header-nav .nav-link.active {
    color: var(--primary-300);
    position: relative;
}

.header-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
}

/* About Hero Section - padding-top = header height so content starts below fixed header */
.about-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: calc(var(--header-height) + 1.5rem);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-hero-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Intro Section */
.about-intro {
    padding: 3rem 0;
    background: var(--gray-50);
}

.about-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.intro-text p {
    margin-bottom: 1.25rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 1.5rem !important;
}

.intro-lead strong {
    color: var(--primary-600);
    font-weight: 600;
}

/* Founder and Team Profiles */
.about-team-profiles {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0b1220 0%, #172036 50%, #0f172a 100%);
}

.about-team-profiles::before,
.about-team-profiles::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.about-team-profiles::before {
    width: 680px;
    height: 680px;
    top: -360px;
    right: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(56, 189, 248, 0) 72%);
}

.about-team-profiles::after {
    width: 620px;
    height: 620px;
    left: -220px;
    bottom: -380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.22) 0%, rgba(236, 72, 153, 0) 72%);
}

.about-team-profiles .section-header {
    position: relative;
    z-index: 1;
}

.about-team-profiles .section-title {
    color: #f8fafc;
}

.about-team-profiles .section-title::after {
    background: linear-gradient(90deg, #38bdf8, #f472b6);
}

.about-team-profiles .section-subtitle {
    color: rgba(226, 232, 240, 0.86);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.team-profiles-layout {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.1rem;
}

.team-profile-card {
    position: relative;
    padding: 1.65rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12) 0%, rgba(248, 250, 252, 0.06) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.38);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.team-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #f472b6);
}

.team-profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.42);
    box-shadow: 0 22px 48px rgba(2, 6, 23, 0.5);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, rgba(248, 250, 252, 0.08) 100%);
}

.founder-card {
    border-color: rgba(96, 165, 250, 0.42);
    background:
        radial-gradient(540px 220px at 100% 0%, rgba(56, 189, 248, 0.3), transparent 74%),
        linear-gradient(145deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.82) 100%);
    display: grid;
    grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.founder-card .team-profile-top {
    align-items: flex-start;
}

.team-profile-top {
    display: block;
}

.team-profile-meta {
    min-width: 0;
}

.team-profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.33rem 0.8rem;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c7ecff;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(244, 114, 182, 0.2));
    margin-bottom: 0.55rem;
}

.team-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    line-height: 1.18;
    color: #f8fafc;
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}

.team-profile-role {
    margin: 0;
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 600;
}

.team-profile-note {
    margin: 1.05rem 0 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 760px;
}

.founder-card .team-profile-note {
    margin: 0.2rem 0 0;
    max-width: none;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    overflow: hidden;
    padding: 3.25rem 0;
    background: linear-gradient(135deg, #050b17 0%, #0f1a33 52%, #0a1428 100%);
    border-top: 1px solid rgba(56, 189, 248, 0.22);
    border-bottom: 1px solid rgba(236, 72, 153, 0.22);
}

.career-timeline::before,
.career-timeline::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.career-timeline::before {
    width: 620px;
    height: 620px;
    right: -240px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0) 72%);
}

.career-timeline::after {
    width: 560px;
    height: 560px;
    left: -220px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.24) 0%, rgba(236, 72, 153, 0) 72%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
    border-radius: 2px;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 1.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-400), var(--accent-500));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 200px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-600);
    padding: 0.875rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 12px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 1.5rem;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 1.5rem;
    margin-left: 0;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-content strong {
    color: var(--primary-600);
    font-weight: 600;
}

/* About Projects Sections */
.about-projects {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 3.25rem 0;
}

/* Ensure page content styles don't affect header */
.about-projects a,
.projects-grid a,
.project-card a,
section a {
    /* These styles only apply to content area links, not header */
}

/* Explicitly exclude header from content link styles */
.header a,
.header * a {
    /* Header links are styled separately above */
}

.about-projects.historical {
    background: linear-gradient(135deg, #0a1528 0%, #1a1526 55%, #101a32 100%);
    border-top: 1px solid rgba(250, 204, 21, 0.2);
    border-bottom: 1px solid rgba(14, 165, 233, 0.2);
}

.about-projects.historical::before {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    left: -220px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.24) 0%, rgba(250, 204, 21, 0) 74%);
    pointer-events: none;
    z-index: 0;
}

.about-projects.modern {
    background: #ffffff;
    border-top: 1px solid rgba(14, 165, 233, 0.12);
    border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.about-projects.modern::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    right: -250px;
    top: -260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0) 74%);
    pointer-events: none;
    z-index: 0;
}

.about-projects.application {
    background: linear-gradient(135deg, #0c1122 0%, #241439 56%, #111a31 100%);
    border-top: 1px solid rgba(167, 139, 250, 0.24);
    border-bottom: 1px solid rgba(244, 114, 182, 0.2);
}

.about-projects.application::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    left: -240px;
    bottom: -330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.28) 0%, rgba(167, 139, 250, 0) 74%);
    pointer-events: none;
    z-index: 0;
}

.career-timeline .about-intro-content,
.about-projects .about-intro-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding: 1.9rem 2.1rem;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.34);
    box-shadow: 0 22px 55px rgba(2, 6, 23, 0.45);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, rgba(248, 250, 252, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.career-timeline .about-intro-content::before,
.about-projects .about-intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.95), rgba(244, 114, 182, 0.95), rgba(244, 114, 182, 0));
    opacity: 0.85;
}

.career-timeline .about-intro-content:hover,
.about-projects .about-intro-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 58px rgba(2, 6, 23, 0.52);
}

.career-timeline .about-intro-content {
    border-color: rgba(56, 189, 248, 0.34);
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(56, 189, 248, 0.2), transparent 72%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(248, 250, 252, 0.08) 100%);
}

.about-projects.historical .about-intro-content {
    border-color: rgba(250, 204, 21, 0.36);
    background:
        radial-gradient(380px 220px at 0% 0%, rgba(250, 204, 21, 0.2), transparent 72%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(248, 250, 252, 0.08) 100%);
}

.about-projects.modern .about-intro-content {
    border-color: rgba(56, 189, 248, 0.22);
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(56, 189, 248, 0.12), transparent 72%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.92) 100%);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.about-projects.modern .section-title {
    color: var(--gray-900);
    text-shadow: none;
}

.about-projects.modern .intro-text p {
    color: var(--gray-700);
}

.about-projects.modern .intro-text strong {
    color: var(--primary-600);
}

.about-projects.application .about-intro-content {
    border-color: rgba(167, 139, 250, 0.38);
    background:
        radial-gradient(420px 220px at 100% 0%, rgba(167, 139, 250, 0.2), transparent 72%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(248, 250, 252, 0.08) 100%);
}

.career-timeline .container,
.about-projects .container {
    position: relative;
    z-index: 1;
}

.career-timeline .section-title,
.about-projects .section-title {
    color: #f8fafc;
    text-shadow: 0 8px 26px rgba(2, 6, 23, 0.55);
}

.career-timeline .section-title::after,
.about-projects .section-title::after {
    background: linear-gradient(90deg, #38bdf8, #f472b6);
}

.career-timeline .intro-text p,
.about-projects .intro-text p {
    color: rgba(226, 232, 240, 0.94);
}

.career-timeline .intro-text strong,
.about-projects .intro-text strong {
    color: #e2f3ff;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-top: 1rem;
    font-weight: 400;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-400), var(--accent-500));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleY(1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.2);
}

.project-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.project-desc {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Competition Badge in Project Cards */
.project-card.competition {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.project-card.competition::before {
    background: linear-gradient(180deg, var(--primary-500), var(--accent-600));
}

.project-card.competition .competition-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-600));
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card.competition:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.2);
}

/* Competitions Section */
.about-competitions {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.about-competitions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-competitions .section-title {
    color: #fff;
}

.about-competitions .section-title::after {
    background: linear-gradient(90deg, var(--primary-300), var(--accent-400));
}

.about-competitions .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Yarışma bölümü metinleri - koyu arka plan için yüksek kontrast */
.about-competitions .competition-intro {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-competitions .competition-intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-competitions .competition-intro p:last-child {
    margin-bottom: 0;
}

.about-competitions .competition-outro {
    max-width: 800px;
    margin: 2.5rem auto 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-competitions .competition-outro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .team-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-profile-name {
        font-size: 1.55rem;
    }
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.competition-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.competition-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.competition-card:hover::before {
    opacity: 1;
}

.competition-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.competition-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-400), var(--accent-500));
    padding: 0.75rem 2rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    position: relative;
    z-index: 1;
}

.competition-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.competition-year {
    font-size: 1.125rem;
    color: var(--primary-300);
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.competition-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Closing Section */
.about-closing {
    padding: 3rem 0;
    background: var(--gray-50);
}

.closing-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.closing-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.closing-text strong {
    color: var(--primary-600);
    font-weight: 600;
}

.closing-quote {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(236, 72, 153, 0.05));
    border-left: 4px solid var(--primary-500);
    border-radius: 12px;
    margin-top: 2rem;
}

.closing-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-400);
    opacity: 0.3;
    line-height: 1;
}

.closing-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Footer */
/* ============================================
   FOOTER STİLLERİ - YENİ TASARIM
   ============================================ */

.footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -0.75rem;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-400);
    padding-left: 0.75rem;
    transform: translateX(4px);
}

.footer-link:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-link:not(a) {
    cursor: default;
}

/* Bülten Bölümü */
.footer-newsletter {
    max-width: 100%;
}

.footer-newsletter-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    transform: translateY(-1px);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn svg {
    width: 16px;
    height: 16px;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
    margin-top: 0.1875rem;
    cursor: pointer;
    accent-color: var(--primary-500);
    flex-shrink: 0;
}

.newsletter-checkbox .newsletter-privacy-link {
    color: var(--primary-400, #38bdf8);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.newsletter-checkbox .newsletter-privacy-link:hover {
    color: var(--primary-300, #7dd3fc);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-scroll-top {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
    position: relative;
    overflow: hidden;
}

.footer-scroll-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.footer-scroll-top:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.footer-scroll-top:hover::before {
    width: 100%;
    height: 100%;
}

.footer-scroll-top:active {
    transform: translateY(-1px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        flex: 0 0 80px;
        font-size: 0.875rem;
        padding: 0.75rem 0.5rem;
    }
    
    .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .competitions-grid {
        grid-template-columns: 1fr;
    }

    .career-timeline .about-intro-content,
    .about-projects .about-intro-content {
        padding: 1.6rem 1.5rem;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 160px; /* mobile: wrapped header content */
    }
    
    .about-hero {
        padding: 2rem 0;
        padding-top: calc(var(--header-height) + 1rem);
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 0.75rem;
    }
    
    .about-intro,
    .about-team-profiles,
    .career-timeline,
    .about-projects,
    .about-competitions,
    .about-closing {
        padding: 2rem 0;
    }
    
    .timeline {
        padding: 1rem 0;
    }
    
    .timeline-item {
        padding-left: 3rem;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        flex: 0 0 60px;
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
        margin: 0 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1.25rem;
    }
    
    .competition-card {
        padding: 2rem;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .team-profile-card {
        padding: 1.25rem 1.1rem;
    }

    .team-profile-top {
        display: block;
    }

    .team-profile-name {
        font-size: 1.32rem;
        line-height: 1.22;
    }

    .team-profile-note {
        font-size: 0.95rem;
    }

    .career-timeline .about-intro-content,
    .about-projects .about-intro-content {
        padding: 1.2rem 1rem;
        border-radius: 14px;
    }
    
    .closing-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .closing-quote {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   NEDEN BİZ SAYFASI STİLLERİ
   ============================================ */

/* Why Hero Section */
.why-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-900) 50%, var(--gray-900) 100%);
    padding: calc(6rem + 100px) 0 3rem;
    position: relative;
    overflow: hidden;
}

.why-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.why-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.why-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.why-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.why-hero-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
    margin: 0 auto;
    border-radius: 2px;
}

/* SSS (Sık Sorulan Sorular) sayfası */
.sss-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-900) 50%, var(--gray-900) 100%);
    padding: calc(6rem + 100px) 0 3rem;
    position: relative;
    overflow: hidden;
}
.sss-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.sss-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.sss-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.sss-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0 0 1.5rem;
}
.sss-hero-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
    margin: 0 auto;
    border-radius: 2px;
}

/* Blog sayfası */
.blog-hero {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-900) 50%, var(--gray-900) 100%);
    padding: calc(6rem + 100px) 0 3rem;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.blog-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.blog-hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-400);
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}
.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}
.blog-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin: 0 0 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.blog-hero-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--accent-500));
    margin: 0 auto;
    border-radius: 2px;
}
.blog-main {
    padding: 3rem 0 4rem;
    background: var(--gray-50);
}
.blog-main .container {
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.blog-intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.blog-intro-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin: 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.blog-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, rgba(248, 250, 253, 0.98) 50%, rgba(241, 245, 249, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.08);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
/* Üst kenar ışık çizgisi */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.4) 20%, rgba(14, 165, 233, 0.7) 50%, rgba(14, 165, 233, 0.4) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
    opacity: 0.9;
    z-index: 1;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
/* Hover: parlama efekti */
.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(14, 165, 233, 0.03) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
a.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(14, 165, 233, 0.15),
        0 0 60px rgba(14, 165, 233, 0.18),
        0 20px 40px rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.25);
}
a.blog-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 28px rgba(14, 165, 233, 0.5);
}
a.blog-card:hover::after {
    opacity: 1;
}
a.blog-card:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 4px;
}
.blog-card--no-image .blog-card-body {
    padding: 1.75rem;
}
.blog-card-image {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}
.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
}
.blog-card-meta {
    font-size: 0.75rem;
    color: var(--primary-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.15);
}
.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.58;
    margin: 0 0 1rem;
    flex: 1;
}
.blog-card-cta,
.blog-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-600);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: color 0.2s ease, gap 0.2s ease, text-shadow 0.2s ease;
}
a.blog-card:hover .blog-card-cta,
a.blog-card:hover .blog-card-link {
    color: var(--primary-700);
    gap: 0.5rem;
    text-shadow: 0 0 12px rgba(14, 165, 233, 0.25);
}
.blog-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 24px;
    border: 2px dashed var(--gray-200);
    margin: 0 auto;
    max-width: 480px;
}
.blog-empty-icon {
    color: var(--gray-300);
    margin-bottom: 1.25rem;
}
.blog-empty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.75rem;
}
.blog-empty-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}
.blog-empty-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-empty-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

/* Makale okuma sayfası */
.article-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    z-index: 9999;
    transition: width 0.1s ease-out;
}
.article-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.article-hero {
    background: linear-gradient(160deg, var(--gray-900) 0%, var(--primary-900) 40%, var(--gray-900) 100%);
    padding: calc(6rem + 100px) 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 55%);
    pointer-events: none;
}
.article-hero .container {
    position: relative;
    z-index: 1;
    padding-left: 2rem;
    padding-right: 2rem;
}
.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    margin-bottom: 1.25rem;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.article-back:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.article-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-400);
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}
.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.22;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
    max-width: 800px;
}
.article-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin: 0;
    max-width: 720px;
}
.article-nav-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.article-nav-sticky.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.article-nav-back {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-nav-back:hover {
    color: var(--primary-600);
}
.article-main {
    flex: 1;
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #fafbfc 0%, var(--gray-50) 120px);
}
/* İki sütunlu makale (sol/sağ paragraflar, kitap değil) */
.article-main--two-col .article-body-wrap {
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0.75rem;
}
.article-body--two-col {
    column-count: 2;
    column-gap: 2.5rem;
    column-fill: balance;
}
.article-body--two-col h2 {
    break-after: avoid;
    column-span: 1;
}
.article-body--two-col h3 {
    break-after: avoid;
}
.article-body--two-col blockquote {
    break-inside: avoid;
}
.article-body--two-col .article-table {
    column-span: all;
    break-inside: avoid;
}
@media (max-width: 768px) {
    .article-body--two-col {
        column-count: 1;
        column-gap: 0;
    }
}
.container--narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.article-body {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--gray-800);
    letter-spacing: 0.01em;
}
.article-body p {
    margin: 0 0 1.25rem;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 2.5rem 0 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
    scroll-margin-top: 6rem;
}
.article-body h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 1.5rem 0 0.5rem;
}
.article-body ul,
.article-body ol {
    margin: 0 0 1.25rem;
    padding-left: 1.5rem;
}
.article-body li {
    margin-bottom: 0.4rem;
}
.article-body li:last-child {
    margin-bottom: 0;
}
.article-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-700);
    margin: 1.5rem 0;
    padding: 1.35rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-50), #f8fafc);
    border-left: 4px solid var(--primary-500);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 2px 12px rgba(2, 132, 199, 0.06);
}
.article-steps {
    list-style: none;
    padding-left: 0;
    counter-reset: step;
}
.article-steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    counter-increment: step;
}
.article-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.article-table th,
.article-table td {
    padding: 0.85rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}
.article-table thead th {
    background: var(--primary-50);
    color: var(--primary-800);
    font-weight: 600;
}
.article-table tbody tr:last-child td {
    border-bottom: none;
}
.article-table tbody tr:hover {
    background: var(--gray-50);
}
.article-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 3rem;
    padding: 2rem 0 0 1rem;
    border-top: 1px solid var(--gray-200);
}
.article-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.article-cta-link:hover {
    color: var(--primary-600);
    background: var(--gray-50);
    border-color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.article-cta-link--primary {
    color: var(--primary-600);
    background: rgba(2, 132, 199, 0.08);
    border-color: rgba(2, 132, 199, 0.2);
}
.article-cta-link--primary:hover {
    background: rgba(2, 132, 199, 0.15);
    color: var(--primary-700);
    border-color: rgba(2, 132, 199, 0.3);
}

.sss-main {
    padding: 3rem 0 4rem;
    background: var(--gray-50);
}
.sss-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}
.sss-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.sss-item:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.sss-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 1.125rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.sss-question:hover {
    color: var(--primary-600);
}
.sss-question::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 1rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230ea5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    transition: transform 0.25s ease;
}
.sss-item.open .sss-question::after {
    transform: rotate(180deg);
}
.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.sss-item.open .sss-answer {
    max-height: 30rem;
}
.sss-answer p {
    margin: 0;
    padding: 0 1.5rem 1.25rem;
    padding-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-700);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

/* Why Content Section - Grid Layout */
.why-content {
    padding: 3rem 0 4rem;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(14, 165, 233, 0.2);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.why-card-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray-700);
    flex: 1;
}

.why-card-text p {
    margin-bottom: 1rem;
}

.why-card-text p:last-child {
    margin-bottom: 0;
}

.why-card-text strong {
    color: var(--primary-700);
    font-weight: 600;
}

.why-card-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.why-card-subtitle:first-of-type {
    margin-top: 1rem;
}

.why-card-quote {
    font-style: italic;
    color: var(--primary-700);
    border-left: 3px solid var(--primary-500);
    padding-left: 1rem;
    margin: 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* Why List Styles */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
}

.why-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15);
}

.why-list li:last-child {
    margin-bottom: 0;
}

/* Neden Biz - Yeni bölüm tabanlı tasarım (Hakkımızda ile uyumlu) */
.neden-biz-page .about-intro {
    padding: 2rem 0;
}

.why-value-section {
    padding: 1.75rem 0;
    background: #fff;
}

.why-value-section--alt {
    background: var(--gray-50);
}

.neden-biz-page .section-header {
    margin-bottom: 1.25rem;
}

.why-value-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.why-value-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.intro-quote {
    font-style: italic;
    color: var(--primary-700);
    border-left: 4px solid var(--primary-500);
    padding: 1rem 0 1rem 1.5rem;
    margin: 1.5rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.why-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    position: relative;
}

.why-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.why-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
}

.why-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.why-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.why-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.5);
    color: var(--gray-900);
}

/* Responsive Design for Why Page & SSS */
@media (max-width: 1024px) {
    .why-hero-title {
        font-size: 3rem;
    }
    .sss-hero-title {
        font-size: 2.75rem;
    }
    .sss-main {
        padding: 2.5rem 0 3rem;
    }
    .blog-hero-title {
        font-size: 2.75rem;
    }
    .blog-main {
        padding: 2.5rem 0 3rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .why-content {
        padding: 2.5rem 0 3rem;
    }
    
    .why-grid {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .why-card {
        padding: 2rem 1.75rem;
    }
    
    .why-card-title {
        font-size: 1.5rem;
    }
    .why-value-section .section-title {
        font-size: 2rem;
    }
    .why-cta {
        padding: 3rem 0;
    }
    .why-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .why-hero {
        padding: calc(5rem + 100px) 0 2rem;
    }
    
    .why-hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .why-hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    .sss-hero {
        padding: calc(5rem + 100px) 0 2rem;
    }
    .sss-hero-title {
        font-size: 2rem;
    }
    .sss-hero-subtitle {
        font-size: 1rem;
    }
    .sss-main {
        padding: 2rem 0 3rem;
    }
    .blog-hero {
        padding: calc(5rem + 100px) 0 2rem;
    }
    .blog-hero-title {
        font-size: 2rem;
    }
    .blog-hero-subtitle {
        font-size: 1rem;
    }
    .blog-main {
        padding: 2rem 0 3rem;
    }
    .blog-main .container {
        padding-left: 4px;
        padding-right: 4px;
    }
    .blog-intro {
        margin-bottom: 2rem;
        padding: 0;
    }
    .blog-empty-state {
        padding: 2.5rem 1.5rem;
    }
    .article-hero {
        padding: calc(5rem + 100px) 0 2rem;
    }
    .article-hero .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .article-title {
        font-size: 1.75rem;
    }
    .article-lead {
        font-size: 1.05rem;
    }
    .article-main {
        padding: 2rem 0 3rem;
    }
    .article-body {
        font-size: 1rem;
    }
    .article-body h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }
    .why-value-section {
        padding: 1.5rem 0;
    }
    .neden-biz-page .section-header {
        margin-bottom: 1rem;
    }
    .why-value-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .why-value-subtitle {
        font-size: 1.125rem;
        margin-top: 1.25rem;
    }
    .why-cta {
        padding: 2.5rem 1.5rem;
    }
    .why-cta-title {
        font-size: 1.5rem;
    }
    .why-cta-text {
        font-size: 1rem;
    }
    .article-quote {
        font-size: 1.15rem;
        padding: 1rem 1.25rem;
        border-radius: 0 12px 12px 0;
    }
    .article-nav-sticky .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .sss-list {
        padding: 0 1rem;
    }
    .sss-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    .sss-answer p {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }
    .why-content {
        padding: 2rem 0 3rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .why-card {
        padding: 2rem 1.5rem;
    }
    
    .why-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
    
    .why-card-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .why-card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .why-card-text {
        font-size: 0.9375rem;
    }
    
    .why-card-subtitle {
        font-size: 1rem;
        margin-top: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .why-card-quote {
        font-size: 0.875rem;
        padding-left: 0.875rem;
        margin: 0.875rem 0;
    }
}

/* ============================================
   İLETİŞİM SAYFASI STİLLERİ - YENİ TASARIM
   ============================================ */

/* Contact Main Section */
.contact-main-section {
    padding: calc(var(--header-height, 140px) + 1.5rem) 0 2rem;
    background:
        radial-gradient(circle at 20% 25%, rgba(14, 165, 233, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-900) 100%);
    position: relative;
    overflow: hidden;
    min-height: 0;
}

/* İletişim sayfası: container genişliği ve hizalama (kayma önleme) */
.contact-main-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Anasayfada müşteri deneyimlerinden sonra: kompakt alt boşluk, üstte header boşluğu korunur */
.home-testimonials + .contact-main-section {
    padding-top: calc(var(--header-height, 140px) + 1.5rem);
    padding-bottom: 2.5rem;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.contact-main-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
    box-sizing: border-box;
}

/* Sol Taraf - Form */
.contact-form-side {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-form-header {
    margin-bottom: 2rem;
    padding-right: 0.75rem;
    flex-shrink: 0;
}

.contact-form-header-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.header-label-line {
    width: 3px;
    height: 18px;
    background: var(--primary-500);
    border-radius: 2px;
}

.contact-form-header-label span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-form-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 200px;
    font-family: 'Inter', sans-serif;
}

/* Textarea içeren form-group'u genişlet */
.form-group:has(.form-textarea) {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group:has(.form-textarea) .form-textarea {
    flex: 1;
    min-height: auto;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    align-self: flex-start;
    margin-top: auto;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}

/* Sağ Taraf - Hızlı İletişim: tek büyük kutu, içinde her bilgi ayrı kart */
.contact-info-side {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    min-width: 0;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-side::before {
    display: none;
}

.contact-info-side-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
    padding: 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.contact-quick-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

.contact-quick-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem 1.125rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

a.contact-quick-card {
    text-decoration: none;
    color: inherit;
}

.contact-quick-card:focus {
    outline: none;
}

.contact-quick-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.35);
}

.contact-quick-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.contact-quick-card.copied {
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25);
}

.contact-quick-card * {
    pointer-events: none;
}

.quick-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-400);
}

.quick-card-icon svg {
    width: 20px;
    height: 20px;
}

.quick-card-content {
    flex: 1;
}

.quick-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.quick-card-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.quick-card-value:hover {
    color: var(--primary-300);
}

.quick-card-value:not(a) {
    color: #fff;
}

/* Sosyal Medya Bölümü */
.contact-social-section {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0 0 0;
    margin-top: auto;
    flex-shrink: 0;
}

.contact-social-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-social-icons {
    display: flex;
    gap: 0.5rem;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--primary-400);
    transition: all 0.3s ease;
}

.contact-social-icon svg {
    width: 18px;
    height: 18px;
}

.contact-social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .contact-form-main-title {
        font-size: 2rem;
    }
    
    .contact-form-header {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-side-title {
        margin-bottom: 1.5rem;
    }
    
    .contact-quick-cards {
        padding: 0;
    }
    
    .contact-social-section {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 768px) {
    .contact-main-section {
        padding: calc(4rem + 80px) 0 2rem;
    }
    
    .contact-main-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .contact-form-main-title {
        font-size: 2rem;
    }
    
    .contact-form-description {
        font-size: 0.875rem;
    }
    
    .contact-info-side-title {
        font-size: 1.25rem;
    }
    
    .contact-quick-cards {
        gap: 0.625rem;
        padding: 0;
    }
    
    .contact-quick-card {
        padding: 0.875rem;
    }
    
    .contact-info-side {
        padding: 1.25rem 1rem;
    }
    
    .contact-social-section {
        padding: 1.5rem 0 1.5rem 0;
    }
    
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer .container,
    .ref-page .footer .container,
    .projeler-page .footer .container {
        padding: 0 2.5rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .footer .container,
    .ref-page .footer .container,
    .projeler-page .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-column-title {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links {
        gap: 0.55rem;
    }
    
    .footer-link {
        font-size: 0.84rem;
        line-height: 1.35;
    }
    
    .footer-newsletter-text {
        font-size: 0.82rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .footer-newsletter-text {
        display: none;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 0.45rem;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 0.58rem 0.75rem;
        font-size: 0.74rem;
        letter-spacing: 0.04em;
    }

    .newsletter-input {
        padding: 0.68rem 0.8rem;
        font-size: 0.82rem;
    }

    .footer-newsletter-form {
        gap: 0.55rem;
    }

    .newsletter-checkbox {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.8125rem;
    }
}

@media (max-width: 360px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Galaxy Z Fold-style inner screens: keep footer compact */
@media (min-width: 700px) and (max-width: 950px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer .container,
    .ref-page .footer .container,
    .projeler-page .footer .container {
        padding: 0 1.5rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

/* Extra-small mobile: avoid broken word spacing from justify */
@media (max-width: 480px) {
    body.page-body main p,
    body.page-body main li,
    body.page-body main section p,
    body.page-body main section li,
    body.page-body section p,
    body.page-body section li {
        text-align: left !important;
        text-align-last: left !important;
        word-spacing: normal !important;
        hyphens: none !important;
        -webkit-hyphens: none !important;
    }
}

@media (max-width: 1024px) {
    .about-intro .intro-text p,
    .career-timeline .intro-text p,
    .about-projects .intro-text p {
        text-align: justify !important;
        text-justify: auto !important;
        text-align-last: left !important;
        word-spacing: -0.01em !important;
        letter-spacing: normal !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
    }

    .about-intro .intro-text .intro-lead {
        font-size: 1.06rem !important;
        line-height: 1.62 !important;
        text-align: justify !important;
        text-justify: auto !important;
        text-align-last: left !important;
        word-spacing: -0.015em !important;
    }

    .about-hero .about-hero-subtitle,
    .about-hero-content .about-hero-subtitle {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        position: static !important;
        left: auto !important;
        transform: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ============================================
   Service Detail Pages — Kısa, net, şık (hero koyu = header okunaklı)
   ============================================ */
.service-page {
    background: var(--gray-50);
}

.service-page main {
    padding-top: 0;
}

/* Hero: koyu, başlık header'dan uzak — sayfa üstü koyu = şeffaf header okunaklı */
.service-hero {
    position: relative;
    padding: 8rem 0 4.5rem;
    background: linear-gradient(165deg, var(--gray-900) 0%, var(--gray-800) 45%, var(--primary-900) 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" stroke="%23ffffff" stroke-width="0.25" opacity="0.04"%3E%3Cpath d="M0 40h80M40 0v80"/%3E%3C/g%3E%3C/svg%3E');
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.service-hero-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-500));
    border-radius: 2px;
}

.service-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(248, 250, 252, 0.88);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    margin-top: 1.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-hero-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* İçerik: etkileyici blok */
.service-section {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 30%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
    opacity: 0.8;
}

.service-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(14, 165, 233, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.service-section .container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Başlık - etkileyici typografi */
.service-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: service-title-fade-in 0.8s ease backwards;
}

.service-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    border-radius: 2px;
    animation: service-accent-expand 0.8s 0.3s ease backwards;
}

@keyframes service-title-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes service-accent-expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 48px;
        opacity: 1;
    }
}

/* Giriş paragrafı - vurgulu kutu */
.service-section .service-intro {
    color: var(--gray-700);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--primary-400);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    animation: service-intro-fade-in 0.7s 0.2s ease backwards;
}

.service-section .service-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    border-radius: 0 12px 0 0;
    pointer-events: none;
}

@keyframes service-intro-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-section .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    counter-reset: service-item;
    position: relative;
    align-items: stretch;
}

.service-section .service-list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88px;
    padding: 1.25rem 3.5rem 1.25rem 1.75rem;
    margin: 0;
    color: var(--gray-800);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #fff 0%, var(--gray-50) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-500);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    overflow: hidden;
    animation: service-item-fade-in 0.6s ease backwards;
    counter-increment: service-item;
    cursor: default;
}

/* Hover’da sol kenarda hafif gradient ışıltı */
.service-section .service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-400), var(--primary-600));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-section .service-list li:nth-child(1) { animation-delay: 0.35s; }
.service-section .service-list li:nth-child(2) { animation-delay: 0.42s; }
.service-section .service-list li:nth-child(3) { animation-delay: 0.49s; }
.service-section .service-list li:nth-child(4) { animation-delay: 0.56s; }
.service-section .service-list li:nth-child(5) { animation-delay: 0.63s; }
.service-section .service-list li:nth-child(6) { animation-delay: 0.7s; }

@keyframes service-item-fade-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-section .service-list li:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.14), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-300);
    background: #fff;
}

.service-section .service-list li:hover::before {
    opacity: 1;
}

/* Sıra numarası - sabit konum, kart içinde ortalanmış */
.service-section .service-list li::after {
    content: counter(service-item, decimal-leading-zero);
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--primary-600);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-section .service-list li:hover::after {
    background: var(--primary-500);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.service-section .service-cta-wrap {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9375rem;
}

.service-section .service-cta-wrap a {
    color: var(--primary-600);
    font-weight: 500;
}

.service-section .service-cta-wrap a:hover {
    text-decoration: underline;
}

.service-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.service-summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-summary-card span {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.6);
}

.service-summary-card p {
    margin: 0;
    color: rgba(248, 250, 252, 0.9);
}

.service-example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.service-example-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: auto;
}

.service-example-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
}

.service-example-meta {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.6);
    margin-bottom: 1rem;
}

.service-example-desc {
    color: rgba(248, 250, 252, 0.85);
    margin: 0;
}

.service-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-process-step {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.service-process-step span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-process-step p {
    margin: 0;
    color: rgba(248, 250, 252, 0.85);
}

.service-insight {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #e0f2fe;
}

.service-insight p {
    font-size: 1.2rem;
    margin: 0 0 1rem;
}

.service-insight span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(224, 242, 254, 0.7);
}

.service-cta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
}

.service-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-cta p {
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 1rem;
}

.service-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    color: #f8fafc;
    font-size: 0.95rem;
}

.service-form textarea {
    min-height: 120px;
    grid-column: 1 / -1;
}

.service-form button {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 0.75rem;
    border: none;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.service-form button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-hero {
        padding: 6rem 0 3rem;
    }

    .service-hero-title::after {
        margin-top: 0.75rem;
    }

    .service-section {
        padding: 2.5rem 0 3rem;
    }

    .service-section-title {
        font-size: 1.75rem;
    }

    .service-section .service-intro {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .service-section .service-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .service-section .service-list li {
        padding: 1.25rem 3rem 1.25rem 1.5rem;
        min-height: 80px;
    }
}

/* ============================================
   Referanslar Sayfası
   ============================================ */
.ref-page {
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-900) 100%);
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Header Referanslar sayfasında da en üstte, tam genişlik, logo soldan */
.ref-page .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

/* Header içindeki container diğer sayfalarla aynı: padding yok, tam genişlik (logo en solda) */
.ref-page .header .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.ref-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Footer ref-page'de daralmamalı: kenarlardan tam genişlik (diğer sayfalarla aynı) */
.ref-page .footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

/* ============================================
   Projeler sayfaları (Restorasyon / Modern / Anıt Eserler)
   ============================================ */
.projeler-page {
    background:
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-900) 100%);
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.projeler-page .header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
}

.projeler-page .header .container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.projeler-page .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Proje listesi daha geniş: kenar boşluğu az, kartlar büyük */
.proj-main .container {
    max-width: 1600px;
    padding: 0 1.25rem;
}

/* Footer projeler sayfalarında daralmamalı: kenarlardan tam genişlik (diğer sayfalarla aynı) */
.projeler-page .footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

.proj-hero {
    padding-top: calc(var(--header-height, 140px) + 0.5rem) !important;
    margin-top: 0 !important;
}

.proj-main .ref-section,
.proj-main .ref-cta {
    color: #fff;
}

/* ============================================
   Proje portfolyo (detaylı proje kartları)
   Satırda 2 proje, boyutlar kompakt.
   Görseller lazy load, aspect-ratio ile CLS önlenir.
   ============================================ */
.proj-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.25rem 0 2rem;
    justify-items: stretch;
    align-items: stretch;
    align-content: start;
    direction: ltr;
}

/* Son satırda tek kart kaldığında (toplam tek sayıda kart) sola yasla */
.proj-portfolio-item:last-child:nth-child(odd) {
    grid-column: 1;
}

.proj-portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    content-visibility: auto;
    contain-intrinsic-block-size: 280px;
}

.proj-portfolio-item:hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Kart link ise (tıklanabilir) – aynı boyut için stretch */
a.proj-portfolio-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}


/* Slider: hover’da 5 sn’de bir sonraki görsel */
.proj-portfolio-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.proj-portfolio-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.proj-portfolio-slide.active {
    opacity: 1;
    z-index: 1;
}

.proj-portfolio-slide .proj-portfolio-placeholder,
.proj-portfolio-slide .proj-portfolio-img {
    position: absolute;
    inset: 0;
}

.proj-portfolio-slide .proj-portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-orientation: from-image;
}

.proj-portfolio-slide:has(.proj-portfolio-img) .proj-portfolio-placeholder {
    display: none;
}

/* Medya alanı: aspect-ratio ile yer ayrılır, sayfa sıçramaz */
.proj-portfolio-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(30, 41, 59, 0.6);
    overflow: hidden;
    flex-shrink: 0;
    min-height: 0;
}

.proj-portfolio-media-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.proj-portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-orientation: from-image;
}

/* Placeholder: görsel yoksa veya yüklenene kadar */
.proj-portfolio-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: rgba(148, 163, 184, 0.6);
}

.proj-portfolio-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

/* Tek görsel/placeholder (slider yok) durumunda placeholder görünsün */
.proj-portfolio-media-inner:has(.proj-portfolio-img) .proj-portfolio-placeholder {
    display: none;
}

.proj-portfolio-media-inner:not(:has(.proj-portfolio-slider)) .proj-portfolio-placeholder {
    position: absolute;
    inset: 0;
}

/* Placeholder kartlar (proje eklenecek) */
.proj-portfolio-item--placeholder {
    cursor: default;
    pointer-events: none;
}
.proj-portfolio-item--placeholder .proj-portfolio-placeholder--visible {
    display: flex !important;
}

/* İçerik: başlık, yıl, açıklama – tüm kartlarda aynı yükseklik için */
.proj-portfolio-content {
    padding: 1rem 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.proj-portfolio-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

.proj-portfolio-year {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-400);
    background: rgba(14, 165, 233, 0.12);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.proj-portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.proj-portfolio-desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.85);
    margin: 0;
}

/* Ek galeri (birden fazla görsel) */
.proj-portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.4rem;
    padding: 0 1rem 1rem;
}

.proj-portfolio-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Video alanı (isteğe bağlı) */
.proj-portfolio-video {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.proj-portfolio-video video,
.proj-portfolio-video iframe {
    width: 100%;
    display: block;
}

.proj-portfolio-video video {
    max-height: 360px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .proj-main .container {
        padding: 0 1rem;
    }
    .proj-portfolio {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem 0 1.5rem;
    }
    .proj-portfolio-media {
        aspect-ratio: 4 / 3;
    }
    .proj-portfolio-content {
        padding: 0.9rem 1rem;
    }
    .proj-portfolio-title {
        font-size: 1.05rem;
    }
    .proj-portfolio-desc {
        font-size: 0.8125rem;
    }
    .proj-portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .proj-hero {
        padding-top: calc(var(--header-height, 160px) + 0.5rem) !important;
    }
}

/* ============================================
   Proje detay sayfası
   ============================================ */
.proje-detay-page .detail-hero-container,
.proje-detay-page .detail-main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.detail-hero {
    padding-top: calc(var(--header-height, 140px) + 2rem);
    padding-bottom: 2rem;
    color: #f8fafc;
}

.detail-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.detail-breadcrumb a {
    color: rgba(248, 250, 252, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-breadcrumb a:hover {
    color: var(--primary-400);
}

.detail-breadcrumb-sep {
    color: rgba(248, 250, 252, 0.4);
}

.detail-breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

.detail-hero-inner {
    max-width: 800px;
}

.detail-year {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-400);
    background: rgba(14, 165, 233, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.detail-subtitle {
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.8);
    margin: 0;
}

.detail-main {
    padding-bottom: 3rem;
    color: #f8fafc;
}

.detail-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-intro {
    margin-bottom: 2.5rem;
}

.detail-description {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.9);
}

.detail-description p {
    margin: 0 0 1rem;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

.detail-gallery {
    margin-bottom: 2.5rem;
}

/* Tek satır, yatay kaydırma: sığmayan görseller sağa doğru scroll */
.detail-gallery-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
}

.detail-gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.detail-gallery-grid::-webkit-scrollbar-track {
    background: transparent;
}

.detail-gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.4);
    border-radius: 4px;
}

.detail-gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.55);
}

.detail-gallery-item {
    flex: 0 0 auto;
    width: min(340px, 82vw);
    position: relative;
    aspect-ratio: 4 / 3;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
}

.detail-gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    color: rgba(148, 163, 184, 0.7);
    font-size: 0.8125rem;
}

.detail-gallery-placeholder svg {
    opacity: 0.6;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-orientation: from-image;
}

/* Görsel yükleme performansı: lazy img'ler için placeholder alanı */
.proj-portfolio-img[loading="lazy"],
.detail-gallery-item img[loading="lazy"] {
    background: rgba(30, 41, 59, 0.5);
}

.detail-gallery-load-more {
    display: block;
    margin: 1.5rem auto 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-400, #38bdf8);
    background: transparent;
    border: 2px solid var(--accent-500, #0ea5e9);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.detail-gallery-load-more:hover {
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-300, #7dd3fc);
}

.detail-video {
    margin-bottom: 2.5rem;
}

.detail-video-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    max-width: 900px;
}

.detail-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.95);
    color: rgba(148, 163, 184, 0.7);
    font-size: 0.9375rem;
}

.detail-video-placeholder svg {
    opacity: 0.5;
}

.detail-video-wrap iframe,
.detail-video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
}

.detail-cta {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-cta-text {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.9);
}

.detail-back-link {
    display: inline-block;
    font-size: 0.9375rem;
    color: var(--primary-400);
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-back-link:hover {
    color: #38bdf8;
}

@media (max-width: 768px) {
    .proje-detay-page .detail-hero-container,
    .proje-detay-page .detail-main-container {
        padding: 0 1rem;
    }
    .detail-hero {
        padding-top: calc(var(--header-height, 160px) + 1.5rem);
        padding-bottom: 1.5rem;
    }
    .detail-title {
        font-size: 1.65rem;
    }
    .detail-gallery-item {
        width: min(280px, 78vw);
    }
    .detail-gallery-grid {
        gap: 0.75rem;
    }
}

/* ============================================
   Lightbox: resim/video tıklanınca büyük ekranda açılır
   İçerik tıklanınca yüklenir, performans korunur.
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -2.75rem;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 3.25rem;
    height: 3.25rem;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 2.125rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-body {
    max-width: 95vw;
    max-height: 90vh;
    display: none;
}

.lightbox-body.active {
    display: block;
}

.lightbox-body img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    vertical-align: middle;
}

.lightbox-body video {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
}

.lightbox-body .lightbox-iframe-wrap {
    width: 90vw;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    max-height: 90vh;
}

.lightbox-body .lightbox-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tıklanabilir medya: imleç (sadece gerçek img/video olan yerler) */
.proj-portfolio-media { cursor: pointer; }
.proj-portfolio-gallery img { cursor: pointer; }
.detail-gallery-item img { cursor: pointer; }
.detail-video-wrap video,
.detail-video-wrap iframe { cursor: pointer; }
.detail-gallery-placeholder { cursor: default; }
.detail-video-placeholder { cursor: default; }

/* Projeler hub (ana projeler sayfası) */
.proj-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 3rem;
}

.proj-hub-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: #fff;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    display: block;
}

.proj-hub-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-4px);
}

.proj-hub-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(14, 165, 233, 0.6);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.proj-hub-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.proj-hub-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .proj-hub-grid {
        grid-template-columns: 1fr;
    }
}

/* Hizmetler hub: 4 kart - şık ve kullanıcı dostu */
.hizmetler-section {
    padding: 3rem 0 4rem;
}

.hizmetler-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 3rem;
}

/* Projelerimiz sayfası: 4 kart tek satır, hizmetler ile aynı düzen */
.projeler-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 0 3rem;
}

.hizmetler-card {
    position: relative;
    padding: 2rem 2.25rem;
    background: linear-gradient(145deg, rgba(51, 65, 85, 0.55) 0%, rgba(30, 41, 59, 0.45) 100%);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, background 0.35s ease, box-shadow 0.4s ease;
}

.hizmetler-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hizmetler-card:hover {
    transform: translateY(-8px);
    border-color: rgba(148, 163, 184, 0.3);
    background: linear-gradient(145deg, rgba(71, 85, 105, 0.6) 0%, rgba(51, 65, 85, 0.5) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hizmetler-card:hover::before {
    opacity: 1;
}

.hizmetler-card .proj-hub-card-num {
    font-size: 2.75rem;
    color: #fcd34d;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease;
}

.hizmetler-card:hover .proj-hub-card-num {
    transform: scale(1.05);
}

.hizmetler-card .proj-hub-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.hizmetler-card .proj-hub-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.hizmetler-card-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    font-size: 1.25rem;
    color: #fcd34d;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.hizmetler-card:hover .hizmetler-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Hizmetler sayfasi 4'lu kartlar: daha premium varyasyon */
.hizmetler-hub-grid,
.projeler-hub-grid {
    position: relative;
    padding: 2rem 1.35rem 2.25rem;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(145deg, rgba(12, 24, 45, 0.84) 0%, rgba(22, 35, 66, 0.74) 55%, rgba(31, 27, 63, 0.7) 100%);
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.38);
    overflow: hidden;
}

.hizmetler-hub-grid::before,
.hizmetler-hub-grid::after,
.projeler-hub-grid::before,
.projeler-hub-grid::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.hizmetler-hub-grid::before,
.projeler-hub-grid::before {
    width: 520px;
    height: 520px;
    top: -300px;
    right: -210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0) 72%);
}

.hizmetler-hub-grid::after,
.projeler-hub-grid::after {
    width: 520px;
    height: 520px;
    left: -230px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.24) 0%, rgba(244, 114, 182, 0) 74%);
}

.hizmetler-hub-grid .hizmetler-card,
.projeler-hub-grid .hizmetler-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 3.5rem;
    z-index: 1;
    border-color: rgba(148, 163, 184, 0.22);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.14) 0%, rgba(248, 250, 252, 0.08) 100%);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.hizmetler-hub-grid .hizmetler-card::before,
.projeler-hub-grid .hizmetler-card::before {
    height: 2px;
    opacity: 0.9;
    background: linear-gradient(90deg, #38bdf8 0%, #a78bfa 55%, #f472b6 100%);
}

.hizmetler-hub-grid .hizmetler-card::after,
.projeler-hub-grid .hizmetler-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hizmetler-hub-grid .hizmetler-card:hover,
.projeler-hub-grid .hizmetler-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.36);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.22) 0%, rgba(248, 250, 252, 0.11) 100%);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.42);
}

.hizmetler-hub-grid .hizmetler-card:focus-visible,
.projeler-hub-grid .hizmetler-card:focus-visible {
    outline: none;
    transform: translateY(-8px);
    border-color: rgba(56, 189, 248, 0.44);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.28), 0 24px 56px rgba(2, 6, 23, 0.45);
}

.hizmetler-hub-grid .hizmetler-card .proj-hub-card-num,
.projeler-hub-grid .hizmetler-card .proj-hub-card-num {
    color: #fde68a;
    text-shadow: 0 8px 22px rgba(250, 204, 21, 0.3);
}

.hizmetler-hub-grid .hizmetler-card .proj-hub-card-title,
.projeler-hub-grid .hizmetler-card .proj-hub-card-title {
    color: #ffffff;
    font-size: 1.28rem;
}

.hizmetler-hub-grid .hizmetler-card .proj-hub-card-desc,
.projeler-hub-grid .hizmetler-card .proj-hub-card-desc {
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.68;
}

.hizmetler-hub-grid .hizmetler-card .hizmetler-card-arrow,
.projeler-hub-grid .hizmetler-card .hizmetler-card-arrow {
    opacity: 0.35;
    color: #fcd34d;
    transform: translateX(-2px);
}

.hizmetler-hub-grid .hizmetler-card:hover .hizmetler-card-arrow,
.hizmetler-hub-grid .hizmetler-card:focus-visible .hizmetler-card-arrow,
.projeler-hub-grid .hizmetler-card:hover .hizmetler-card-arrow,
.projeler-hub-grid .hizmetler-card:focus-visible .hizmetler-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1100px) {
    .hizmetler-hub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.6rem 1rem 1.8rem;
        border-radius: 22px;
    }
    .projeler-hub-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.6rem 1rem 1.8rem;
        border-radius: 22px;
    }
    .hizmetler-card {
        padding: 1.75rem 1.5rem;
    }
    .hizmetler-hub-grid .hizmetler-card {
        padding: 1.65rem 1.35rem 3rem;
    }
    .projeler-hub-grid .hizmetler-card {
        padding: 1.65rem 1.35rem 3rem;
    }
}
@media (max-width: 600px) {
    .hizmetler-hub-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.1rem 0.9rem 1.25rem;
        border-radius: 18px;
    }
    .projeler-hub-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.1rem 0.9rem 1.25rem;
        border-radius: 18px;
    }
    .hizmetler-card {
        padding: 1.5rem 1.5rem;
    }
    .hizmetler-hub-grid .hizmetler-card {
        padding: 1.35rem 1.15rem 2.75rem;
    }
    .projeler-hub-grid .hizmetler-card {
        padding: 1.35rem 1.15rem 2.75rem;
    }
    .hizmetler-card .proj-hub-card-num {
        font-size: 2.25rem;
    }
}

.ref-nav {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
}

.ref-nav .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

.ref-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease, background 0.2s ease;
}

.ref-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.ref-nav-link.ref-nav-link--active {
    color: #fff;
    background: rgba(14, 165, 233, 0.25);
    border: 1px solid rgba(14, 165, 233, 0.5);
}

.ref-section.ref-section--hidden {
    display: none;
}

.ref-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ref-section:last-of-type {
    border-bottom: none;
}

.ref-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ref-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(14, 165, 233, 0.2);
    color: #0ea5e9;
    font-size: 0.8rem;
    font-weight: 700;
}

.ref-section--modern .ref-section-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.ref-section--uygulama .ref-section-icon {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.ref-section--anit .ref-section-icon {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.ref-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ref-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.ref-item:last-child {
    border-bottom: none;
}

.ref-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ref-item-year {
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: 0.02em;
    min-width: 5rem;
}

.ref-item-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(248, 250, 252, 0.95) !important;
}

.ref-cta {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(90deg,
        rgba(30, 58, 95, 0.35) 0%,
        rgba(14, 165, 233, 0.1) 35%,
        rgba(14, 165, 233, 0.08) 65%,
        rgba(30, 41, 59, 0.35) 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.ref-cta-text {
    margin: 0;
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.95) !important;
}

.ref-cta-link {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ref-cta-link:hover {
    border-bottom-color: #38bdf8;
}

@media (max-width: 768px) {
    .ref-nav .container {
        flex-direction: column;
        align-items: stretch;
    }

    .ref-section-title {
        font-size: 1.15rem;
    }

    .ref-item {
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.75rem 0;
    }

    .ref-item-year {
        min-width: auto;
    }
}

/* ============================================
   Referanslar hero: sadece #ref-hero (DOM’da tek)
   Outline = CSS’in uygulandığını kanıtlar.
   ============================================ */
/* Referanslar hero: header altında boşluk; body.ref-page ile spesifiklik artırıldı */
body.page-body.ref-page #ref-hero,
.ref-page #ref-hero,
#ref-hero {
    padding-top: calc(var(--header-height, 140px) + 0.5rem) !important;
    margin-top: 0 !important;
    min-height: 0 !important;
    position: relative !important;
    transform: none !important;
}

@media (max-width: 768px) {
    body.page-body.ref-page #ref-hero,
    .ref-page #ref-hero,
    #ref-hero {
        padding-top: calc(var(--header-height, 160px) + 0.5rem) !important;
    }
}

/* ============================================
   İstanbul proje haritası section (slaytın altında, bağımsız)
   Slayt / hero CSS'e dokunulmaz; boşluk ve yükseklik sadece bu section'da.
   Header'ın altında kalması için z-index ve üst boşluk burada tanımlanır.
   ============================================ */
.project-map-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 4.5rem;
    padding-bottom: 0.25rem;
    overflow: hidden;
    width: 100%;
    /* Ana sayfa koyu bölümler (projeler / iletişim) ile aynı slate–navy palet; çapraz gradient */
    background:
        radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(13, 148, 136, 0.08) 0%, transparent 48%),
        linear-gradient(145deg, #1e293b 0%, #172033 42%, #0f172a 72%, #020617 100%);
}

/* İletişim bloğundaki gibi teknik grid; düşük opaklık */
.project-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.project-map-section .project-map-container {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.project-map-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.project-map-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.75rem;
    border-left: 3px solid #2dd4bf;
    background: linear-gradient(120deg, #f8fafc 0%, #99f6e4 45%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(248, 250, 252, 0.95);
}

.project-map-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2dd4bf 0%, rgba(45, 212, 191, 0.25) 100%);
    margin-top: 0.4rem;
}

.project-map-container {
    width: 100%;
    height: 75vh;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: #1e293b;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.project-map-section .project-map-marker {
    background: transparent !important;
    border: none !important;
}

@media (max-width: 768px) {
    .project-map-section {
        padding-top: 4rem;
        padding-bottom: 0.25rem;
    }
    .project-map-inner {
        padding: 0 1rem;
    }
    .project-map-container {
        height: 70vh;
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .header,
    .page-body .header,
    body.page-body .header,
    .ref-page .header,
    .projeler-page .header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 50 !important;
        width: 100% !important;
        background: rgba(15, 23, 42, 0.96) !important;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-content,
    header.header .header-content,
    .page-body .header .header-content,
    body.page-body .header .header-content {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
        flex-wrap: nowrap !important;
        padding: 0.78rem 0.875rem !important;
        min-height: 84px;
    }

    .mobile-header-actions {
        display: inline-flex !important;
        align-items: center;
        margin-left: 0;
        gap: 0.35rem;
        order: 2 !important;
        align-self: flex-end;
        margin-bottom: 0.1rem;
    }

    .mobile-header-cta,
    .mobile-header-lang-btn {
        height: 34px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
        color: #e5e7eb;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 0 0.56rem;
        font-size: 0.74rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .mobile-header-cta-icon {
        font-size: 0.9rem;
        line-height: 1;
    }

    .mobile-header-lang-btn {
        min-width: 70px;
        cursor: pointer;
    }

    .mobile-header-lang {
        position: relative;
    }

    .mobile-header-lang-caret {
        font-size: 0.62rem;
        opacity: 0.72;
    }

    .mobile-header-lang-menu {
        position: absolute;
        top: calc(100% + 0.3rem);
        right: 0;
        min-width: 84px;
        display: none;
        padding: 0.3rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: #1f2937;
        z-index: 21000;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-header-lang.active .mobile-header-lang-menu {
        display: grid;
        gap: 0.25rem;
    }

    .mobile-header-lang-option {
        border: 0;
        min-height: 30px;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.04);
        font-size: 0.74rem;
        font-weight: 600;
    }

    .mobile-header-lang-option.active {
        background: rgba(14, 165, 233, 0.22);
        color: #fff;
    }

    .mobile-header-lang-option:active {
        background: rgba(255, 255, 255, 0.14);
    }

    .header-logo,
    .logo-link {
        display: inline-flex !important;
        align-items: center !important;
    }

    .header-logo {
        order: 1 !important;
        margin-right: auto !important;
        align-self: center;
    }

    .logo-image {
        height: 70px !important;
        width: auto !important;
        max-width: 235px !important;
        object-fit: contain !important;
        display: block !important;
    }

    .header-nav,
    header.header .header-nav,
    .page-body .header .header-nav,
    body.page-body .header .header-nav,
    .header-nav .nav-links,
    header.header .header-nav .nav-links,
    .header-nav .nav-link,
    header.header .header-nav .nav-link,
    .header-nav .nav-dropdown,
    .header-nav .dropdown-menu,
    .header-right,
    header.header .header-right,
    .page-body .header .header-right,
    body.page-body .header .header-right,
    .header-contact-info,
    .header-contact-item,
    .header-language,
    .header-search-wrap,
    .header-social {
        display: none !important;
    }

    .mobile-menu-btn,
    header.header .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: 34px !important;
        height: 34px !important;
        border-radius: 9px !important;
        border: 1px solid rgba(125, 211, 252, 0.85) !important;
        background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 55%, #38bdf8 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 8px 20px rgba(2, 132, 199, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.14) inset !important;
        order: 3 !important;
        margin-left: 0 !important;
        align-self: flex-end;
        margin-bottom: 0.1rem !important;
    }

    .mobile-menu-btn svg,
    header.header .mobile-menu-btn svg {
        width: 15px !important;
        height: 15px !important;
        stroke: #ffffff !important;
        stroke-width: 2.4 !important;
        opacity: 1 !important;
    }

    .mobile-menu-btn:hover,
    .mobile-menu-btn:active {
        background: linear-gradient(135deg, #0369a1 0%, #0284c7 52%, #0ea5e9 100%) !important;
        transform: translateY(-1px);
    }

    .mobile-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -110% !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(90vw, 380px) !important;
        height: 100dvh !important;
        padding: 1rem 1rem 1.25rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        background: radial-gradient(circle at 70% 72%, rgba(56, 189, 248, 0.08) 0%, transparent 38%), #111827 !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: none !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        isolation: isolate;
        transform: none !important;
        transition: right 0.28s ease !important;
        z-index: 20000 !important;
        overflow-y: auto !important;
        pointer-events: none !important;
        opacity: 1 !important;
        text-shadow: none !important;
        -webkit-font-smoothing: antialiased;
        text-rendering: geometricPrecision;
    }

    .mobile-menu.active {
        right: 0 !important;
        pointer-events: auto !important;
    }

    .mobile-menu,
    .mobile-menu * {
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .mobile-menu a {
        margin: 0 !important;
        width: 100% !important;
        min-height: 44px !important;
        padding: 0.8rem 0.875rem !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 0.625rem !important;
        color: #f8fbff !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.01em !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        background: #1f2937 !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }

    .mobile-menu > a {
        position: relative;
        padding-right: 2.2rem !important;
    }

    .mobile-menu > a::after {
        content: '›';
        position: absolute;
        right: 0.85rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(148, 163, 184, 0.95);
        font-size: 1.25rem;
        line-height: 1;
    }

    .mobile-menu-head {
        margin: 0.15rem 0 0.75rem;
        padding: 0.15rem 0.15rem 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .mobile-menu-brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
        width: auto !important;
        border-radius: 0 !important;
    }

    .mobile-menu .mobile-menu-head .mobile-menu-brand,
    .mobile-menu .mobile-menu-head .mobile-menu-brand:hover,
    .mobile-menu .mobile-menu-head .mobile-menu-brand:active {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
        width: auto !important;
        border-radius: 0 !important;
    }

    .mobile-menu-brand-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
        display: block;
    }


    .mobile-menu a:hover,
    .mobile-menu a:active {
        background: #374151 !important;
        border-color: rgba(255, 255, 255, 0.24) !important;
        color: #fff !important;
    }

    .mobile-menu-footer {
        margin-top: auto;
        padding: 0.95rem 0.1rem 0.35rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: grid;
        gap: 0.75rem;
    }

    .mobile-menu-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0.72rem 0.9rem;
        border-radius: 0.7rem;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        background: #374151;
        border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .mobile-menu-contact {
        display: grid;
        gap: 0.45rem;
    }

    .mobile-menu-contact-link {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        min-height: 36px;
        padding: 0.55rem 0.7rem;
        border-radius: 0.55rem;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.86);
        text-decoration: none;
        background: #1f2937;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-menu-contact-icon {
        width: 1.1rem;
        text-align: center;
        opacity: 0.9;
    }

    .mobile-menu-social {
        margin-top: 0.1rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }

    .mobile-menu-social-link {
        width: 1.9rem;
        height: 1.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: #1f2937;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-menu-close {
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        width: 2.2rem;
        height: 2.2rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: #1f2937;
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        line-height: 1;
    }

    @media (max-width: 540px) {
        .mobile-header-cta {
            padding: 0 0.5rem;
            font-size: 0.7rem;
        }

        .mobile-header-lang-btn {
            min-width: 66px;
            font-size: 0.7rem;
            padding: 0 0.45rem;
        }

        .mobile-header-lang-menu {
            min-width: 76px;
        }
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        z-index: 19999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .mobile-nav-backdrop.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    body.mobile-nav-open {
        overflow: hidden;
        touch-action: none;
    }

    /* Keep reference sticky filter bar from overlapping mobile drawer */
    body.mobile-nav-open .ref-nav,
    body.mobile-nav-open .article-nav-sticky {
        display: none !important;
    }
}

/* Mobile-only: reduce repeated oversized top spacing below header */
@media (max-width: 1024px) {
    .about-hero,
    .why-hero,
    .sss-hero,
    .blog-hero,
    .service-hero,
    .proj-hero,
    .detail-hero,
    .article-hero,
    body.page-body.ref-page #ref-hero,
    .ref-page #ref-hero,
    #ref-hero {
        padding-top: clamp(1.25rem, 4.5vw, 2.25rem) !important;
    }

    .contact-main-section,
    .home-testimonials + .contact-main-section {
        padding-top: clamp(1rem, 4vw, 1.75rem) !important;
    }
}

/* Mobile-only overflow safety for page content */
@media (max-width: 1024px) {
    body.page-body {
        overflow-x: hidden !important;
    }

    body.page-body main,
    body.page-body section,
    body.page-body article {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body.page-body main .container {
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        box-sizing: border-box !important;
    }

    body.page-body section .container {
        max-width: 100% !important;
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
        box-sizing: border-box !important;
    }

    body.page-body main p,
    body.page-body main li,
    body.page-body main h1,
    body.page-body main h2,
    body.page-body main h3,
    body.page-body main h4 {
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    body.page-body main p,
    body.page-body main li {
        text-align: justify !important;
        text-justify: auto;
        line-height: 1.65 !important;
        word-spacing: -0.01em !important;
        letter-spacing: normal !important;
        text-align-last: left !important;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    body.page-body main section p,
    body.page-body main section li {
        text-align: justify !important;
        text-justify: auto;
        line-height: 1.65 !important;
        word-spacing: -0.01em !important;
        letter-spacing: normal !important;
        text-align-last: left !important;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    body.page-body section p,
    body.page-body section li {
        text-align: justify !important;
        text-justify: auto;
        line-height: 1.65 !important;
        word-spacing: -0.01em !important;
        letter-spacing: normal !important;
        text-align-last: left !important;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .about-hero .about-hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .about-hero .about-hero-subtitle {
        display: inline-block !important;
        width: auto !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.page-body main img,
    body.page-body main svg,
    body.page-body main video,
    body.page-body main iframe {
        max-width: 100% !important;
        height: auto !important;
    }
}
