:root {
    --color-primary: #ffffff;
    /* 60% */
    --color-secondary: #1a1a1a;
    /* 30% */
    --color-accent: #bd1e2c;
    /* 10% */
    --color-accent-hover: rgb(170, 42, 57);
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-primary);
    color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--color-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    overflow: hidden;
}

.alt-bg {
    background-color: #f5f5f5;
    /* Slight variation for white dominance */
}

.highlight {
    color: var(--color-accent);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: table;
    /* Ensures underline matches text width */
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    /* Match full text width */
    height: 4px;
    background-color: var(--color-accent);
    transform: scaleX(0.5);
    /* Style choice: smaller underline or full? I'll stick to full width of text or simple. Previous was 60px hardcoded. Let's make it look nice */
    width: 60px;
    /* Keeping original design intent but centered */
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 1000;
    transition: all var(--transition-speed);
    color: white;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.navbar .logo {
    color: white;
}

.navbar .nav-links a {
    color: white;
}

.navbar.scrolled {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 25px 50px;
    color: var(--color-secondary);
}

.navbar.scrolled .logo {
    color: var(--color-secondary);
}

.navbar.scrolled .nav-links a {
    color: var(--color-secondary);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    transition: all var(--transition-speed);
}

.navbar.scrolled .logo-text {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

/* Footer Logo */
.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav-links li:not(:last-child)::after {
    content: '/';
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.navbar.scrolled .nav-links li:not(:last-child)::after {
    color: #ff0000;
    /* Red color as requested */
    font-weight: 500;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ═══════════════════════════════════════════
   Hamburger – Animasyonlu 3 Çizgi
═══════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.ham-line {
    display: block;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.ham-line:nth-child(1) {
    width: 26px;
}

.ham-line:nth-child(2) {
    width: 20px;
}

.ham-line:nth-child(3) {
    width: 26px;
}

/* Aktif (açık) durumu – X ikonuna dönüşm */
.hamburger.is-active .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 26px;
}

.hamburger.is-active .ham-line:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.is-active .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 26px;
}

/* ═══════════════════════════════════════════
   Mobil Menü Overlay (arka plan karartıcı)
═══════════════════════════════════════════ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ═══════════════════════════════════════════
   Mobil Menü – Premium Kahve Tasarımı
═══════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 90vw);
    height: 100dvh;
    height: 100vh;
    background: #0a0a0a;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: right;
}

.mobile-menu.active {
    right: 0;
}

/* Dekoratif daireler */
.mm-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mm-deco-circle:first-of-type {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -80px;
}

.mm-deco-circle--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.07) 0%, transparent 70%);
    bottom: 80px;
    left: -50px;
}

/* Üst Header: Logo + Kapat */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.mm-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mm-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
}

.mm-logo-sub {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.mm-close {
    width: 40px;
    height: 40px;
    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.8);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}

.mm-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Navigasyon linkleri */
.mm-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mm-nav::-webkit-scrollbar {
    display: none;
}

.mm-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mm-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Sıralı animasyon geçiş üstüne kapanma */
.mobile-menu.active .mm-nav-item:nth-child(1) {
    transition-delay: 0.07s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mm-nav-item:nth-child(2) {
    transition-delay: 0.12s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mm-nav-item:nth-child(3) {
    transition-delay: 0.17s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mm-nav-item:nth-child(4) {
    transition-delay: 0.22s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mm-nav-item:nth-child(5) {
    transition-delay: 0.27s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active .mm-nav-item:nth-child(6) {
    transition-delay: 0.32s;
    transform: translateX(0);
    opacity: 1;
}

.mm-nav-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 32px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mm-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.mm-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    padding-left: 40px;
}

.mm-nav-link:hover::before {
    transform: scaleY(1);
}

.mm-nav-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(217, 4, 41, 0.5);
    min-width: 20px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.mm-nav-link:hover .mm-nav-num {
    color: var(--color-accent);
}

.mm-nav-text {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.mm-nav-arrow {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transform: translateX(-4px);
}

.mm-nav-link:hover .mm-nav-arrow {
    color: var(--color-accent);
    transform: translateX(0);
}

/* Alt Footer */
.mm-footer {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 32px 28px;
    background: rgba(217, 4, 41, 0.04);
}

.mm-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.mm-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.mm-contact-link i {
    font-size: 0.75rem;
    color: var(--color-accent);
    width: 14px;
    text-align: center;
}

.mm-contact-link:hover {
    color: rgba(255, 255, 255, 0.75);
}

.mm-social {
    display: flex;
    gap: 10px;
}

.mm-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mm-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(217, 4, 41, 0.35);
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    /* Ensure space for items */
    will-change: transform;
    margin-top: 3rem;
}

.hero-text-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    margin-top: 4rem;
}

.hero-text-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
    background-color: rgba(255, 255, 255, 0.8);
    /* Readability over simple bg */
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-accent);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(217, 4, 41, 0.3);
    transition: transform var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: var(--color-accent-hover);
}

.coffee-circle {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-secondary) 20%, transparent 20%),
        radial-gradient(circle, var(--color-accent) 20%, transparent 20%);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    border-radius: 50%;
    opacity: 0.1;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 60s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
    font-weight: 600;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .about-description {
        text-align: center;
    }
}

/* ═══════════════════════════════════════════
   Konseptlerimiz – Yeni Tasarım (kc-)
═══════════════════════════════════════════ */

