/* ============================================================
   Dilek Reklamcılık - Neo-Corporate Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #c5362d;
    --primary-rgb: 197, 54, 45;
    --primary-dark: #a82d25;
    --secondary: #0f172a;
    --secondary-rgb: 15, 23, 42;
    --secondary-light: #1e293b;

    /* Bootstrap override: mavi yerine kırmızı */
    --bs-primary: #c5362d;
    --bs-primary-rgb: 197, 54, 45;
    --bs-link-color: #c5362d;
    --bs-link-hover-color: #a82d25;
    --bs-link-color-rgb: 197, 54, 45;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.8);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #e11d48 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-overlay: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.8));

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(197, 54, 45, 0.3);

    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

/* Utilities */
.section-padding {
    padding: 6rem 0;
}

.bg-gradient-dark {
    background: var(--gradient-dark);
    color: white;
}

.bg-surface {
    background: var(--bg-surface);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Components: Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-base);
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e11d48, #c5362d);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-base);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid rgba(197, 54, 45, 0.2);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-outline-custom:hover,
.btn-outline-custom.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Header dil seçeneği - border */
.lang-switch-btn {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
}

.lang-switch-btn:hover {
    border-color: var(--primary) !important;
}

/* Navbar */
#mainNavbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition-base);
}

#mainNavbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.navbar-brand .logo-img {
    height: 56px;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

