/* Root Değişkenler */
:root {
    --primary-color: #6c3bff;
    --secondary-color: #F7931E;
    --primary-color-rgb: 108, 59, 255;
    --secondary-color-rgb: 247, 147, 30;
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-900: oklch(21% .034 264.665);
    --white: #FFFFFF;
    --dark: 220 15% 6%;
    --secondary: 220 15% 14%;
    --foreground: 240 10% 10%;
    --background: 220 15% 6%;

    --blur-sm: 8px;
    --blur-md: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --spacing: .25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-7xl: 80rem;

    --font-primary: 'Outfit', sans-serif;

    --text-6xl: clamp(2.2rem, 5vw, 3.75rem);
    --text-5xl: clamp(1.8rem, 4vw, 3rem);
    --text-4xl: clamp(1.5rem, 3.5vw, 2.25rem);
    --text-3xl: clamp(1.3rem, 3vw, 1.875rem);
    --text-2xl: clamp(1.1rem, 2.5vw, 1.5rem);
    --text-xl: clamp(1rem, 2vw, 1.25rem);
    --text-lg: clamp(0.95rem, 1.5vw, 1.125rem);
    --text-base: clamp(0.85rem, 1.2vw, 1rem);
    --text-sm: clamp(0.75rem, 1vw, 0.875rem);
    --text-xs: clamp(0.65rem, 0.8vw, 0.75rem);
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: 1.5;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.35rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: 1.2;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --text-8xl: 6rem;
    --text-8xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --tracking-tighter: -.05em;
    --tracking-widest: .1em;
    --tracking-tighter: -.05em;
    --tracking-tight: -.025em;
    --tracking-wide: .025em;
    --tracking-wider: .05em;
    --tracking-widest: .1em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    background-color: #fafaf8;
    color: #1a1a1a;
    overflow-x: hidden;
    cursor: default;
    font-size: var(--text-base);
    line-height: 1.7;
}

ul, li {
    padding-left: 0;
    list-style: none;
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.z-20 {
    z-index: 20;
}

.tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
}
.tracking-tighter {
    --tw-tracking: var(--tracking-tighter);
    letter-spacing: var(--tracking-tighter);
    color:#000 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    color: var(--primary-color);
}
h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-5xl); }
h3 { font-size: var(--text-4xl); }
h4 { font-size: var(--text-3xl); }
h5 { font-size: var(--text-2xl); }
.lead { font-size: var(--text-xl); font-weight: 300; margin-bottom: 0;}

p {
    font-weight: 300;
    font-size: var(--text-lg);
}
strong {
    font-weight: 500;
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}

/* Geniş Boşluklar & Full-Width Sections */
section {
    padding: 100px 0;
}
.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    section {
        padding: 60px 0;
    }
}

/* ========================================
HEADER - DİNAMİK RENK YÖNETİMİ
======================================== */
.navbar-brand {
    display: flex;
    align-items: center;
}
.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}
.logo-dark {
    display: block;
}
.logo-light {
    display: none;
}

.inner-page .site-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 0;
    transition: all 0.3s ease;
}

.inner-page .site-header .logo-dark {
    display: block;
}
.inner-page .site-header .logo-light {
    display: none;
}

.inner-page .site-header .nav-link {
    color: #1a1a1a !important;
    letter-spacing: .5px;
}

.inner-page .site-header .nav-link:hover {
    color: var(--primary-color) !important;
}

/* .inner-page .site-header .btn-outline-secondary {
    color: #1a1a1a !important;
    border-color: #ddd !important;
}

.inner-page .site-header .btn-outline-secondary:hover {
    background: #1a1a1a !important;
    color: white !important;
} */

.inner-page .site-header .btn-dark {
    background: #1a1a1a !important;
    color: white !important;
}

.offcanvas .btn-secondary,
.inner-page .site-header .btn-secondary {
    padding: 5px 14px !important;
}

/* Ana sayfa: Header şeffaf, yazılar beyaz */
.home-page .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 0;
    transition: all 0.3s ease;
}

.home-page .site-header:not(.scrolled) .logo-dark {
    display: none;
}
.home-page .site-header:not(.scrolled) .logo-light {
    display: block;
}

.home-page .site-header .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: .5px;
}

.home-page .site-header .nav-link:hover {
    color: var(--primary-color) !important;
}