.kc-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.kc-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 4, 41, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.kc-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.kc-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 15px;
    display: block;
    animation: fadeInDown 0.8s ease;
}

.kc-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease 0.1s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Navigasyonu */
.kc-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kc-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 14px 30px;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.kc-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.kc-tab-btn .kc-num {
    font-size: 0.7rem;
    color: var(--color-accent);
    opacity: 0.6;
    font-weight: 700;
    transition: all 0.5s;
}

.kc-tab-btn .kc-txt {
    transition: all 0.5s;
}

.kc-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
}

.kc-tab-btn:hover::before {
    left: 100%;
}

.kc-tab-btn:hover .kc-num {
    opacity: 1;
    color: var(--color-accent);
}

.kc-tab-btn.active {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ef233c 100%);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.kc-tab-btn.active .kc-num {
    color: #fff;
    opacity: 1;
    transform: scale(1.2);
}

/* İçerik */
.kc-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Sol: Viewer */
.kc-viewer-wrap {
    flex: 0 0 auto;
    animation: slideInLeft 0.9s ease 0.3s backwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kc-viewer {
    position: relative;
    width: auto;
    height: 75vh;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(217, 4, 41, 0.1);
    border: 1px solid rgba(217, 4, 41, 0.2);
    transition: all 0.6s ease;
}

.kc-viewer:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), 0 0 60px rgba(217, 4, 41, 0.2);
    transform: translateY(-10px);
}

.kc-slides {
    width: 100%;
    height: 100%;
}

.kc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    visibility: hidden;
}

.kc-slide.active {
    opacity: 1;
    visibility: visible;
}

.kc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) contrast(1.1);
    transition: filter 0.5s ease;
}

.kc-slide.active img {
    animation: zoomIn 1s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Navigasyon Okları */
.kc-nav-arrow {
    position: absolute;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
}

.kc-nav-arrow:hover {
    background: linear-gradient(135deg, var(--color-accent), #ef233c);
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(217, 4, 41, 0.4);
}

.kc-nav-arrow.prev {
    left: 20px;
}

.kc-nav-arrow.next {
    right: 20px;
}

/* Viewer Footer (Dots) */
.kc-viewer-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    gap: 15px;
}

.kc-dots {
    display: flex;
    gap: 12px;
    pointer-events: auto;
}

.kc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kc-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.kc-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.6);
}

.kc-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    padding: 8px 14px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 4, 41, 0.3);
    pointer-events: none;
}


/* Sağ: Bilgi Paneli */
.kc-info-wrap {
    flex: 1;
    max-width: 520px;
    animation: slideInRight 0.9s ease 0.4s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kc-info-content {
    display: none;
    animation: fadeInSlideRight 0.8s ease forwards;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(217, 4, 41, 0.03));
    border: 1px solid rgba(217, 4, 41, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.6s ease;
}

.kc-info-content.active {
    display: block;
}

.kc-info-content:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(217, 4, 41, 0.05));
    border-color: rgba(217, 4, 41, 0.2);
    transform: translateY(-5px);
}

@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.kc-info-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, rgba(217, 4, 41, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.kc-info-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #ef233c);
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

.kc-info-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    transition: color 0.5s ease;
}

.kc-info-content:hover .kc-info-text {
    color: rgba(255, 255, 255, 0.85);
}

.kc-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kc-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.kc-info-list li:hover {
    color: #fff;
    transform: translateX(8px);
}

.kc-info-list li i {
    color: var(--color-accent);
    font-size: 0.85rem;
    transition: all 0.4s ease;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 4, 41, 0.15);
    border-radius: 50%;
    height: 20px;
}

.kc-info-list li:hover i {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.2);
}


/* Responsive */
@media (max-width: 991px) {
    .kc-section {
        padding: 80px 0;
    }

    .kc-content {
        flex-direction: column;
        gap: 60px;
        align-items: stretch;
    }

    .kc-viewer-wrap {
        display: flex;
        justify-content: center;
    }

    .kc-viewer {
        height: 65vh;
        width: 100%;
        max-width: 450px;
    }

    .kc-info-wrap {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .kc-info-line {
        margin: 0 auto 30px;
    }

    .kc-info-list {
        align-items: center;
    }

    .kc-info-list li {
        justify-content: center;
    }

    .kc-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .kc-info-title {
        font-size: 2.2rem;
    }

    .kc-tabs-nav {
        gap: 12px;
    }

    .kc-tab-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .kc-nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .kc-section::before {
        width: 300px;
        height: 300px;
        right: -15%;
    }

    .kc-viewer {
        height: 60vh;
    }

    .kc-header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .kc-section {
        padding: 60px 0;
    }

    .kc-header {
        margin-bottom: 40px;
    }

    .kc-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .kc-eyebrow {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .kc-tabs-nav {
        gap: 10px;
        margin-bottom: 30px;
    }

    .kc-tab-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .kc-tab-btn .kc-num {
        display: none;
    }

    .kc-viewer {
        height: 55vh;
        border-radius: 20px;
    }

    .kc-viewer-footer {
        bottom: 20px;
        gap: 12px;
    }

    .kc-dots {
        gap: 8px;
    }

    .kc-dot {
        width: 8px;
        height: 8px;
    }

    .kc-nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.75rem;
        bottom: 80px;
    }

    .kc-nav-arrow.prev {
        left: 15px;
    }

    .kc-nav-arrow.next {
        right: 15px;
    }

    .kc-counter {
        font-size: 0.65rem;
        padding: 6px 10px;
        top: 15px;
        right: 15px;
    }

    .kc-info-wrap {
        padding: 0 15px;
    }

    .kc-info-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .kc-info-line {
        width: 50px;
        height: 3px;
        margin: 0 auto 25px;
    }

    .kc-info-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .kc-info-list {
        gap: 12px;
    }

    .kc-info-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .kc-title {
        font-size: 1.4rem;
    }

    .kc-tab-btn {
        padding: 9px 14px;
        font-size: 0.75rem;
    }

    .kc-info-title {
        font-size: 1.4rem;
    }

    .kc-viewer {
        height: 50vh;
    }

    .kc-nav-arrow {
        width: 40px;
        height: 40px;
        bottom: 75px;
    }
}




/* ── Sol: Görsel alanı ── */
.kc-visual {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 100%;
    /* Wrapper yüksekliğini doldur */
}

/* Tüm slide'lar üst üste, fade ile geçiş */
.kc-slides {
    position: absolute;
    inset: 0;
}

.kc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.kc-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.kc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay (alt kısım için) */
.kc-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Ok butonları */
.kc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(4px);
}

