/* Ser Döküm — anasayfa layout stilleri (auto-generated) */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --nav-h: 90px;
            --text-dark: #1a1f24;
            --text-light: #f8f9fa;
        }
        html, body {
            width: 100%;
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
            background: var(--site-bg);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            overflow-x: hidden;
        }
    .boxed-wrapper {
        position: relative;
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        background: var(--white);
        box-shadow: 0 0 50px rgba(0,0,0,0.15);
    }

        /* ── HERO ── */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            min-height: 100svh;
            height: 100svh;
            overflow: hidden;
        }
        .video-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: #000;
        }
        .video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        .hero-image-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        .hero-carousel .hero-carousel-track {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            z-index: 0;
        }
        .hero-slide.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }
        .hero-carousel-track--slide .hero-slide {
            transform: translateX(100%);
            opacity: 1;
            visibility: visible;
            transition: transform 0.7s ease;
        }
        .hero-carousel-track--slide .hero-slide.is-active {
            transform: translateX(0);
            z-index: 2;
        }
        .hero-carousel-track--slide .hero-slide.is-active ~ .hero-slide {
            transform: translateX(100%);
        }
        .hero-slide-media {
            position: absolute;
            inset: 0;
            background: #000;
        }
        .hero-slide-media img,
        .hero-slide-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }
        .hero-slide .hero-content {
            position: absolute;
            inset: 0;
            z-index: 5;
        }
        .hero-slide .video-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
        }
        .hero-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 12;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(36, 36, 36,0.35);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .hero-carousel-arrow:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--dark);
        }
        .hero-carousel-arrow svg { width: 20px; height: 20px; }
        .hero-carousel-prev { left: 24px; }
        .hero-carousel-next { right: 24px; }
        .hero-carousel-dots {
            position: absolute;
            bottom: 110px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 12;
            display: flex;
            gap: 10px;
        }
        .hero-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.5);
            background: rgba(255,255,255,0.2);
            padding: 0;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .hero-carousel-dot.is-active,
        .hero-carousel-dot:hover {
            background: var(--primary);
            border-color: var(--primary);
        }
        .video-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(160deg, rgba(36, 36, 36,0.75) 0%, rgba(36, 36, 36,0.18) 38%, rgba(36, 36, 36,0.28) 62%, rgba(36, 36, 36,0.90) 100%),
                linear-gradient(to bottom, rgba(36, 36, 36,0.55) 0%, rgba(36, 36, 36,0.05) 35%, rgba(36, 36, 36,0.38) 72%, rgba(36, 36, 36,0.95) 100%);
            pointer-events: none;
        }

        /* ── NAV (sabit — hero üzerinde şeffaf, hafif kaydırınca kademeli dolu) ── */
        @property --nav-bg-alpha {
            syntax: '<number>';
            inherits: false;
            initial-value: 0;
        }
        nav.nav--home {
            --nav-bg-alpha: 0;
            background-color: rgba(var(--dark-rgb), var(--nav-bg-alpha));
            box-shadow: 0 4px 24px rgba(0, 0, 0, calc(var(--nav-bg-alpha) * 0.2));
            backdrop-filter: blur(calc(var(--nav-bg-alpha) * 12px));
            -webkit-backdrop-filter: blur(calc(var(--nav-bg-alpha) * 12px));
            transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
        }
        nav {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: var(--nav-h);
            display: flex;
            align-items: center;
            padding: 0 40px;
            z-index: 200;
            transition: background-color 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
            background-color: transparent;
            overflow: visible;
            gap: 12px;
        }
        nav.nav--home.is-scrolled {
            --nav-bg-alpha: 1;
        }
        .nav-logo {
            position: relative;
            flex-shrink: 0;
            margin-right: auto;
            height: 44px;
            width: 220px;
            display: flex;
            align-items: center;
        }
        .nav-logo a {
            display: block;
            position: relative;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }
        .logo-emblem, .logo-full {
            position: absolute;
            left: 0;
            height: 44px;
            object-fit: contain;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .logo-emblem { opacity: 1; transform: translateY(0); }
        .logo-full   { opacity: 0; transform: translateY(10px); pointer-events: none; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
            flex: 1 1 auto;
            min-width: 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            color: rgba(255,255,255,0.9);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            white-space: nowrap;
            transition: color 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        .nav-links a:hover,
        .nav-links li.active a { color: var(--primary); }

        /* ── NAV DROPDOWN (masaüstü) ── */
        .has-dropdown { position: relative; }

        /* Alt çizgi yalnızca üst menü linklerinde */
        .nav-links > li > a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--primary);
            transition: width 0.3s ease, background-color 0.3s ease;
        }
        .nav-links > li > a:hover::after,
        .nav-links > li.active > a::after { width: 100%; }

        .dropdown-menu-nav {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            list-style: none;
            padding: 0;
            min-width: 220px;
            border-radius: 8px;
            border: 1px solid rgba(36, 36, 36, 0.1);
            box-shadow: none;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            transition: opacity 0.22s ease, visibility 0.22s ease;
            z-index: 1000;
        }
        .has-dropdown:hover > .dropdown-menu-nav {
            opacity: 1;
            visibility: visible;
        }
        .dropdown-menu-nav li {
            border-bottom: 1px solid rgba(36, 36, 36, 0.08);
        }
        .dropdown-menu-nav li:last-child {
            border-bottom: none;
        }
        .dropdown-menu-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            color: rgba(36, 36, 36, 0.82) !important;
            font-size: 13px;
            font-weight: 500 !important;
            letter-spacing: 0.02em !important;
            text-transform: none !important;
            text-decoration: none !important;
            transition: background 0.2s ease, color 0.2s ease !important;
        }
        .dropdown-menu-nav li a::after {
            display: none !important;
            content: none !important;
        }
        .dropdown-menu-nav li a .menu-item-icon {
            font-size: 14px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .dropdown-menu-nav li a:hover {
            background: rgba(36, 36, 36, 0.03);
            color: var(--dark) !important;
        }

        .nav-divider {
            width: 1px; height: 28px;
            background: rgba(255,255,255,0.25);
            margin: 0 24px;
            transition: background 0.4s ease;
        }
        nav.nav--menu-left .nav-logo { margin-right: 0; }
        nav.nav--menu-left .nav-links {
            flex: 0 1 auto;
            justify-content: flex-start;
            margin-left: 20px;
        }
        nav.nav--menu-left .nav-divider { margin-left: auto; }

        nav.nav--menu-center .nav-logo { margin-right: auto; }
        nav.nav--menu-center .nav-links {
            flex: 1 1 auto;
            justify-content: center;
        }

        nav.nav--menu-right .nav-logo { margin-right: 0; }
        nav.nav--menu-right .nav-links {
            flex: 1 1 auto;
            justify-content: flex-end;
            margin-right: 0;
        }
        nav.nav--menu-right .nav-actions { margin-left: 0; }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 0 0 auto;
            margin-left: auto;
        }
        .nav-actions button {
            background: none; border: none; cursor: pointer;
            color: rgba(255,255,255,0.9);
            display: flex; align-items: center; gap: 6px;
            font-size: 13px; font-weight: 600;
            transition: color 0.3s ease;
            padding: 4px;
        }
        .nav-actions button:hover { color: var(--primary); }
        .nav-actions svg { width: 18px; height: 18px; }
        .nav-tahsilat {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none;
            font-size: 11px; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            padding: 8px 16px;
            border: 1.5px solid rgba(255,255,255,0.7);
            color: var(--white);
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .nav-tahsilat:hover { background: var(--white); color: var(--dark); }

        .menu-item-icon {
            font-size: 1.05em;
            line-height: 1;
            flex-shrink: 0;
        }

        /* ── HEADER ARAMA ── */
        nav {
            transition: background-color 0.35s ease, box-shadow 0.35s ease;
        }
        .nav-logo,
        .nav-links,
        .nav-divider,
        .nav-actions {
            transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
        }
        nav.nav-search-active .nav-logo,
        nav.nav-search-active .nav-links,
        nav.nav-search-active .nav-divider,
        nav.nav-search-active .nav-actions {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(-6px);
        }
        nav.nav-search-active {
            background-color: var(--white) !important;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        }
        .nav-search-layer {
            display: flex;
            position: absolute;
            inset: 0 40px;
            align-items: center;
            gap: 12px;
            z-index: 5;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(10px);
            transition:
                opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.32s;
        }
        nav.nav-search-active .nav-search-layer,
        nav.nav-search-closing .nav-search-layer {
            visibility: visible;
        }
        nav.nav-search-active .nav-search-layer {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }
        nav.nav-search-closing .nav-search-layer {
            opacity: 0;
            pointer-events: none;
            transform: translateY(8px);
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 14px;
        }
        .nav-search-input {
            flex: 1;
            min-width: 0;
            border: none;
            border-bottom: 2px solid rgba(36, 36, 36,0.12);
            background: transparent;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 4px;
            outline: none;
            color: var(--text-dark);
            opacity: 0;
            transform: translateX(16px);
            transition:
                opacity 0.34s ease 0.08s,
                transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
                border-bottom-color 0.2s ease;
        }
        nav.nav-search-active .nav-search-input {
            opacity: 1;
            transform: translateX(0);
        }
        nav.nav-search-closing .nav-search-input {
            opacity: 0;
            transform: translateX(12px);
            transition-delay: 0s;
        }
        .nav-search-input::placeholder { color: rgba(36, 36, 36,0.4); }
        .nav-search-input:focus { border-bottom-color: var(--primary); }
        .nav-search-close,
        .nav-search-submit {
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px;
            flex-shrink: 0;
            opacity: 0;
            transform: scale(0.85);
            transition:
                opacity 0.28s ease 0.14s,
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.14s,
                color 0.2s ease;
        }
        nav.nav-search-active .nav-search-close,
        nav.nav-search-active .nav-search-submit {
            opacity: 1;
            transform: scale(1);
        }
        nav.nav-search-closing .nav-search-close,
        nav.nav-search-closing .nav-search-submit {
            opacity: 0;
            transform: scale(0.9);
            transition-delay: 0s;
        }
        .nav-search-close:hover,
        .nav-search-submit:hover { color: var(--primary); }
        .nav-search-close svg,
        .nav-search-submit svg { width: 20px; height: 20px; }
        .nav-search-submit-text {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--primary);
            white-space: nowrap;
        }
        @media (prefers-reduced-motion: reduce) {
            .nav-search-layer,
            .nav-search-input,
            .nav-search-close,
            .nav-search-submit,
            .nav-logo,
            .nav-links,
            .nav-divider,
            .nav-actions {
                transition: none !important;
            }
        }

        /* ── HERO CONTENT ── */
        .hero-content {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: var(--nav-h);
            pointer-events: none;
        }

        /* ── HERO SOL KENAR (HIZLI TEKLİF) ── */
        .hero-side {
            position: absolute;
            left: 0; top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            transform-origin: left center;
            z-index: 6;
            padding-left: 50px;
            pointer-events: auto;
        }
        .hero-quick-btn {
            display: inline-block;
            background: var(--primary);
            color: var(--dark);
            padding: 12px 24px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            white-space: nowrap;
            border: none;
            transition: all 0.3s ease;
        }
        .hero-quick-btn:hover { background: #b8962f; color: #fff; }

        /* ── HERO SOSYAL İKONLAR (SOL DIŞ) ── */
        .hero-socials {
            position: absolute;
            left: 24px; top: 50%;
            transform: translateY(-50%);
            z-index: 6;
            display: flex;
            flex-direction: column;
            gap: 12px;
            list-style: none;
            margin: 0; padding: 0;
            pointer-events: auto;
        }
        .hero-socials li a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.18);
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .hero-socials li a:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }
        .hero-socials i { font-size: 16px; }

        /* ── HERO SCROLL BUTONU ── */
        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 6;
            background: none;
            border: 2px solid rgba(255,255,255,0.4);
            color: rgba(255,255,255,0.85);
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: auto;
        }
        .hero-scroll:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }
        .hero-scroll svg { width: 18px; height: 18px; }

        /* ── HERO TYPOGRAPHY ── */