/* .home-page .site-header .btn-outline-secondary {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.home-page .site-header .btn-outline-secondary:hover {
    background: white !important;
    color: #1a1a1a !important;
} */

.home-page .site-header .btn-dark {
    background: white !important;
    color: #1a1a1a !important;
}
.home-page .site-header .btn-secondary {
    padding: 5px 14px !important;
}

/* ========================================
AKTİF NAV LINK
======================================== */

/* Varsayılan (iç sayfalar) */
.inner-page .site-header .nav-link.active {
    color: var(--primary-color, #6c3bff) !important;
    font-weight: 600 !important;
}

/* Ana sayfa */
.home-page .site-header .nav-link.active {
    color: var(--primary-color, #6c3bff) !important;
    font-weight: 600 !important;
}

/* Scroll durumu */
.site-header.scrolled .nav-link.active {
    color: var(--primary-color, #6c3bff) !important;
    font-weight: 600 !important;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 38px;
    }
}

/* Scroll durumu (hem ana hem iç sayfalar için ortak) */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
    position: fixed !important;
    padding: 0 !important;
}

.site-header.scrolled .logo-dark {
    display: block;
}
.site-header.scrolled .logo-light {
    display: none;
}

.site-header.scrolled .nav-link {
    color: #1a1a1a !important;
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
}

.site-header.scrolled .btn-dark {
    background: #1a1a1a !important;
    color: white !important;
}
.site-header.scrolled .btn-secondary {
    padding: 5px 14px !important;
}

/* ========================================
İÇ SAYFALAR İÇİN ÜST BOŞLUK
======================================== */
.inner-page .main-content {
    padding-top: 55px !important;
}

/* Responsive düzenlemeler */
@media (max-width: 991px) {
    .inner-page .main-content {
        padding-top: 45px !important;
    }
}

/* ========================================
   BREADCRUMB - MODERN & SENIOR
======================================== */
.breadcrumb-section {
    background: transparent !important;
    padding: 1rem 0 0.5rem 0;
    margin-top: 70px; /* Header yüksekliği */
    position: relative;
    z-index: 2;
}

.breadcrumb-modern {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #cbd5e1;
    font-weight: 300;
    margin-left: 0.5rem;
}

.breadcrumb-item .breadcrumb-link {
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 500;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.breadcrumb-item .breadcrumb-link:hover {
    color: var(--primary-color, #6c3bff);
    background: rgba(108, 59, 255, 0.04);
    transform: translateX(2px);
}

.breadcrumb-item.active .breadcrumb-current {
    color: var(--primary-color, #6c3bff);
    font-weight: 700;
    background: rgba(108, 59, 255, 0.06);
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
}

.breadcrumb-item .fa-home {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.breadcrumb-item .fa-home:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 0.75rem 0;
        margin-top: 60px;
    }
    .breadcrumb-modern {
        font-size: 0.75rem;
        gap: 0.25rem;
        flex-wrap: wrap;
    }
    .breadcrumb-item:not(:last-child)::after {
        margin-left: 0.25rem;
    }
    .breadcrumb-item .breadcrumb-link {
        padding: 0.1rem 0.25rem;
    }
    .breadcrumb-item.active .breadcrumb-current {
        padding: 0.1rem 0.5rem;
        font-size: 0.75rem;
    }
}
/* ========================================
   FOOTER - SENIOR SEVİYESİ
======================================== */

.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Başlıklar */
.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Marka */
.footer-brand .logo-img {
    filter: brightness(0) invert(1);
    height: 45px;
    width: auto;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.6);
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    position: relative;
}

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

.footer-links a::before {
    content: '›';
    margin-right: 0.3rem;
    opacity: 0;
    transition: all 0.25s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 0.6rem;
}

/* İletişim */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    width: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* Bülten */
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 59, 255, 0.15);
}

.footer-newsletter .btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

.footer-newsletter .btn:hover {
    background: #5a2edb;
}

/* Alt Bilgi */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 2rem 0 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 1.5rem;
}

.footer-legal li a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.25s ease;
}

.footer-legal li a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-legal {
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0 1rem;
    }
    .footer-brand .logo-img {
        height: 36px;
    }
    .footer-title::after {
        left: 0;
    }
}