.kc-arrow:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.kc-prev {
    left: 20px;
}

.kc-next {
    right: 20px;
}

/* Dot göstergeler */
.kc-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.kc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.kc-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Sayaç */
.kc-counter {
    position: absolute;
    bottom: 22px;
    right: 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

/* ── Sağ: Bilgi / Tab alanı ── */
.kc-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    background: #0d0d0d;
    box-sizing: border-box;
}

.kc-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.kc-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 48px;
}

/* Tab listesi */
.kc-tab-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kc-tab {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    text-align: left;
    color: #fff;
    position: relative;
    transition: opacity 0.25s ease;
}

.kc-tab:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Sol kırmızı çizgi */
.kc-tab::before {
    content: '';
    position: absolute;
    left: -52px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.kc-tab.active::before,
.kc-tab:hover::before {
    transform: scaleY(1);
}

/* Numara */
.kc-tab-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1.2;
    flex-shrink: 0;
    min-width: 36px;
    transition: color 0.3s ease;
}

.kc-tab.active .kc-tab-num,
.kc-tab:hover .kc-tab-num {
    color: var(--color-accent);
}

/* İçerik */
.kc-tab-body {
    flex: 1;
}

.kc-tab-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.kc-tab.active .kc-tab-name,
.kc-tab:hover .kc-tab-name {
    color: #fff;
}

.kc-tab-desc {
    font-size: 0.83rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
    transition: color 0.3s ease;
}