.hero-eyebrow {
            font-weight: 600;
            letter-spacing: 0.4em; color: var(--primary);
            text-transform: uppercase; margin-bottom: 16px; opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.01em; line-height: 1.2;
            text-align: center; text-transform: uppercase;
            text-shadow: 0 4px 50px rgba(0,0,0,0.6);
        }
        .hero-subtitle {
            font-weight: 400;
            letter-spacing: 0.3em; color: rgba(255,255,255,0.85);
            text-transform: uppercase; margin-top: 24px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero-cta { margin-top: 60px; pointer-events: auto; }
        .hero-cta a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 56px;
            border: 1px solid rgba(255,255,255,0.6);
            color: var(--white); text-decoration: none;
            font-size: 12px; font-weight: 600;
            letter-spacing: 0.25em; text-transform: uppercase;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(4px);
        }
        .hero-cta a:hover {
            background: var(--white);
            border-color: var(--white);
            color: var(--dark);
        }
        .sidebar-left {
            position: absolute;
            left: 0; top: 50%;
            transform: translateY(-50%);
            z-index: 8;
            display: flex; flex-direction: column; align-items: center;
            padding-left: 21px;
        }
        .sidebar-vertical-text {
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            font-size: 11px; font-weight: 500;
            letter-spacing: 0.4em; color: rgba(255,255,255,0.6);
            text-transform: uppercase; margin-bottom: 40px;
        }
        .sidebar-socials {
            display: flex; flex-direction: column;
            align-items: center; gap: 14px; list-style: none;
        }
        .sidebar-socials li a {
            display: flex; align-items: center; justify-content: center;
            width: 38px; height: 38px; border-radius: 50%;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8); text-decoration: none;
            transition: all 0.3s ease;
        }
        .sidebar-socials li a:hover {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .sidebar-socials svg { width: 16px; height: 16px; }
        .scroll-down {
            position: absolute;
            bottom: 40px; right: 40px; z-index: 9;
            width: 48px; height: 48px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(4px);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; color: rgba(255,255,255,0.8);
            transition: all 0.3s ease;
            animation: bob 2.5s ease-in-out infinite;
        }
        .scroll-down:hover {
            border-color: var(--primary);
            background: rgba(200,168,75,0.2);
            color: var(--white);
        }
        .scroll-down svg { width: 20px; height: 20px; }
        @keyframes bob {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(8px); }
        }

        /* ── KATEGORİLER ── */
        .categories-section {
            position: relative;
            background: #ffffff;
            padding-bottom: 100px;
            overflow: hidden;
        }
        .categories-section::before {
            content: '';
            position: absolute;
            top: 60px; right: -180px;
            width: 520px; height: 520px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .categories-section::after {
            content: '';
            position: absolute;
            bottom: -100px; left: -120px;
            width: 440px; height: 440px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(36, 36, 36,0.04) 0%, transparent 70%);
            pointer-events: none;
        }
        .categories-inner {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }
        .categories-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 60px;
        }
        .categories-eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
            position: relative;
            padding: 0 24px;
        }
        .categories-eyebrow::before, .categories-eyebrow::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 36px; height: 1px;
            background: var(--primary);
            opacity: 0.5;
        }
        .categories-eyebrow::before { right: 100%; }
        .categories-eyebrow::after  { left:  100%; }
        .categories-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
            font-size: clamp(30px, 3.5vw, 52px);
            color: var(--dark);
            letter-spacing: -0.01em;
            line-height: 1;
            text-transform: uppercase;
        }
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .cat-card {
            position: relative;
            background: #ffffff;
            border: 1px solid rgba(36, 36, 36,0.09);
            border-radius: 6px;
            padding: 44px 28px 36px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            overflow: hidden;
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.35s ease;
            box-shadow: 0 2px 24px rgba(36, 36, 36,0.07);
        }
        .cat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--dark), var(--primary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        }
        .cat-card-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(36, 36, 36,0.02) 0%, rgba(200,168,75,0.04) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }
        .cat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 64px rgba(36, 36, 36,0.15);
            border-color: rgba(36, 36, 36,0.16);
        }
        .cat-card:hover::before { transform: scaleX(1); }
        .cat-card:hover .cat-card-bg { opacity: 1; }
        .cat-number {
            position: absolute;
            top: 12px; right: 18px;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
            font-size: 80px;
            line-height: 1;
            color: rgba(36, 36, 36,0.04);
            letter-spacing: -0.02em;
            transition: color 0.35s ease;
            user-select: none;
            pointer-events: none;
        }
        .cat-card:hover .cat-number { color: rgba(200,168,75,0.10); }
        .cat-icon-wrap {
            position: relative;
            z-index: 1;
            width: 72px; height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(36, 36, 36,0.07) 0%, rgba(200,168,75,0.09) 100%);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 26px;
            transition: background 0.35s ease, transform 0.35s ease;
            flex-shrink: 0;
        }
        .cat-card:hover .cat-icon-wrap {
            background: linear-gradient(135deg, var(--dark) 0%, #2e2e2e 100%);
            transform: scale(1.08);
        }
        .cat-icon-wrap svg {
            width: 36px; height: 36px;
            fill: var(--dark);
            transition: fill 0.35s ease;
        }
        .cat-card:hover .cat-icon-wrap svg { fill: var(--white); }
        .cat-font-icon {
            font-size: 36px;
            color: var(--dark);
            transition: color 0.35s ease, transform 0.35s ease;
        }
        .cat-card:hover .cat-icon-wrap .cat-font-icon { color: var(--white); }
        .cat-img-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
            transition: filter 0.35s ease, transform 0.35s ease;
        }
        .cat-card:hover .cat-icon-wrap .cat-img-icon {
            filter: brightness(0) invert(1) !important;
        }
        .cat-divider {
            position: relative;
            z-index: 1;
            width: 32px; height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            margin-bottom: 14px;
            transition: width 0.35s ease;
        }
        .cat-card:hover .cat-divider { width: 56px; }
        .cat-name {
            position: relative;
            z-index: 1;
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 21px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.15;
        }
        .cat-tagline {
            position: relative;
            z-index: 1;
            font-size: 12px;
            font-weight: 500;
            color: rgba(36, 36, 36,0.52);
            line-height: 1.65;
            letter-spacing: 0.01em;
            margin-bottom: 30px;
            flex-grow: 1;
        }
        .cat-link {
            position: relative;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--primary);
            transition: gap 0.3s ease;
        }
        .cat-link svg {
            width: 14px; height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }
        .cat-card:hover .cat-link { gap: 14px; }
        .cat-card:hover .cat-link svg { transform: translateX(4px); }

        /* ── ÖNE ÇIKAN ÜRÜNLER ── */
        .products-section {
            position: relative;
            background: #f4f5f7;
            padding: 0 0 90px;
            overflow: hidden;
        }
        .products-inner {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }
        .products-header {
            text-align: center;
            margin-bottom: 48px;
            padding-top: 80px;
        }
        .products-eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 14px;
            position: relative;
            padding: 0 24px;
        }
        .products-eyebrow::before, .products-eyebrow::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 36px;
            height: 1px;
            background: var(--primary);
            opacity: 0.5;
        }
        .products-eyebrow::before { right: 100%; }
        .products-eyebrow::after { left: 100%; }
        .products-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 900;
            font-size: clamp(30px, 3.5vw, 52px);
            color: var(--dark);
            letter-spacing: -0.01em;
            line-height: 1;
            text-transform: uppercase;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .product-card {
            background: #fff;
            border: 1px solid rgba(36, 36, 36,0.08);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(36, 36, 36,0.12);
        }
        .product-card-img {
            width: 100%;
            aspect-ratio: 4/3;
            background: #f8f8f8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .product-card-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 12px;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-card-img img { transform: scale(1.05); }
        .product-card-img-placeholder {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 64px;
            color: rgba(36, 36, 36,0.1);
            font-weight: 900;
        }
        .product-card-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-card-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .product-card-desc {
            font-size: 12.5px;
            color: rgba(36, 36, 36,0.6);
            line-height: 1.55;
            margin-bottom: 12px;
            flex: 1;
        }
        .product-card-link {
            font-size: 11px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .product-card:hover .product-card-link { letter-spacing: 0.15em; }
        .products-footer-cta {
            text-align: center;
            margin-top: 40px;
        }
        .products-footer-cta a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--dark);
            text-decoration: none;
            padding: 12px 28px;
            border: 1.5px solid rgba(36, 36, 36,0.18);
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .products-footer-cta a:hover {
            background: var(--dark);
            border-color: var(--dark);
            color: var(--white);
        }
        @media (max-width: 1100px) {
            .products-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .products-inner { padding: 0 24px; }
            .products-grid { grid-template-columns: 1fr; }
        }

        /* ── FOOTER ── */
        .site-footer { background: var(--dark); color: rgba(255,255,255,0.75); font-family: 'Inter', sans-serif; }
        .footer-top { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
        .footer-map { position: relative; overflow: hidden; }
        .footer-map iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(20%) contrast(1.05); }
        .footer-contact { padding: 60px 70px; display: flex; flex-direction: column; justify-content: center; background: #242424; }
        .footer-contact-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
        .footer-contact-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(28px, 3vw, 44px); color: var(--white); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; margin-bottom: 40px; }
        .footer-info-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
        .footer-info-item { display: flex; align-items: flex-start; gap: 16px; }
        .footer-info-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s ease; }
        .footer-info-item:hover .footer-info-icon { background: rgba(200,168,75,0.25); }
        .footer-info-icon svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
        .footer-info-text { display: flex; flex-direction: column; gap: 3px; }
        .footer-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); opacity: 0.8; }
        .footer-info-value { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.5; }
        .footer-info-value a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s ease; }
        .footer-info-value a:hover { color: var(--primary); }
        .footer-bottom { background: rgba(0,0,0,0.25); padding: 20px 70px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
        .footer-bottom-copy { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; flex-shrink: 0; }
        .footer-nav-links {
            display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px;
            list-style: none; margin: 0; padding: 0;
        }
        .footer-nav-links a {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 12px; color: rgba(255,255,255,0.55); text-decoration: none;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .footer-nav-links a:hover { color: var(--primary); }
        .footer-bottom-inner {
            display: flex; align-items: center; justify-content: flex-start;
            gap: 28px; flex: 1 1 auto; min-width: 0;
        }
        .footer-bottom-socials { display: flex; align-items: center; gap: 12px; list-style: none; flex: 0 0 auto; margin: 0; padding: 0; }
        .footer-bottom-socials li a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.3s ease; }
        .footer-bottom-socials li a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }
        .footer-bottom-socials svg { width: 14px; height: 14px; }

        /* ── MOBİL NAV ── */
        .nav-actions .nav-mobile-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 8px;
            background: rgba(255,255,255,0.06);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            padding: 0;
            flex-shrink: 0;
        }
        .nav-mobile-toggle span {
            display: block;
            width: 18px;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .nav-mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(10, 9, 24, 0.55);
            z-index: 500;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .nav-mobile-overlay.is-open {
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: min(88vw, 340px);
            height: 100vh;
            height: 100dvh;
            background: #fff;
            z-index: 501;
            transform: translateX(100%);
            transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            box-shadow: -12px 0 40px rgba(0,0,0,0.18);
        }
        .nav-mobile-panel.is-open {
            transform: translateX(0);
        }
        .nav-mobile-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid rgba(36, 36, 36,0.08);
            flex-shrink: 0;
        }
        .nav-mobile-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--dark);
        }
        .nav-mobile-close {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 8px;
            background: rgba(36, 36, 36,0.06);
            color: var(--dark);
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
        }
        .nav-mobile-links {
            list-style: none;
            margin: 0;
            padding: 12px 0;
            overflow-y: auto;
            flex: 1 1 auto;
        }
        .nav-mobile-links > li {
            border-bottom: 1px solid rgba(36, 36, 36,0.06);
        }
        .nav-mobile-links > li > a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            color: var(--dark) !important;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .nav-mobile-links > li > a::after {
            display: none !important;
        }
        .nav-mobile-links .has-dropdown > a::after {
            content: '';
            display: block !important;
            width: 8px;
            height: 8px;
            margin-left: auto;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            transition: transform 0.2s ease;
            position: static;
            background: none;
        }
        .nav-mobile-links .has-dropdown.open > a::after {
            transform: rotate(-135deg);
        }
        .nav-mobile-links .has-dropdown.open > a {
            color: var(--primary) !important;
        }
        .nav-mobile-links .dropdown-menu-nav {
            position: static;
            left: auto;
            transform: none !important;
            opacity: 1;
            visibility: hidden;
            max-height: 0;
            overflow: hidden;
            box-shadow: none;
            border-radius: 0;
            min-width: 0;
            padding: 0;
            margin: 0;
            border: none;
            background: transparent;
            transition: max-height 0.28s ease, visibility 0.28s ease;
        }
        .nav-mobile-links .has-dropdown:hover > .dropdown-menu-nav,
        .nav-mobile-links .has-dropdown.open > .dropdown-menu-nav {
            transform: none !important;
        }
        .nav-mobile-links .has-dropdown.open > .dropdown-menu-nav {
            visibility: visible;
            max-height: 360px;
        }
        .nav-mobile-links .dropdown-menu-nav li {
            border-bottom: 1px solid rgba(36, 36, 36, 0.08);
        }
        .nav-mobile-links .dropdown-menu-nav li:last-child {
            border-bottom: none;
        }
        .nav-mobile-links .dropdown-menu-nav li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 20px 13px 28px;
            margin: 0;
            border: none;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            color: rgba(36, 36, 36, 0.78) !important;
            font-size: 14px;
            font-weight: 500 !important;
            text-transform: none !important;
            letter-spacing: 0.01em !important;
            text-decoration: none !important;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .nav-mobile-links .dropdown-menu-nav li a::after {
            display: none !important;
            content: none !important;
        }
        .nav-mobile-links .dropdown-menu-nav li a .menu-item-icon {
            font-size: 13px;
            color: var(--primary);
            flex-shrink: 0;
        }
        .nav-mobile-links .dropdown-menu-nav li a:hover,
        .nav-mobile-links .dropdown-menu-nav li a:active {
            background: rgba(36, 36, 36, 0.03);
            color: var(--dark) !important;
        }
        .nav-mobile-footer {
            padding: 16px 20px 24px;
            border-top: 1px solid rgba(36, 36, 36,0.08);
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-mobile-footer .nav-tahsilat {
            display: flex;
            justify-content: center;
            width: 100%;
            border-color: var(--dark);
            color: var(--dark);
            padding: 12px 16px;
        }
        body.nav-mobile-open {
            overflow: hidden;
        }

        @media (max-width: 991px) {
            :root { --nav-h: 72px; }

            nav {
                padding: 0 16px;
                justify-content: space-between;
            }
            .nav-logo {
                width: 132px;
                height: 36px;
                margin-right: 0 !important;
            }
            .logo-emblem,
            .logo-full {
                height: 36px;
            }
            .nav-links,
            .nav-divider {
                display: none !important;
            }
            .nav-actions {
                gap: 10px;
                margin-left: auto !important;
                margin-right: 0;
                justify-content: flex-end;
                flex-shrink: 0;
            }
            .nav-actions > button:not(.nav-search-toggle):not(.nav-mobile-toggle),
            .nav-actions > .nav-tahsilat {
                display: none !important;
            }
            .nav-search-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 42px;
                height: 42px;
                padding: 0;
            }
            .nav-actions .nav-mobile-toggle {
                display: inline-flex;
                color: rgba(255,255,255,0.95);
            }
            .nav-search-layer {
                inset: 0 16px;
            }
            .nav-search-submit-text {
                display: none;
            }

            .footer-top {
                display: block;
                min-height: 0;
                height: auto;
            }
            .footer-map {
                display: none;
            }
            .footer-contact {
                padding: 36px 24px;
                text-align: center;
                align-items: center;
            }
            .footer-contact-eyebrow,
            .footer-contact-title {
                text-align: center;
            }
            .footer-info-list {
                align-items: center;
                width: 100%;
            }
            .footer-info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 12px;
            }
            .footer-info-text {
                align-items: center;
            }
            .footer-info-label,
            .footer-info-value {
                text-align: center;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                gap: 18px;
                padding: 22px 24px;
                text-align: center;
            }
            .footer-bottom-inner {
                flex-direction: column;
                align-items: center;
                gap: 14px;
                width: 100%;
            }
            .footer-bottom-copy {
                width: 100%;
                text-align: center;
            }
            .footer-nav-links {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                width: 100%;
            }
            .footer-nav-links li {
                width: auto;
                text-align: center;
            }
            .footer-nav-links a {
                justify-content: center;
                white-space: normal;
                font-size: 13px;
                line-height: 1.4;
                text-align: center;
            }
            .footer-bottom-socials {
                align-self: center;
                justify-content: center;
            }
        }
        /* ── ANASAYFA MOBİL ── */
        @media (max-width: 991px) {
            nav {
                background-color: rgba(var(--dark-rgb), 0.92) !important;
                backdrop-filter: blur(10px);
                box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            }
            .hero {
                aspect-ratio: auto;
                min-height: 100vh;
                min-height: 100svh;
                height: 100svh;
            }
            .sidebar-left {
                display: none;
            }
            .scroll-down {
                right: 20px;
                bottom: 24px;
            }
            .hero-subtitle {
                letter-spacing: 0.18em;
            }
            .hero-cta {
                margin-top: 36px;
            }
            .hero-cta a {
                padding: 14px 36px;
            }

            .categories-inner,
            .products-inner {
                padding: 0 20px;
            }
            .categories-header {
                padding-top: 48px;
                margin-bottom: 28px;
            }
            .categories-eyebrow::before,
            .categories-eyebrow::after {
                width: 24px;
            }
            .categories-grid {
                display: flex;
                overflow-x: auto;
                gap: 16px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding: 2px 2px 18px;
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
                scrollbar-width: none;
            }
            .categories-grid::-webkit-scrollbar {
                display: none;
            }
            .cat-card {
                flex: 0 0 min(82vw, 280px);
                scroll-snap-align: start;
                padding: 32px 22px 28px;
            }
            .cat-number {
                font-size: 56px;
            }
            .products-header {
                padding-top: 56px;
            }
        }

        @media (max-width: 640px) {
            .categories-title,
            .products-title {
                font-size: 28px;
            }
            .cat-card {
                flex-basis: 86vw;
            }
        }
        .site-footer--main {
    background: #111111;
    color: rgba(255,255,255,0.7);
}
.site-footer--main .footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-footer--main .footer-col {
    padding: 64px 48px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.site-footer--main .footer-col:last-child { border-right: none; }
.site-footer--main .footer-brand-logo {
    height: 44px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}
.site-footer--main .footer-brand-desc {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin-bottom: 32px;
}
.site-footer--main .footer-socials {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer--main .footer-socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}
.site-footer--main .footer-socials li a:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.site-footer--main .footer-socials svg { width: 15px; height: 15px; }
.site-footer--main .footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(246,187,17,0.2);
}
.site-footer--main .footer-nav-list,
.site-footer--main .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}
.site-footer--main .footer-nav-list li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.site-footer--main .footer-nav-list li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.site-footer--main .footer-nav-list li a:hover {
    color: var(--primary);
}
.site-footer--main .footer-nav-list li a:hover::before { opacity: 1; }
.site-footer--main .footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.site-footer--main .footer-contact-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.site-footer--main .footer-contact-value {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
.site-footer--main .footer-contact-value a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer--main .footer-contact-value a:hover { color: var(--primary); }
.site-footer--main .footer-bottom {
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: transparent;
}
.site-footer--main .footer-bottom-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
    margin: 0;
}
.site-footer--main .footer-bottom-right {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
    margin: 0;
}
@media (max-width: 1100px) {
    .site-footer--main .footer-main { grid-template-columns: 1fr 1fr; }
    .site-footer--main .footer-col:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
    .site-footer--main .footer-main { grid-template-columns: 1fr; }
    .site-footer--main .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 40px 24px; }
    .site-footer--main .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
}