/* ========================================
    BUTONLAR ve CTA
======================================== */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 59, 255, 0.3);
    background: var(--primary-color);
}
.btn-secondary {
    background: var(--secondary-color);
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 59, 255, 0.3);
    background: var(--secondary-color);
}
.btn-outline-primary {
    border-color: rgb(var(--primary-color-rgb) / 0.2) !important;
    color: var(--primary-color) !important;
    padding: 5px 14px;
}
.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 59, 255, 0.3);
    background: var(--primary-color);
    color: white !important;
}
.btn-outline-secondary {
    border-color: rgb(var(--secondary-color-rgb) / 0.2) !important;
    color: var(--secondary-color) !important;
    padding: 5px 14px;
}
.btn-outline-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(163, 99, 16, 0.3);
    background: var(--secondary-color);
    color: black !important;
}
.btn-outline-light {
    padding: 14px 40px !important;
}
.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 84, 98, 0.3) !important;
}

.btn-light {
    padding: 14px 40px !important;
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 84, 98, 0.3) !important;
}

/* Mouse Hareketi ile Obje Hareketi (JS ile desteklenecek) */
.parallax-mouse {
    transition: transform 0.1s ease-out;
    will-change: transform;
}


/* Scroll Indicator Animasyonu */
@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Responsive düzeltmeler */
@media (max-width: 576px) {
    .scroll-indicator {
        bottom: 15px !important;
    }
    .scroll-indicator span {
        font-size: 0.6rem !important;
    }
    .scroll-line {
        height: 35px !important;
    }
}


/* ========================================
BACK TO TOP BUTTON
======================================== */

   .back-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(108, 59, 255, 0.3);
}

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

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(108, 59, 255, 0.4);
    background: var(--primary-color) !important;
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 576px) {
    .back-to-top {
        width: 40px !important;
        height: 40px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    .back-to-top i {
        font-size: 1rem !important;
    }
}


/* ========================================
   PRELOADER - SENIOR SEVİYESİ
======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0a0a0a;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 1;
    visibility: visible;

    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    color: #fff;
}

/* Dairesel SVG Progress */
.preloader-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.preloader-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.preloader-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.preloader-progress {
    fill: none;
    stroke: var(--primary-color, #6c3bff); /* MOR */
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.2s ease;
}

.preloader-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.preloader-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* İsteğe bağlı: alt metin yerine logo */
.preloader-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
    .preloader-circle {
        width: 70px;
        height: 70px;
    }
    .preloader-percent {
        font-size: 1rem;
    }
}

.dropdown-menu .dropdown-item:hover {
    color: var(--primary-color) !important;
    background-color: rgba(var(--primary-color-rgb), 0.1) !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    .dropdown .dropdown-menu {
        display: none;
    }
}

/* ========================================
   MEGA MENU - KARARLI SÜRÜM
======================================== */
.dropdown-mega {
    position: static !important;
}

.dropdown-mega .dropdown-mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 2rem 0;
    margin-top: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    transform: none;
    display: none;
    z-index: 1050;
}

/* Hover ile açılış (Desktop) */
@media (min-width: 992px) {
    .dropdown-mega:hover .dropdown-mega-menu {
        display: block !important;
    }
}

/* İçerik container */
.dropdown-mega .dropdown-mega-menu .mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Kategori listesi */
.mega-category-list {
    border-right: 1px solid rgba(0,0,0,0.04);
    padding-right: 0.5rem;
}

.mega-category-list li {
    margin-bottom: 0.25rem;
}

.category-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 10px;
    cursor: pointer;
}

.category-link:hover {
    background: rgba(108, 59, 255, 0.06);
    color: var(--primary-color);
}

.category-link.active {
    background: var(--primary-color);
    color: #fff;
}

.category-link i {
    width: 20px;
    text-align: center;
}

/* Hizmet grid */
.service-item {
    transition: all 0.25s ease;
}

.service-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    background: transparent;
}
.service-link p {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0;
}

.service-link:hover {
    background: rgba(108, 59, 255, 0.04);
    color: var(--primary-color);
    transform: translateX(2px);
}