.kc-tab.active .kc-tab-desc,
.kc-tab:hover .kc-tab-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* Ok ikonu */
.kc-tab-icon {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    padding-top: 4px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.kc-tab.active .kc-tab-icon,
.kc-tab:hover .kc-tab-icon {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* ── Mobil Responsive ── */
@media (max-width: 900px) {
    .kc-wrap {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }

    .kc-visual {
        aspect-ratio: 9 / 16;
        height: auto;
        width: 100%;
    }

    .kc-info {
        padding: 36px 28px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .kc-tab::before {
        left: -28px;
    }

    .kc-title {
        margin-bottom: 28px;
    }
}

@media (max-width: 480px) {
    .kc-visual {
        aspect-ratio: 9 / 16;
        width: 100%;
        height: auto;
    }

    .kc-info {
        padding: 28px 20px;
    }

    .kc-tab-desc {
        display: none;
    }
}



/* Başlık bandı */
.cpt-header {
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 0;
}

.cpt-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.cpt-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

/* Ana layout: Sol tab + Sağ carousel */
.cpt-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 580px;
}

/* Sol: Tab listesi */
.cpt-tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cpt-tab {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 40px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
    color: inherit;
}

.cpt-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.cpt-tab.active::before,
.cpt-tab:hover::before {
    transform: scaleY(1);
}

.cpt-tab.active,
.cpt-tab:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

/* Sekme numarası */
.cpt-tab-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.cpt-tab.active .cpt-tab-num,
.cpt-tab:hover .cpt-tab-num {
    color: var(--color-accent);
}

/* Sekme içerik */
.cpt-tab-info {
    flex: 1;
}

.cpt-tab-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.cpt-tab.active .cpt-tab-info strong,
.cpt-tab:hover .cpt-tab-info strong {
    color: #fff;
}

.cpt-tab-info p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    transition: color 0.3s ease;
}

.cpt-tab.active .cpt-tab-info p,
.cpt-tab:hover .cpt-tab-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* Ok ikonu */
.cpt-tab-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    flex-shrink: 0;
    padding-top: 4px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cpt-tab.active .cpt-tab-arrow,
.cpt-tab:hover .cpt-tab-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* Sağ: Carousel sarmalayıcı */
.cpt-carousel-wrap {
    overflow: hidden;
    padding: 50px 0 80px;
    position: relative;
    min-width: 0;
    /* grid hücresinin taşmasını önler */
    width: 100%;
}

/* Eski class uyumu (carousel CSS devam eder) */
.concepts-stacked-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.concept-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.concept-btn {
    padding: 12px 35px;
    background: white;
    /* White background */
    border: 2px solid black;
    /* Black stroke */
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1rem;
    color: black;
    /* Black text */
}

.concept-btn.active,
.concept-btn:hover {
    background: black;
    /* Black background on active/hover */
    border-color: black;
    color: white;
    /* White text on active/hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.concept-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* --- Concepts Carousel Modern Aesthetic --- */
.concepts-carousel-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 50px 0 125px 0;
    margin-top: 20px;
    overflow: hidden;
    /* Clean edges */
}

.concepts-carousel .owl-stage-outer {
    padding: 50px 0;
    overflow: visible;
    /* 3D efekt için */
    /* clip sadece yatay - dikey için wrapper'a güveniyoruz */
}

/* Base Card Style - Minimal & Image Only */
.concepts-carousel .item {
    background: transparent;
    border-radius: 20px;
    position: relative;
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    transform: scale(0.78) translateY(12px);
    filter: brightness(0.35) saturate(0.6);
    z-index: 1;
    will-change: transform, filter, opacity;
}

/* Remove Header Styles completely if any remain */
.card-header {
    display: none;
}

/* Card Body - Just the Image */
.card-body {
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 20px;
    /* Strong shadow behind the CARD, not just inside */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concepts-carousel .item .card-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 20px;
}

/* 1. Center Item (Highest Priority) */
.concepts-carousel .owl-item.center {
    z-index: 30;
    position: relative;
}

.concepts-carousel .owl-item.center .item {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.18);
    filter: brightness(1) saturate(1.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

/* 2. Immediate Neighbors */
.concepts-carousel .owl-item.card-prev,
.concepts-carousel .owl-item.card-next {
    z-index: 20;
    position: relative;
}

.concepts-carousel .owl-item.card-prev .item {
    transform: translate3d(18%, 5px, 0) scale(0.88);
    opacity: 1;
    filter: brightness(0.65) saturate(0.7);
}

.concepts-carousel .owl-item.card-next .item {
    transform: translate3d(-18%, 5px, 0) scale(0.88);
    opacity: 1;
    filter: brightness(0.65) saturate(0.7);
}

/* 3. Outer Neighbors */
.concepts-carousel .owl-item.card-prev-2,
.concepts-carousel .owl-item.card-next-2 {
    z-index: 10;
    position: relative;
}

.concepts-carousel .owl-item.card-prev-2 .item {
    transform: translate3d(36%, 18px, 0) scale(0.72);
    opacity: 0.85;
    filter: brightness(0.4) saturate(0.4);
}

.concepts-carousel .owl-item.card-next-2 .item {
    transform: translate3d(-36%, 18px, 0) scale(0.72);
    opacity: 0.85;
    filter: brightness(0.4) saturate(0.4);
}

.concepts-carousel .owl-item.center .item .card-body {
    /* Glowing shadow for center */
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.concepts-carousel .owl-item.center .item:hover .card-body img {
    transform: scale(1.1);
}

/* Navigation Styles */
.concepts-carousel .owl-nav {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through container */
    z-index: 100;
}

.concepts-carousel .owl-prev,
.concepts-carousel .owl-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    cursor: pointer;
    pointer-events: auto;
    /* Re-enable pointer events for buttons */
    transition: all 0.3s ease;
    z-index: 100;
}

.concepts-carousel .owl-prev {
    left: 10px;
}

.concepts-carousel .owl-next {
    right: 10px;
}

.concepts-carousel .owl-prev:hover,
.concepts-carousel .owl-next:hover {
    background: var(--color-accent) !important;
    transform: scale(1.1);
}

.concepts-carousel .owl-prev span,
.concepts-carousel .owl-next span {
    font-size: 30px;
    line-height: 1;
    position: relative;
    top: -2px;
}




@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        overflow: hidden;
    }
}

/* ── Konseptlerimiz Mobil ── */
@media (max-width: 900px) {
    .cpt-layout {
        grid-template-columns: 1fr;
    }

    /* Tablar yatay kaydırmalı şeride dönüşür */
    .cpt-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cpt-tabs::-webkit-scrollbar {
        display: none;
    }

    .cpt-tab {
        flex-direction: column;
        align-items: flex-start;
        min-width: 220px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        padding: 28px 28px;
    }

    /* Mobilde sol çizgi → alt çizgiye döner */
    .cpt-tab::before {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: auto;
        height: 3px;
        transform: scaleX(0);
    }

    .cpt-tab.active::before,
    .cpt-tab:hover::before {
        transform: scaleX(1);
    }

    .cpt-tab-arrow {
        display: none;
    }

    .cpt-tab-info p {
        display: none;
        /* Dar ekranda açıklamayı gizle */
    }

    .cpt-carousel-wrap {
        padding: 30px 0 60px;
    }
}

/* ══════════════════════════════════════════
   Gallery – Yeni Tasarım (gl-)
══════════════════════════════════════════ */

.gl-section {
    background: #ffffff;
    padding: 110px 0 130px;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative background element */
.gl-section::before {
    content: 'GALLERY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 14vw, 18rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(0, 0, 0, 0.025);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    line-height: 1;
}

.gl-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Header ── */
.gl-header {
    text-align: center;
    margin-bottom: 70px;
}

.gl-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
    position: relative;
    padding: 0 20px;
}

.gl-eyebrow::before,
.gl-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.5;
}

.gl-eyebrow::before {
    right: 100%;
    margin-right: -20px;
}

.gl-eyebrow::after {
    left: 100%;
    margin-left: -20px;
}

.gl-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    color: #0d0d0d;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
}