/* home.blade.php extra */
.home-about-section {
        position: relative;
        background: linear-gradient(180deg, #f7f7fa 0%, #ffffff 100%);
        padding: 80px 0 90px;
        overflow: hidden;
    }

    .home-about-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -140px;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(200, 168, 75, 0.07) 0%, transparent 70%);
        pointer-events: none;
    }

    .home-about-inner {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .home-about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .home-about-eyebrow {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 14px;
        position: relative;
        padding: 0 24px;
    }

    .home-about-eyebrow::before,
    .home-about-eyebrow::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 36px;
        height: 1px;
        background: var(--primary);
        opacity: 0.5;
    }

    .home-about-eyebrow::before { right: 100%; }
    .home-about-eyebrow::after { left: 100%; }

    .home-about-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 3.2vw, 48px);
        color: var(--dark);
        letter-spacing: -0.01em;
        line-height: 1.05;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .home-about-lead {
        font-size: 16px;
        line-height: 1.8;
        color: rgba(36, 36, 36, 0.82);
        margin-bottom: 14px;
    }

    .home-about-text {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(36, 36, 36, 0.68);
        margin-bottom: 28px;
    }

    .home-about-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 30px;
    }

    .home-about-stat {
        background: linear-gradient(135deg, rgb(58 58 58) 0%, rgb(135 135 135) 50%, rgb(58 58 58) 100%);
        color: #fff;
        border-radius: 12px;
        padding: 20px 16px;
        text-align: center;
    }

    .home-about-stat strong {
        display: block;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 28px;
        font-weight: 900;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 6px;
    }

    .home-about-stat span {
        font-size: 11px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.78);
    }

    .home-about-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--dark);
        text-decoration: none;
        border-bottom: 2px solid var(--primary);
        padding-bottom: 4px;
        transition: color 0.2s ease;
    }

    .home-about-link svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s ease;
    }

    .home-about-link:hover {
        color: var(--primary);
    }

    .home-about-link:hover svg {
        transform: translateX(4px);
    }

    .home-about-visual {
        display: grid;
        gap: 16px;
    }

    .home-about-main {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 16 / 10;
        background: #ececf1;
        box-shadow: 0 20px 48px rgba(36, 36, 36, 0.12);
    }

    .home-about-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .home-about-tag {
        position: absolute;
        left: 16px;
        bottom: 16px;
        padding: 6px 12px;
        border-radius: 999px;
        background: rgba(200, 168, 75, 0.95);
        color: var(--dark);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .home-about-side {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .home-about-thumb {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        background: #ececf1;
    }

    .home-about-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease;
    }

    .home-about-thumb:hover img {
        transform: scale(1.04);
    }

    .home-about-thumb span {
        position: absolute;
        left: 12px;
        bottom: 12px;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(36, 36, 36, 0.82);
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    @media (max-width: 1024px) {
        .home-about-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 768px) {
        .home-about-section {
            padding: 56px 0 64px;
        }

        .home-about-inner {
            padding: 0 25px;
        }

        .home-about-stats {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }

        .home-about-stat {
            padding: 16px 10px;
        }

        .home-about-stat strong {
            font-size: 22px;
        }
    }

    .referans-home-section {
        position: relative;
        background: #fff;
        padding: 0 0 90px;
        overflow: visible;
    }

    .referans-home-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        overflow: visible;
    }

    .referans-home-header {
        text-align: center;
        margin-bottom: 40px;
        padding-top: 80px;
    }

    .referans-home-eyebrow {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--primary);
        margin-bottom: 14px;
        position: relative;
        padding: 0 24px;
    }

    .referans-home-eyebrow::before,
    .referans-home-eyebrow::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 36px;
        height: 1px;
        background: var(--primary);
        opacity: 0.5;
    }

    .referans-home-eyebrow::before { right: 100%; }
    .referans-home-eyebrow::after { left: 100%; }

    .referans-home-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 3.5vw, 52px);
        color: var(--dark);
        letter-spacing: -0.01em;
        line-height: 1;
        text-transform: uppercase;
    }

    .referans-home-footer {
        text-align: center;
        margin-top: 32px;
    }

    .referans-home-footer a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--dark);
        text-decoration: none;
        border-bottom: 2px solid var(--primary);
        padding-bottom: 4px;
        transition: color 0.2s ease;
    }

    .referans-home-footer a:hover {
        color: var(--primary);
    }

    @media (max-width: 768px) {
        .referans-home-inner {
            padding: 0 25px;
        }

        .referans-home-header {
            padding-top: 50px;
            margin-bottom: 28px;
        }
    }