.service-link i {
    width: 18px;
    text-align: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Filtreleme */
.service-item.hidden {
    display: none !important;
}

/* Ana sayfada (şeffaf header) */
.home-page .dropdown-mega-menu {
    background: rgba(255,255,255,0.95);
}

.site-header {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                box-shadow 0.4s ease,
                backdrop-filter 0.4s ease;
}

/* Scroll durumunda */
.site-header.scrolled .dropdown-mega-menu {
    background: rgba(255,255,255,0.98);
}

/* Responsive - Mobil */
@media (max-width: 991px) {
    .dropdown-mega {
        position: relative !important;
    }
    .dropdown-mega .dropdown-mega-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        width: 100%;
        padding: 1.5rem;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(0,0,0,0.04);
        background: #fff;
        backdrop-filter: none;
        display: none;
    }
    .dropdown-mega.show .dropdown-mega-menu {
        display: block !important;
    }
    .dropdown-mega .dropdown-mega-menu .mega-menu-inner {
        padding: 0;
    }
    .mega-category-list {
        border-right: none;
        padding-right: 0;
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .mega-category-list li {
        margin-bottom: 0;
    }
    .category-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        display: inline-block;
    }
    .service-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .service-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .dropdown-mega .dropdown-mega-menu {
        padding: 1rem;
    }
}

/* ========================================
   SECTION HEADER - MODERN TAG + ÇİZGİ
======================================== */

.section-header {
    margin-bottom: 2.5rem;
}

.section-header.text-center {
    text-align: center;
}
.section-header.text-right {
    text-align: right;
}

/* Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Sol çizgi */
.tag-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Sağ çizgi (varsayılan gizli) */
.tag-line-right {
    display: none;
}

/* Center hizalama: iki çizgi de görünür */
.section-tag.is-center {
    justify-content: center;
    gap: 0.75rem;
}

.section-tag.is-center .tag-line-left,
.section-tag.is-center .tag-line-right {
    display: inline-block;
}

.section-tag.is-center .tag-line-left {
    width: 32px;
}

.section-tag.is-center .tag-line-right {
    width: 32px;
}

/* Tag yazısı */
.tag-text {
    color: var(--primary-color);
    opacity: 0.85;
    white-space: nowrap;
}

/* Başlık */
.section-title {
    --tw-tracking: var(--tracking-tighter);
    letter-spacing: var(--tracking-tighter);
    color:#000 !important;
    text-transform: uppercase;
    font-size: var(--text-6xl);
    font-weight: 700;
}

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

/* Alt başlık */
.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.6;
    margin-top: 0.25rem;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.text-right .section-subtitle {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .section-tag {
        font-size: 0.6rem;
        gap: 0.5rem;
    }
    .tag-line {
        width: 20px;
    }
    .section-tag.is-center .tag-line-left,
    .section-tag.is-center .tag-line-right {
        width: 24px;
    }
}

/* Sağ hizalama için (isteğe bağlı) */
.text-right .section-tag {
    flex-direction: row-reverse;
}


/* ========================================
   PAGINATION - MODERN & SENIOR
======================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin: 2rem 0 0;
}

.pagination-wrapper .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border-radius: 14px;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pagination-wrapper .page-item {
    display: inline-block;
}

.pagination-wrapper .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a4a;
    background: transparent;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.pagination-wrapper .page-link:hover {
    background: rgba(108, 59, 255, 0.06);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.pagination-wrapper .page-link:active {
    transform: scale(0.95);
}

/* Aktif sayfa */
.pagination-wrapper .page-item.active .page-link {
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(108, 59, 255, 0.2);
}

.pagination-wrapper .page-item.active .page-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(108, 59, 255, 0.3);
}