.gl-subtitle {
    font-size: 1.05rem;
    color: #888;
    font-weight: 400;
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Grid ── */
.gl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* ── Card ── */
.gl-card {
    position: relative;
    animation-delay: var(--delay, 0s);
}

.gl-card-inner {
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.gl-card:hover .gl-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.gl-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gl-card:hover .gl-card-inner img {
    transform: scale(1.08);
}

/* Overlay */
.gl-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 10, 10, 0.88) 0%,
            rgba(10, 10, 10, 0.35) 45%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.gl-card:hover .gl-card-overlay {
    opacity: 1;
}

.gl-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 6px;
    transform: translateY(8px);
    transition: transform 0.4s ease 0.05s;
}

.gl-card:hover .gl-card-tag {
    transform: translateY(0);
}

.gl-card-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    transform: translateY(8px);
    transition: transform 0.4s ease 0.1s;
}

.gl-card:hover .gl-card-name {
    transform: translateY(0);
}

/* Number index badge */
.gl-card-index {
    position: absolute;
    top: -12px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #bbb;
    background: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.gl-card:hover .gl-card-index {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .gl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .gl-inner {
        padding: 0 16px;
    }

    .gl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gl-title {
        letter-spacing: -2px;
    }

    .gl-section {
        padding: 95px 0 80px;
    }
}

/* ── Gallery Lightbox ── */
.gl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gl-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gl-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
}

.gl-lightbox-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 92vw;
    max-height: 92vh;
}

.gl-lightbox-img-wrap {
    aspect-ratio: 9 / 16;
    max-height: 88vh;
    width: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.94);
}

.gl-lightbox.open .gl-lightbox-img-wrap {
    transform: scale(1);
}

.gl-lightbox-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Caption bar */
.gl-lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.gl-lightbox-caption-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.gl-lightbox-caption-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

/* Arrow buttons */
.gl-lb-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(6px);
}

.gl-lb-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* Close button */
.gl-lb-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
    backdrop-filter: blur(6px);
}

.gl-lb-close:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* Counter */
.gl-lb-counter {
    position: absolute;
    top: -50px;
    left: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    user-select: none;
    line-height: 44px;
}

/* Dots strip */
.gl-lb-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gl-lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
    border: none;
}

.gl-lb-dot.active {
    background: #fff;
    transform: scale(1.4);
}

/* Hover cursor hint on gallery cards */
.gl-card-inner::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.gl-card:hover .gl-card-inner::after {
    opacity: 1;
}


/* ══════════════════════════════════════════
   Franchise – Yeni Tasarım (fr-)
══════════════════════════════════════════ */

.fr-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
}

/* ── Arka plan ── */
.fr-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1459755486867-b55449bb39ff?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    transform-origin: center;
    animation: frPan 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes frPan {
    from {
        transform: scale(1.08) translate(0, 0);
    }

    to {
        transform: scale(1.12) translate(-2%, -1.5%);
    }
}

.fr-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 10% 50%, rgba(217, 4, 41, 0.18) 0%, transparent 65%),
        linear-gradient(135deg, rgba(5, 5, 5, 0.90) 0%, rgba(10, 10, 10, 0.82) 100%);
}

/* ── Inner layout ── */
.fr-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* ══════════
   Sol Panel
══════════ */
.fr-info {
    color: #fff;
}

.fr-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 22px;
    padding: 6px 16px;
    border: 1px solid rgba(217, 4, 41, 0.35);
    border-radius: 30px;
    background: rgba(217, 4, 41, 0.08);
}

.fr-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 28px;
}

.fr-title-accent {
    color: var(--color-accent);
    display: block;
}

.fr-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 50px;
}

/* İstatistikler */
.fr-stats {
    display: flex;
    gap: 0;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.fr-stat {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.fr-stat:last-child {
    border-right: none;
}

.fr-stat:hover {
    background: rgba(217, 4, 41, 0.08);
}

.fr-stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.fr-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* Avantaj listesi */
.fr-benefits {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fr-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.fr-benefits li:hover {
    color: #fff;
    transform: translateX(6px);
}

.fr-benefits li i {
    color: var(--color-accent);
    font-size: 1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(217, 4, 41, 0.5));
}

/* ══════════
   Form Kartı
══════════ */
.fr-form-wrap {
    display: flex;
    justify-content: center;
}

.fr-form-card {
    width: 100%;
    max-width: 560px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fr-form-header {
    margin-bottom: 36px;
}

.fr-form-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.fr-form-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Form grid */
.fr-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fr-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fr-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fr-field.fr-field-full {
    grid-column: 1 / -1;
}

.fr-field label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.fr-field label span {
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
}

.fr-select-edit {
    margin-left: 90%;
}

.fr-select-edit2 {
    margin-left: 80%;
}

@media (max-width: 560px) {
    .fr-select-edit {
        margin-left: 86%;
    }

    .fr-select-edit2 {
        margin-left: 86%;
    }
}

/* Input wrapper */
.fr-input-wrap {
    position: relative;
}

.fr-input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    transition: color 0.3s ease;
}

.fr-input-wrap:has(textarea) i {
    top: 18px;
    transform: none;
}

.fr-input-wrap input,
.fr-input-wrap textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
}

.fr-input-wrap input::placeholder,
.fr-input-wrap textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.88rem;
}