/* referanslar masonry */
.referans-masonry {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
        padding: 8px 0 48px;
    }

    .referans-masonry--home {
        padding-bottom: 24px;
    }

    .referans-masonry-col {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .referans-masonry-card {
        width: 100%;
    }

    .referans-masonry-card-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 18px;
        background: #fff;
        border: 1px solid rgba(36, 36, 36, 0.08);
        border-radius: 12px;
        box-shadow: 0 2px 14px rgba(36, 36, 36, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        overflow: hidden;
        position: relative;
    }

    .referans-masonry-card-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(246, 187, 17, 0.04) 0%, transparent 55%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .referans-masonry-card:hover .referans-masonry-card-inner {
        transform: translateY(-2px);
        border-color: rgba(246, 187, 17, 0.4);
        box-shadow: 0 10px 28px rgba(36, 36, 36, 0.09);
    }

    .referans-masonry-card:hover .referans-masonry-card-inner::before {
        opacity: 1;
    }

    .referans-masonry-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        filter: grayscale(15%);
        opacity: 0.94;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .referans-masonry-card:hover .referans-masonry-img {
        filter: grayscale(0%);
        opacity: 1;
    }

    .referans-masonry-fallback {
        display: block;
        min-height: 72px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(36, 36, 36, 0.55);
        text-align: center;
        line-height: 1.3;
    }

    @media (max-width: 900px) {
        .referans-masonry {
            flex-wrap: wrap;
            gap: 14px;
        }

        .referans-masonry-col {
            flex: 0 0 calc(33.333% - 10px);
            gap: 14px;
        }
    }

    @media (max-width: 560px) {
        .referans-masonry-col {
            flex: 0 0 calc(50% - 7px);
        }
    }