/* Devre dışı */
.pagination-wrapper .page-item.disabled .page-link {
    color: #c4c4c4;
    cursor: not-allowed;
    background: transparent;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

.pagination-wrapper .page-item.disabled .page-link:hover {
    background: transparent;
    color: #c4c4c4;
    transform: none;
}

/* Dots (…) */
.pagination-wrapper .page-link.dots {
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: default;
    min-width: 32px;
}

.pagination-wrapper .page-link.dots:hover {
    background: transparent;
    color: #a0a0a0;
    transform: none;
}

/* SVG ikonlar */
.pagination-wrapper .page-link svg {
    flex-shrink: 0;
    color: currentColor;
}

.pagination-wrapper .page-item:not(.disabled) .page-link svg {
    color: #4a4a4a;
}

.pagination-wrapper .page-item:not(.disabled) .page-link:hover svg {
    color: var(--primary-color);
}

.pagination-wrapper .page-item.active .page-link svg {
    color: #fff;
}

/* İlk ve son sayfa butonları için farklı boyut */
.pagination-wrapper .page-item:first-child .page-link,
.pagination-wrapper .page-item:last-child .page-link {
    min-width: 44px;
}

/* Sadece sayfa numaraları için */
.pagination-wrapper .page-item:not(:first-child):not(:last-child) .page-link {
    font-feature-settings: "tnum";
}

/* Responsive */
@media (max-width: 576px) {
    .pagination-wrapper .pagination {
        padding: 0.35rem;
        gap: 0.2rem;
        border-radius: 12px;
    }
    .pagination-wrapper .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 0.5rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    .pagination-wrapper .page-item:first-child .page-link,
    .pagination-wrapper .page-item:last-child .page-link {
        min-width: 38px;
    }
    .pagination-wrapper .page-link svg {
        width: 16px;
        height: 16px;
    }
    .pagination-wrapper .page-link.dots {
        min-width: 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .pagination-wrapper .page-link {
        min-width: 30px;
        height: 30px;
        font-size: 0.7rem;
        padding: 0 0.35rem;
    }
    .pagination-wrapper .page-item:first-child .page-link,
    .pagination-wrapper .page-item:last-child .page-link {
        min-width: 34px;
    }
}

/* ========================================
   OFF-CANVAS MENU - PROFESYONEL TASARIM
======================================== */

/* Offcanvas arka planı (koyu tema) */
.offcanvas {
    background: #0a0a0a !important;
    color: #fff !important;
    width: 340px !important;
    max-width: 85vw !important;
    z-index: 1060 !important;
}
.offcanvas-backdrop {
    z-index: 1055 !important;
}

.offcanvas .offcanvas-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas .navbar-brand img {
    height: 40px;
    width: auto;
}

.offcanvas .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.offcanvas .btn-close-white:hover {
    opacity: 1;
}

/* Offcanvas menü linkleri */
.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

.offcanvas .nav-link i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
}

.offcanvas .nav-link:hover i {
    opacity: 1;
}

.offcanvas .nav-link.active {
    background: rgba(108, 59, 255, 0.12);
    color: var(--primary-color) !important;
}

.offcanvas .nav-link.active i {
    opacity: 1;
    color: var(--primary-color);
}

/* Offcanvas içindeki dropdown */
.offcanvas .dropdown-menu {
    background: transparent !important;
    border: none !important;
    padding-left: 0.5rem !important;
    box-shadow: none !important;
}

.offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 0.45rem 1rem 0.45rem 2.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.offcanvas .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
}

/* Offcanvas alt kısım (border) */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Offcanvas scroll */
.offcanvas-body::-webkit-scrollbar {
    width: 4px;
}

.offcanvas-body::-webkit-scrollbar-track {
    background: transparent;
}

.offcanvas-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

/* ========================================
    SOCIAL MEDIA LINKS - SENIOR SEVİYESİ
======================================== */

.social-links-wrapper {
    display: inline-flex;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
/* Base Link */
.social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    outline: none;
    color: #939393;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    min-width: 44px;
    min-height: 44px;
    gap: 0.5rem;
}
.social-link i {
    transition: all 0.3s ease;
    line-height: 1;
}
.social-link .social-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover .social-label {
    opacity: 1;
    transform: translateX(0);
}

/* Variant: Circle */
.social-link.circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    padding: 0;
    min-width: unset;
    min-height: unset;
}

.social-link.circle i {
    font-size: 1.2rem;
}

.social-link.circle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.social-link.circle:hover .social-label {
    display: none;
}

/* Variant: Rounded */
.social-link.rounded {
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 0, 0, 0.03);
    min-width: unset;
    min-height: unset;
}

.social-link.rounded i {
    font-size: 1rem;
}

.social-link.rounded .social-label {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
    transform: none;
}

.social-link.rounded:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.social-link.rounded:hover .social-label {
    opacity: 1;
}