.fr-input-wrap input:focus,
.fr-input-wrap textarea:focus {
    border-color: var(--color-accent);
    background: rgba(217, 4, 41, 0.06);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

.fr-input-wrap:has(input:focus) i,
.fr-input-wrap:has(textarea:focus) i {
    color: var(--color-accent);
}

/* Select / Dropdown */
.fr-select-wrap {
    position: relative;
}

.fr-select-wrap select {
    width: 100%;
    padding: 14px 44px 14px 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.92rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.fr-select-wrap select option {
    background: #1a1a1a;
    color: #fff;
}

.fr-select-wrap select:focus {
    border-color: var(--color-accent);
    background: rgba(217, 4, 41, 0.06);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

.fr-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.fr-select-wrap:has(select:focus) .fr-select-arrow {
    color: var(--color-accent);
    transform: translateY(-50%) rotate(180deg);
}

/* Submit button */
.fr-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 17px 30px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ef233c 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 10px 35px rgba(217, 4, 41, 0.4);
    margin-top: 4px;
}

.fr-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(217, 4, 41, 0.55);
    filter: brightness(1.08);
}

.fr-submit:active {
    transform: translateY(0);
}

.fr-submit i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.fr-submit:hover i {
    transform: translateX(4px);
}

/* Sent state */
.fr-submit.sent {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.35);
    cursor: default;
    pointer-events: none;
}

/* Privacy note */
.fr-privacy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.fr-privacy i {
    font-size: 0.65rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .fr-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .fr-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

@media (max-width: 640px) {
    .fr-section {
        padding: 80px 0;
    }

    .fr-inner {
        padding: 0 20px;
    }

    .fr-form-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .fr-row {
        grid-template-columns: 1fr;
    }

    .fr-stats {
        flex-wrap: wrap;
    }

    .fr-stat {
        flex: 1 0 50%;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 20px;
    color: var(--color-secondary);
}

.social-links a:hover {
    color: var(--color-accent);
}

.map-container {
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    color: #777;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-5px);
    color: white;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.2s;
}

.reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .logo-text {
        font-size: 1.5rem !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
        word-wrap: break-word;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 0 15px;
        padding-top: 80px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-visual {
        display: none;
    }
}

/* Shop Slider */
.shop-slider .item img {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 300px;
    object-fit: cover;
}

/* Contact & Footer Redesign */
.footer-section {
    background-color: var(--color-secondary);
    color: white;
    padding-bottom: 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h3,
.footer-form h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.contact-info h2 {
    color: white;
    /* Override default black */
}

.contact-info p {
    color: #ccc;
}

.social-links a {
    color: white;
}

.map-placeholder {
    margin-top: 20px;
    height: 200px;
    background-color: #333;
    color: #777;
    border-radius: 10px;
}

.footer-form form {
    background-color: #222;
    padding: 30px;
    border-radius: 15px;
}

.footer-form input,
.footer-form textarea {
    background-color: #333;
    border: 1px solid #444;
    color: white;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
}

.submit-btn.outline-btn {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: white;
    width: 100%;
}

.submit-btn.outline-btn:hover {
    background-color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    object-fit: contain;
    /* Absolute Center */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoom 0.6s;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    /* Add shadow for better pop */
}

@keyframes zoom {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--color-accent);
}

/* Responsiveness for new elements */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Hero Background Slider */
/* Hero Background Slider with Ken Burns Effect */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Extra height to accommodate parallax movement without gaps */
    z-index: 0;
    overflow: hidden;
    will-change: transform;
    background-color: #1a1a1a;
    /* Dark base to prevent bright grey flicker */
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-bg-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg-slider .slide.top {
    z-index: 3;
    opacity: 1;
}

.hero-bg-slider .slide.active {
    animation: kenBurns 15s linear infinite alternate;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

/* Mission & Vision Section Redesign */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.mission-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: inline-block;
    padding: 20px;
    background: rgba(217, 4, 41, 0.1);
    /* Light accent bg */
    border-radius: 50%;
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

/* Hero Half Height */
.hero.hero-half {
    height: 60vh;
    min-height: 400px;
    /* Ensure content fits on small screens */
    align-items: center;
    /* Center content vertically */
    margin-top: 135px;
}

/* Ensure overlay covers half height */
.hero.hero-half .hero-overlay,
.hero.hero-half .hero-bg-slider {
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.582) 0%, rgba(0, 0, 0, 0.815) 100%);
    z-index: 1;
}

/* Ensure Hero Text is White/Visible */
.hero-content {
    /* Ensure content is above overlay */
    z-index: 2;
    text-align: center;
    color: white;
    will-change: transform;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: #f1f1f1;
    background: transparent;
}


/* Custom Shop Nav Buttons */
.shop-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.shop-nav-btn:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: -60px;
    /* Further out for desktop */
}

.next-slide {
    right: -60px;
    /* Further out for desktop */
}

/* Modal Navigation */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: var(--color-accent);
}

/* Response fix */
@media (max-width: 1350px) {

    /* Increased breakpoint to catch laptops */
    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }
}

/* ─────────────────────────────────────────────
   About Detail – Yeni Tasarım (hakkimizda.html)
───────────────────────────────────────────── */
.about-detail-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

/* Sol kolon: görsel */
.ad-image-col {
    position: relative;
    overflow: hidden;
}

.ad-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ad-image-col:hover img {
    transform: scale(1.04);
}

/* Üstüne binen kırmızı yıl bloğu */
.ad-accent-block {
    position: absolute;
    bottom: 40px;
    right: -1px;
    background-color: var(--color-accent);
    color: #fff;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: -6px 6px 30px rgba(0, 0, 0, 0.25);
}