/* Top Bar */
.top-bar {
    background: var(--secondary);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-info i {
    color: var(--primary);
    margin-right: 6px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1rem;
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    color: white;
}

/* Hero Section */
.hero-slider {
    position: relative;
}

.hero-swiper {
    height: 85vh;
    min-height: 600px;
}

.hero-swiper .swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.slide-content-inner {
    max-width: 800px;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-title-accent {
    color: var(--primary);
}

/* İlk slayt ve aktif slaytta başlık/açıklama her zaman görünsün */
.hero-swiper .swiper-slide:first-child .slide-title,
.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .slide-title {
    animation: revealUp 0.8s 0.3s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-swiper .swiper-slide:first-child .slide-desc,
.swiper-slide-active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .slide-desc {
    animation: revealUp 0.8s 0.5s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-buttons {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.hero-swiper .swiper-slide:first-child .slide-buttons,
.swiper-slide-active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .slide-buttons {
    animation: revealUp 0.8s 0.7s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-hero-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
}

/* Animation Keyframes */
@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Cards (Neo-Style) */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 100%;
    aspect-ratio: 16/10;
    background: rgba(197, 54, 45, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card-image-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: #f1f5f9;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.03);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ========== Hizmet detay sayfası (görsele uygun) ========== */
.service-detail-page {
    background: #f1f5f9;
    min-height: 60vh;
}

.service-detail-sidebar-inner {
    position: relative;
    padding-left: 0.5rem;
}

.service-detail-sidebar-big {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: rgba(15, 23, 42, 0.08);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.service-detail-sidebar-sub {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-detail-nav-item {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.service-detail-nav-item i.bi-chevron-right {
    font-size: 0.9rem;
}

.service-detail-nav-item:hover {
    background: rgba(197, 54, 45, 0.08);
    color: var(--primary);
}

.service-detail-nav-item.active {
    background: var(--primary);
    color: #fff;
}

.service-detail-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-category-line {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.service-detail-category-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--secondary);
    opacity: 0.8;
}

.service-detail-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-detail-lead {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-detail-img-wrap {
    aspect-ratio: 16/10;
    background: #e2e8f0;
}

.service-detail-img-wrap-sm {
    aspect-ratio: 1;
}

.service-detail-img-wrap img,
.service-detail-img-wrap-sm img {
    display: block;
}

.service-detail-feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.service-detail-feature-card i {
    font-size: 1.25rem;
}

.service-detail-feature-value {
    font-size: 1.1rem;
    color: var(--secondary);
}

.service-detail-description {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

.service-detail-description h3 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-description p {
    margin-bottom: 1rem;
}

.service-detail-h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-detail-area-item {
    padding-left: 0.25rem;
}

.service-detail-works-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-detail-works-link:hover {
    color: var(--primary);
}

.service-detail-works-link .bi {
    font-size: 0.75rem;
}

/* Asimetrik galeri: sol büyük, sağda 3 küçük */
.service-detail-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.75rem;
}

.service-detail-work-item {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-detail-work-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 4;
    aspect-ratio: auto;
    min-height: 200px;
}

.service-detail-work-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 1;
}

.service-detail-work-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1;
}

.service-detail-work-item:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
    aspect-ratio: 3/4;
}

.service-detail-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.service-detail-cta-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .service-detail-sidebar-big {
        font-size: 2rem;
    }
    .service-detail-works-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-work-item:nth-child(1),
    .service-detail-work-item:nth-child(2),
    .service-detail-work-item:nth-child(3),
    .service-detail-work-item:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/10;
    }
}

/* Why Us Section */
.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 54, 45, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-us-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-base);
}

.why-us-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob 5s ease-in-out infinite alternate;
}

.why-us-card:hover .why-us-icon-bg {
    opacity: 0.2;
    transform: scale(1.1);
}

.why-us-icon {
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

@keyframes blob {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Neden Biz (Home) - görseldeki 3 koyu blok */
.neden-biz-section-home {
    margin-top: -3rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.neden-biz-block {
    background: #2d2d2d;
    min-height: 160px;
    transition: var(--transition-base);
}

.neden-biz-block:hover {
    background: #383838;
    transform: translateY(-4px);
}

.neden-biz-block-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.neden-biz-block-title {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Portfolio (Home) - görselle aynı yapı */
.portfolio-section-home {
    background: #f1f3f5 !important;
}

.portfolio-home-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.portfolio-home-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
}

.portfolio-home-desc {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.portfolio-grid-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.portfolio-home-large {
    grid-column: 1;
    grid-row: 1 / -1;
}

.portfolio-home-right {
    grid-column: 2;
    grid-row: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    grid-template-rows: auto auto;
    gap: 1rem;
}

/* Üstteki tek kart: alttaki iki kartla aynı genişlikte (ilk iki sütun) */
.portfolio-home-right-top {
    grid-column: 1 / 3;
    min-height: 200px;
}

.portfolio-home-right-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: stretch;
}

.portfolio-home-cta {
    min-width: 140px;
}

.portfolio-home-empty {
    min-height: 0;
    overflow: hidden;
}

.portfolio-home-card {
    display: block;
    height: 100%;
    min-height: 200px;
    position: relative;
}

.portfolio-home-large .portfolio-home-card {
    min-height: 100%;
}

.portfolio-home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-home-card:hover .portfolio-home-img {
    transform: scale(1.05);
}

.portfolio-home-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
}

.portfolio-home-large .portfolio-home-placeholder {
    min-height: 100%;
}

.portfolio-home-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
}

.portfolio-home-caption .portfolio-home-link {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Büyük kart: etiket + başlık + açıklama */
.portfolio-home-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.portfolio-home-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.portfolio-home-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.portfolio-home-card-title-sm {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.portfolio-home-card-desc-sm {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.portfolio-home-cta-box {
    background: #e2e8f0;
    color: var(--text-main);
    text-decoration: none;
    min-height: 140px;
    transition: var(--transition-base);
}

.portfolio-home-cta-box:hover {
    background: #cbd5e1;
    color: var(--primary);
}

.neden-biz-cta-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    font-size: 1.5rem;
}

/* Stats section (home) */
.stats-section .stat-item {
    padding: 1rem 0.5rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

/* Sırasıyla: kırmızı, koyu gri, kırmızı, koyu gri */
.stats-section .stats-row > div:nth-child(1) .stat-number,
.stats-section .stats-row > div:nth-child(3) .stat-number {
    color: var(--primary);
}

.stats-section .stats-row > div:nth-child(2) .stat-number,
.stats-section .stats-row > div:nth-child(4) .stat-number {
    color: #2d3748;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Anasayfa blog (sol 1, sağ 2) */
.blog-home-section {
    background: #fff;
}

.blog-home-header {
    text-align: center;
}

.blog-home-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.blog-home-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary);
    margin: 0 0 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}

.blog-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

/* Sol kart: 2 satırı kapsar, böylece sol ve sağ toplam yükseklik birebir eşit olur */
.blog-home-left {
    grid-column: 1;
    grid-row: 1 / -1;
    min-height: 0;
    display: flex;
}

.blog-home-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.blog-home-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Sol kart: üstte görsel, altta içerik */
.blog-home-card-large {
    flex: 1;
    min-height: 0;
}

.blog-home-card-large .blog-home-thumb-large {
    width: 100%;
    height: 280px;
    min-height: 280px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-home-card-large .blog-home-thumb-large .blog-home-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.blog-home-card-large .blog-home-thumb-large .blog-home-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
}


.blog-home-card {
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.blog-home-card:hover {
    color: inherit;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Sağ kartlar: solda tam boy görsel, sağda içerik */
.blog-home-card-row {
    min-height: 160px;
}

.blog-home-thumb-row {
    width: 48%;
    min-width: 48%;
    min-height: 160px;
    overflow: hidden;
    align-self: stretch;
}

.blog-home-card-row .blog-home-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.blog-home-card-row .blog-home-content {
    flex: 1;
    min-width: 0;
}

.blog-home-thumb {
    position: relative;
    overflow: hidden;
}

.blog-home-thumb-large .blog-home-img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.blog-home-placeholder {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.blog-home-thumb-large .blog-home-placeholder {
    min-height: 220px;
}

.blog-home-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.blog-home-card:hover .blog-home-img {
    transform: scale(1.05);
}

.blog-home-content {
    background: #fff;
}

.blog-home-title,
.blog-home-title-sm {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
}

.blog-home-card-large .blog-home-title {
    font-size: 1.25rem;
}

.blog-home-title-sm {
    font-size: 1rem;
}

.blog-home-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
}

.blog-home-link {
    font-size: 0.875rem;
}

@media (max-width: 991px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .blog-home-left {
        grid-column: 1;
        grid-row: 1;
    }

    .blog-home-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .blog-home-item:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .blog-home-card-row {
        flex-direction: column;
    }

    .blog-home-card-large .blog-home-thumb-large {
        height: 220px;
    }

    .blog-home-thumb-row {
        width: 100%;
        min-width: 100%;
        height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item-large {
        grid-row: auto;
    }

    .portfolio-item-large .portfolio-card {
        min-height: 280px;
    }

    .portfolio-grid-home {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-home-large,
    .portfolio-home-right {
        grid-column: 1;
        grid-row: auto;
    }

    .portfolio-home-right-bottom {
        grid-template-columns: 1fr;
    }

    .portfolio-home-large .portfolio-home-card {
        min-height: 260px;
    }

    .neden-biz-section-home {
        margin-top: 0;
        padding-top: 2rem;
    }
}

/* Contact quote section (home) - görsel */
.contact-quote-section-home.bg-light {
    background: #f1f3f5 !important;
}

.contact-quote-card-home {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Sol kolon: pill etiket */
.contact-quote-pill {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
}

.contact-quote-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.contact-quote-desc {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.contact-quote-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-quote-block-label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-quote-block-value {
    font-size: 1rem;
}

/* Sağ kolon: form */
.contact-quote-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.contact-quote-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-quote-input {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.contact-quote-input::placeholder {
    color: #9ca3af;
}

.contact-quote-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
    outline: none;
}

.contact-quote-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-quote-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    transition: background 0.2s;
}

.contact-quote-submit:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Eski label (geri uyum) */
.contact-quote-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.contact-quote-form-home .form-control {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
}

.contact-quote-form-home .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.contact-quote-form-home .btn-primary-custom {
    border-radius: 8px;
}

/* Legacy */
.contact-quote-card {
    background: var(--bg-surface);
}

.contact-quote-section .form-control {
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
}

.contact-quote-section .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.contact-quote-section .form-label {
    font-weight: 600;
    color: var(--text-main);
}

/* Reference Carousel */
.reference-track {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
}

.reference-item {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    transition: var(--transition-base);
}

.reference-item img {
    max-width: 100%;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.reference-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Blog Cards (Magazine Style) */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-thumb {
    position: relative;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    background: #f1f5f9;
}

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

.blog-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--secondary);
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Footer (Modern Dark) */
.site-footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.footer-heading {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: inherit;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 0.75rem;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* Footer newsletter (Bülten) */
.footer-newsletter-form .input-group {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.footer-newsletter-input {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    box-shadow: none;
}

.btn-footer-newsletter {
    background: white;
    color: var(--secondary);
    font-weight: 600;
    border: none;
    padding: 0.65rem 1.25rem;
    white-space: nowrap;
    transition: var(--transition-base);
}

.btn-footer-newsletter:hover {
    background: #f1f5f9;
    color: var(--secondary);
}

/* Page Headers */
.page-header {
    background: var(--secondary);
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 54, 45, 0.15) 0%, transparent 50%);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Breadcrumb (beyaz alan) – yazılar kırmızı */
.breadcrumb-section .breadcrumb-link {
    color: var(--primary) !important;
}

.breadcrumb-section .breadcrumb-link:hover {
    color: var(--primary-dark) !important;
}

.breadcrumb-section .breadcrumb-current {
    color: var(--primary) !important;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary) !important;
}

.page-header-section .page-title {
    color: #fff;
}

/* ========== Contact Page (görsel yapı) ========== */
.contact-page-hero {
    background: #f8f8f8;
    padding: 3rem 0 4rem;
}

.contact-page-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page-heading {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.25;
}

.contact-page-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 520px;
}

.contact-page-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-page-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(197, 54, 45, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-page-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-page-card-meta {
    font-size: 0.875rem;
}

.contact-page-card-value {
    font-size: 0.95rem;
}

.contact-page-follow-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.contact-page-social-links {
    flex-wrap: wrap;
}

.contact-page-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #f8f8f8;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-page-social-icon:hover {
    background: #eee;
    border-color: #d1d5db;
    color: var(--primary);
}

.contact-page-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
}

.contact-page-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.contact-page-form .contact-page-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
}

.contact-page-input {
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
}

.contact-page-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 54, 45, 0.12);
}

.contact-page-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-page-submit {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.contact-page-submit:hover {
    background: #b83d30;
    color: #fff;
}

.contact-page-map {
    background: #e5e7eb;
}

.contact-page-map-inner {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 42%;
    overflow: hidden;
}

.contact-page-map-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== About Page (görsel tasarım) ========== */
.about-hero {
    background: #f8f8f8;
    padding: 4rem 0 5rem;
}

.about-hero-tag {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-hero-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.about-hero-highlight {
    color: #374151;
}

.about-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-hero-desc {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.about-hero-btn-primary {
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.about-hero-btn-primary:hover {
    background: #1e293b;
    color: #fff;
}

.about-hero-btn-outline {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: background 0.2s, color 0.2s;
}

.about-hero-btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.about-hero-stats {
    flex-wrap: wrap;
}

.about-hero-stat {
    display: flex;
    flex-direction: column;
}

.about-hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.about-hero-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.about-hero-image-wrap {
    max-width: 560px;
    margin-left: auto;
}

.about-hero-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-hero-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.about-hero-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(197, 54, 45, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* About feature cards */
.about-features {
    background: #fff;
}

.about-feature-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.2s, transform 0.1s;
}

.about-feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #f8f8f8;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.about-feature-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Facility (dark block) */
.about-facility {
    background: #f8f8f8;
}

.about-facility-card {
    background: var(--secondary);
}

.about-facility-img {
    min-height: 280px;
}

.about-facility-img-placeholder {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.about-facility-body {
    background: var(--secondary);
}

.about-facility-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

.about-facility-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.about-facility-link {
    font-weight: 600;
    transition: opacity 0.2s;
}

.about-facility-link:hover {
    opacity: 0.9;
    color: #fff;
}

/* About gallery */
.about-gallery {
    background: #fff;
}

.about-gallery-label {
    letter-spacing: 0.08em;
}

.about-gallery-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
}

.about-gallery-track {
    margin: 0 -0.5rem;
}

.about-gallery-inner {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.about-gallery-inner::-webkit-scrollbar {
    display: none;
}

.about-gallery-item {
    scroll-snap-align: start;
    width: 320px;
    flex-shrink: 0;
}

.about-gallery-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.about-gallery-img-placeholder {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.about-gallery-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.about-gallery-cat {
    color: rgba(255, 255, 255, 0.8);
}

/* About CTA */
.about-cta {
    background: #f8f8f8;
}

.about-cta-inner {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.about-cta-highlight {
    color: #374151;
}

.about-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--secondary);
}

.about-cta-desc {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-btn-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s, color 0.2s;
}

.about-cta-btn-primary:hover {
    background: #b83d30;
    color: #fff;
}

.about-cta-btn-outline {
    background: #fff;
    color: var(--secondary);
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: background 0.2s, border-color 0.2s;
}

.about-cta-btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-swiper {
        height: 70vh;
        min-height: 400px;
    }

    .hero-swiper .swiper-slide {
        height: 70vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

/* ========== Galeri (eski yapı) ========== */
.gallery-page .btn-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    background: #fff;
    color: var(--secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-page .btn-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.gallery-page .btn-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-item.hidden {
    display: none !important;
}

.gallery-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
}

.gallery-item-link:hover {
    transform: translateY(-2px);
}

.gallery-item-link:hover .gallery-item-title {
    color: var(--primary);
}

.gallery-item-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: #e9ecef;
}

.gallery-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item-link:hover .gallery-item-img-wrap img {
    transform: scale(1.03);
}

.gallery-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    pointer-events: none;
}

.gallery-item-caption {
    padding: 0.25rem 0;
}

.gallery-item-cat {
    display: block;
    letter-spacing: 0.03em;
}

.gallery-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

/* Sitedeki tüm mavi yazılar kırmızı (Bootstrap + genel override) */
.text-primary,
a.text-primary,
.breadcrumb a,
footer a:not(.btn):not(.footer-social-link) {
    color: whitesmoke !important;
}

a:hover,
a.text-primary:hover,
.breadcrumb a:hover {
    color: var(--primary-dark) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}