/* Variant: Text (sadece yazı) */
.social-link.text {
    background: transparent;
    padding: 0.25rem 0;
    border-radius: 0;
    min-width: unset;
    min-height: unset;
    gap: 0;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link.text i {
    display: none;
}

.social-link.text .social-label {
    opacity: 1;
    transform: none;
    font-size: 0.85rem;
}

.social-link.text:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Platform Renkleri (Hover) */
.social-facebook:hover {
    color: #1877f2 !important;
    background: rgba(24, 119, 242, 0.08) !important;
}
.social-twitter:hover {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}
.social-instagram:hover {
    color: #e4405f !important;
    background: rgba(228, 64, 95, 0.08) !important;
}
.social-linkedin:hover {
    color: #0a66c2 !important;
    background: rgba(10, 102, 194, 0.08) !important;
}
.social-youtube:hover {
    color: #ff0000 !important;
    background: rgba(255, 0, 0, 0.08) !important;
}
.social-tiktok:hover {
    color: #000000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

/* Circle variant için platform renkleri */
.social-link.circle.social-facebook:hover {
    background: #1877f2 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.25);
}
.social-link.circle.social-twitter:hover {
    background: #000000 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.social-link.circle.social-instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(228, 64, 95, 0.3);
}
.social-link.circle.social-linkedin:hover {
    background: #0a66c2 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
}
.social-link.circle.social-youtube:hover {
    background: #ff0000 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}
.social-link.circle.social-tiktok:hover {
    background: #000000 !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Animasyon: Slide */
.social-link[data-animation="slide"]:hover {
    transform: translateY(-3px) translateX(2px);
}

/* Animasyon: Scale */
.social-link[data-animation="scale"]:hover {
    transform: scale(1.12);
}

/* Animasyon: Pulse */
.social-link[data-animation="pulse"]:hover {
    animation: pulse 0.8s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.social-link::after {
    content: attr(data-platform);
    position: fixed;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    opacity: 0;
    transition: all 0.25s ease;
    pointer-events: none;
    white-space: nowrap;
}

.social-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Responsive */
@media (max-width: 576px) {
    .social-link {
        min-width: 36px;
        min-height: 36px;
        font-size: 0.9rem;
        padding: 0.35rem;
    }
    .social-link.circle {
        width: 40px;
        height: 40px;
    }
    .social-link.circle i {
        font-size: 1rem;
    }
    .social-link.rounded {
        padding: 0.35rem 0.8rem;
    }
    .social-link.rounded .social-label {
        font-size: 0.7rem;
    }
    .social-links {
        gap: 0.5rem;
    }
}

/* Mobil menü toggle ikonu (iç sayfalar) */
.inner-page .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.home-page .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Scroll durumunda hamburger ikonu (hem ana hem iç sayfalar) */
.site-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive */
@media (max-width: 576px) {
    .offcanvas {
        width: 100% !important;
        max-width: 100% !important;
    }
    .offcanvas .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1rem;
    }
}

/* ============================================
   Duyarlılık (Responsive) Ek Düzeltmeler
   ============================================ */
   @media (max-width: 991px) {
    section { padding: 60px 0; }
    .hero { min-height: 60vh; }
}
@media (max-width: 768px) {

}
@media (max-width: 576px) {
    section { padding: 40px 0; }
    .hero { min-height: 50vh; }
    .card-img-top { height: 160px; }
}

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    :root {
        --text-xs: 0.7rem;
        --text-sm: 0.8rem;
        --text-base: 0.9rem;
        --text-lg: 1rem;
        --text-xl: 1.1rem;
        --text-2xl: 1.25rem;
        --text-3xl: 1.5rem;
        --text-4xl: 1.8rem;
        --text-5xl: 2.2rem;
        --text-6xl: 2.8rem;
        --text-7xl: 3.2rem;
        --text-8xl: 4rem;
    }
}

/* Mobil (576px ve altı) */
@media (max-width: 576px) {
    :root {
        --text-xs: 0.65rem;
        --text-sm: 0.75rem;
        --text-base: 0.85rem;
        --text-lg: 0.95rem;
        --text-xl: 1rem;
        --text-2xl: 1.1rem;
        --text-3xl: 1.3rem;
        --text-4xl: 1.5rem;
        --text-5xl: 1.8rem;
        --text-6xl: 2.2rem;
        --text-7xl: 2.6rem;
        --text-8xl: 3rem;
    }
}