.ad-accent-number {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
}

.ad-accent-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Sağ kolon: metin içeriği */
.ad-content-col {
    background-color: #fff;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Üst etiket */
.ad-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

/* Başlık */
.ad-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.ad-heading span {
    color: var(--color-accent);
}

/* Açıklama metni */
.ad-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 48px;
    max-width: 480px;
}

/* Milestone listesi */
.ad-milestones {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ad-milestone {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #f0f0f0;
}

.ad-milestone:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Numara */
.ad-mile-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    min-width: 40px;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.ad-milestone:hover .ad-mile-num {
    opacity: 1;
}

.ad-mile-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.ad-mile-content p {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .about-detail-new {
        grid-template-columns: 1fr;
    }

    .ad-image-col {
        height: 380px;
    }

    .ad-accent-block {
        bottom: 20px;
        right: 20px;
    }

    .ad-content-col {
        padding: 60px 32px;
    }
}

/* ─────────────────────────────────────────────
   Değerlerimiz – 6'lı Kart Grid
───────────────────────────────────────────── */
.values-section {
    background-color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.value-card {
    background-color: #fafafa;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent);
}

.value-icon {
    width: 68px;
    height: 68px;
    background-color: rgba(217, 4, 41, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.3s ease;
}

.value-icon i {
    font-size: 1.6rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--color-accent);
}

.value-card:hover .value-icon i {
    color: #fff;
    transform: scale(1.15);
}

.value-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.value-desc {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────
   Vizyon & Misyon – Yeni Tasarım
───────────────────────────────────────────── */
.vm-section {
    background-color: #111;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

/* Üst başlık bandı */
.vm-header {
    text-align: center;
    padding: 80px 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.vm-main-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
}

.vm-main-title span {
    color: var(--color-accent);
}

/* Panel container */
.vm-panels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    min-height: 480px;
}

/* Her panel */
.vm-panel {
    padding: 70px 64px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.vm-panel--vision {
    background-color: #111;
    border-right: none;
}

.vm-panel--mission {
    background-color: #161616;
}

.vm-panel:hover {
    background-color: #1c1c1c;
}

/* Dekoratif büyük tırnak */
.vm-quote-mark {
    position: absolute;
    top: 20px;
    left: 48px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(217, 4, 41, 0.12);
    font-family: Georgia, serif;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s ease;
}

.vm-panel:hover .vm-quote-mark {
    color: rgba(217, 4, 41, 0.22);
}

/* İkon dairesi */
.vm-panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(217, 4, 41, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.vm-panel-icon i {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.vm-panel:hover .vm-panel-icon {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.vm-panel:hover .vm-panel-icon i {
    color: #fff;
}

/* Panel başlığı */
.vm-panel-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Panel metni */
.vm-panel-text {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
}

/* Alt kırmızı çizgi */
.vm-panel-line {
    width: 48px;
    height: 3px;
    background-color: var(--color-accent);
    margin-top: 36px;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.vm-panel:hover .vm-panel-line {
    width: 96px;
}

/* Dikey ayırıcı */
.vm-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-divider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-accent);
    position: absolute;
    box-shadow: 0 0 12px rgba(217, 4, 41, 0.6);
}

/* Responsive */
@media (max-width: 860px) {
    .vm-panels {
        grid-template-columns: 1fr;
    }

    .vm-divider {
        width: 100%;
        height: 1px;
        flex-direction: row;
    }

    .vm-panel {
        padding: 50px 32px;
    }

    .vm-quote-mark {
        left: 24px;
    }
}

/* ─────────────────────────────────────────────
   Biz Kimiz – Metin Odaklı Section
───────────────────────────────────────────── */
.about-text-section {
    background-color: #fff;
    padding: 100px 0;
}

.about-text-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Üst: eyebrow + alıntı */
.abt-top {
    text-align: center;
    margin-bottom: 56px;
}

.abt-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.abt-quote {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.25;
    letter-spacing: -1px;
    max-width: 820px;
    margin: 0 auto;
    border: none;
    padding: 0;
    font-style: normal;
}

.abt-quote em {
    color: var(--color-accent);
    font-style: normal;
}

/* Yatay kural */
.abt-rule {
    height: 1px;
    background: #e8e8e8;
    margin: 56px 0;
}

/* İki sütun */
.abt-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.abt-col-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}

.abt-col p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

.abt-col p:last-child {
    margin-bottom: 0;
}

/* İstatistikler */
.abt-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.abt-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 52px;
    text-align: center;
}

.abt-stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: -2px;
    line-height: 1;
}

.abt-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}

.abt-stat-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 800px) {
    .abt-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .abt-stat-divider {
        display: none;
    }

    .abt-stat {
        padding: 0 20px;
    }
}

@media (max-width: 500px) {
    .about-text-section {
        padding: 115px 0;
    }

    .about-text-inner {
        padding: 0 24px;
    }
}

/* ─────────────────────────────────────────────
   Hakkimizda Footer – Yeni Premium Tasarım
───────────────────────────────────────────── */
.hk-footer {
    background-color: #0a0a0a;
    color: #fff;
    font-family: var(--font-main);
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan deseni */
.hk-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(217, 4, 41, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Kırmızı akcent şerit */
.hk-footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-accent-hover) 70%, transparent 100%);
    opacity: 0.9;
}

/* Üst 3 kolon */
.hk-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hk-footer-col {
    padding: 60px 52px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.hk-footer-col:last-child {
    border-right: none;
}

.hk-footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hk-footer-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    display: block;
}

/* ---- Kolon 1: Marka ---- */
.hk-footer-logo {
    margin-bottom: 28px;
}

.hk-footer-logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    display: inline-block;
    position: relative;
}


/* Ayırıcı çizgi */
.hk-brand-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(217, 4, 41, 0.5) 0%, rgba(255, 255, 255, 0.06) 100%);
    margin-bottom: 24px;
}

/* Slogan */
.hk-brand-slogan {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    padding-left: 4px;
    position: relative;
}

.hk-brand-quote {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-style: normal;
    line-height: 0;
    vertical-align: -6px;
    opacity: 0.7;
    font-family: Georgia, serif;
}

/* Marka rozetleri */
.hk-brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 5px 12px;
    transition: all 0.3s ease;
}

.hk-badge i {
    font-size: 0.65rem;
    color: var(--color-accent);
}

.hk-badge:hover {
    background: rgba(217, 4, 41, 0.1);
    border-color: rgba(217, 4, 41, 0.25);
    color: rgba(255, 255, 255, 0.8);
}

/* "Bizi Takip Edin" etiketi */
.hk-brand-social-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 12px;
}

/* Sosyal ikonlar */
.hk-social {
    display: flex;
    gap: 10px;
}

.hk-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hk-social a:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.35);
}

/* ---- Kolon 2: Sayfalar ---- */
.hk-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hk-footer-links li a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.46);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.hk-footer-links li:last-child a {
    border-bottom: none;
}

.hk-footer-links li a i {
    font-size: 0.65rem;
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.hk-footer-links li a:hover {
    color: #fff;
    padding-left: 6px;
}

.hk-footer-links li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Kolon 3: İletişim ---- */
.hk-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hk-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.hk-info-item:hover {
    color: rgba(255, 255, 255, 0.85);
}

.hk-info-icon {
    width: 34px;
    height: 34px;
    background: rgba(217, 4, 41, 0.1);
    border: 1px solid rgba(217, 4, 41, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hk-info-icon i {
    font-size: 0.82rem;
    color: var(--color-accent);
}

.hk-info-item:hover .hk-info-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.hk-info-item:hover .hk-info-icon i {
    color: #fff;
}


/* Alt bar */
.hk-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 44px;
    font-size: 0.8rem;
}

.hk-footer-bottom-left p {
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.hk-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hk-footer-bottom-right a {
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hk-footer-bottom-right a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.hk-footer-bottom-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 860px) {
    .hk-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .hk-footer-col:nth-child(2) {
        border-right: none;
    }

    .hk-footer-col:nth-child(3) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .hk-footer-top {
        grid-template-columns: 1fr;
    }

    .hk-footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 44px 28px;
    }

    .hk-footer-col:nth-child(3) {
        grid-column: auto;
        border-top: none;
    }

    .hk-footer-col:last-child {
        border-bottom: none;
    }

    .hk-footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding: 24px 28px;
        text-align: center;
    }
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
}

/* ═══════════════════════════════════════════
   Lightbox CSS (Galeri ve Konsept İçin)
═══════════════════════════════════════════ */
.gl-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gl-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gl-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.gl-lightbox-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gl-lightbox-img-wrap {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
}

#glLbImg {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gl-lightbox-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #fff;
}

.gl-lightbox-caption-tag {
    background: var(--color-accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.gl-lightbox-caption-name {
    font-size: 1.1rem;
}

.gl-lb-arrow,
.gl-lb-close {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    pointer-events: auto;
}

.gl-lb-arrow:hover,
.gl-lb-close:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

#glLbPrev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

#glLbNext {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.gl-lb-close {
    top: 30px;
    right: 30px;
}

.gl-lb-counter {
    position: absolute;
    top: -40px;
    left: 0;
    color: #aaa;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.gl-lb-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.gl-lb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.gl-lb-dot.active,
.gl-lb-dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--color-accent);
}

/*MOBILE RESPONSIVE*/
@media (max-width: 640px) {
    .fr-title {
        text-align: center;
    }

    .fr-eyebrow {
        display: block;
        width: 68%;
        margin: 0 auto 12px;

    }

    .fr-desc {
        text-align: center;
    }

    .mobile-close {
        display: none;
    }

    .mobile-fs {
        font-size: 2rem;
    }

    .hero-half {
        display: none;
    }

    .mobile-tas {
        text-align: center;
    }

    .center {
        display: block;
        width: 50%;
        margin: 0 auto 12px;
    }

    .center-2 {
        display: block;
        width: 40%;
        margin: 0 auto 12px;
    }

    .center-3 {
        display: block;
        width: 36%;
        margin: 0 auto 12px;
    }

    .center-4 {
        display: block;
        width: 100%;
        margin: 0 auto 12px;
    }

    .hk-social {
        display: flex;
        justify-content: center;
    }

    .map-top {
        margin-top: 0rem !important;
    }

    .hero {
        height: 55vh;
    }

    .hero-content{
        margin-top: 0rem !important;
    }

    .fq-section{
        padding: 0px 0px 4rem 0px !important;
    }

    .ct-social {
        display: flex;
        justify-content: center;
    }

    .hero-text-item{
        margin-top: 0rem !important;
    }

}