/* =================================================================
   1. TEMEL AYARLAR VE DEĞİŞKENLER
   ================================================================= */
:root {
    --color-primary: #0D6EFD;
    --color-secondary: #FFC107;
    --color-success: #28a745;
    --color-info: #17a2b8;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-dark-text: #343a40;
    --color-light-text: #6c757d;
    --color-white: #ffffff;
    --header-bg: #ffffff;
    --offcanvas-bg: #0D6EFD;
    --footer-bg: #212529;
    --font-family-primary: 'Nunito', sans-serif;
    --header-height: 80px;
    --border-radius: 0.5rem;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* GLOBAL PERFORMANCE OPTIMIZATIONS */
* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

/* GPU acceleration için kritik elementler */
.site-header,
.hero-section,
.offcanvas {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body {
    font-family: var(--font-family-primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: var(--header-height);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Mobil optimizasyonlar */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}


/* =================================================================
   2. HEADER STİLLERİ
   ================================================================= */
.site-header {
    background-color: var(--header-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: var(--header-height);
    z-index: 1030;
    position: fixed;
    top: 0;
    width: 100%;
    transition: top 0.3s ease-in-out, height 0.3s ease-in-out;
    /* Hardware acceleration için */
    transform: translateZ(0);
    will-change: transform, height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.site-header.header-hidden {
    top: -90px;
    transform: translate3d(0, -90px, 0);
}

.site-header.scrolled {
    height: 70px;
}

/* DİKKAT: .header-container sınıfı kaldırıldı, yerleşim Bootstrap'e bırakıldı. */

.header-logo .navbar-brand img {
    height: 50px;
    transition: height 0.3s ease-in-out;
}

.site-header.scrolled .header-logo .navbar-brand img {
    height: 45px;
}

.header-nav .nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-text);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    /* Hardware acceleration */
    transform: translateZ(0);
    will-change: color, background-color;
}

.header-nav .nav-link:hover,
.header-nav .nav-link.active {
    color: var(--color-primary);
    background-color: rgba(13, 110, 253, 0.05);
}

.header-obs-button .btn-obs {
    background: linear-gradient(45deg, var(--color-secondary), #ffb300);
    color: var(--color-dark-text);
    font-weight: 800;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.header-obs-button .btn-obs:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
}

.header-menu-button .btn-menu-toggler {
    font-size: 1.6rem;
    color: var(--color-dark-text);
    border-radius: var(--border-radius);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.header-menu-button .btn-menu-toggler:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--color-primary);
}

/* =================================================================
   3. YAN MENÜ (OFFCANVAS) STİLLERİ
   ================================================================= */
.offcanvas {
    background-color: var(--offcanvas-bg);
    color: var(--color-white);
    transition: transform 0.5s ease-in-out;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offcanvas-title {
    font-weight: 800;
    font-size: 1.8rem;
}

.offcanvas .btn-close {
    filter: brightness(0) invert(1);
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
}

.offcanvas-body .nav-link {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.2s ease-in-out;
    border-radius: 6px;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.offcanvas-body .obs-link-side-menu {
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
}

.offcanvas-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.offcanvas-footer .social-icons-side a {
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.offcanvas-footer .social-icons-side a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.offcanvas-footer .copyright-text-side {
    margin-top: 20px;
    font-size: 0.8rem;
}

.offcanvas-footer .copyright-text-side a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.offcanvas-footer .copyright-text-side a:hover {
    color: var(--color-white);
}


/* =================================================================
   4. HERO SECTION STİLLERİ (TAMAMEN YENİLENDİ - V2)
   ================================================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.hero-slide.active {
    z-index: 2;
}

.hero-slide.clone {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 12s ease-out;
    transform: scale(1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-slide.active .hero-bg-image {
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 109, 253, 0.326) 0%, 
        rgba(255, 193, 7, 0.176) 50%,
        rgba(13, 109, 253, 0.479) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-button-wrapper {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
    text-align: center;
}

.hero-slide.active .hero-button-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: clamp(14px, 3vw, 20px) clamp(30px, 6vw, 45px);
    background: linear-gradient(135deg, #FFC107 0%, #FF8F00 100%);
    color: #1e3c72;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.hero-cta-btn:hover::before {
    left: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.7);
    color: #1e3c72;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

.hero-cta-btn:hover i {
    transform: translateX(8px);
}

/* Navigation */
.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.hero-nav-btn:hover {
    background: rgba(255, 193, 7, 0.9);
    border-color: #FFC107;
    color: #1e3c72;
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.hero-nav-btn:active {
    transform: scale(1.05);
}

.hero-prev {
    left: clamp(20px, 4vw, 40px);
}

.hero-next {
    right: clamp(20px, 4vw, 40px);
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: clamp(25px, 5vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(12px, 2vw, 18px);
    z-index: 10;
}

.hero-indicator {
    width: clamp(12px, 2.5vw, 18px);
    height: clamp(12px, 2.5vw, 18px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-indicator.active,
.hero-indicator:hover {
    background: #FFC107;
    border-color: #FFC107;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

/* Responsive Design - Mobile First */
@media (max-width: 992px) {
    .hero-section {
        height: 90vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.8vw, 1.4rem);
        margin-bottom: 35px;
    }
    
    .hero-nav-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .hero-prev {
        left: 25px;
    }
    
    .hero-next {
        right: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 85vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        margin-bottom: 18px;
        line-height: 1.15;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3.2vw, 1.25rem);
        margin-bottom: 30px;
        padding: 0 15px;
        max-width: 500px;
        line-height: 1.5;
    }
    
    .hero-cta-btn {
        padding: 16px 35px;
        font-size: clamp(0.95rem, 2.8vw, 1.15rem);
        gap: 10px;
        border-radius: 40px;
    }
    
    .hero-navigation {
        display: none; /* Hide navigation on mobile */
    }
    
    .hero-indicators {
        bottom: 25px;
        gap: 12px;
    }
    
    .hero-indicator {
        width: 12px;
        height: 12px;
        border-width: 1.5px;
    }
    
    .hero-indicator.active,
    .hero-indicator:hover {
        transform: scale(1.4);
    }
    
    /* Better mobile image positioning */
    .hero-bg-image {
        object-position: center 30%; /* Focus on center-top area for mobile */
    }
    
    /* Reduce overlay intensity on mobile for better text readability */
    .hero-overlay {
        background: linear-gradient(135deg, 
        rgba(13, 109, 253, 0.326) 0%, 
        rgba(255, 193, 7, 0.176) 50%,
        rgba(13, 109, 253, 0.479) 100%);
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
        min-height: 450px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 25px;
        padding: 0 10px;
        max-width: 400px;
    }
    
    .hero-cta-btn {
        padding: 14px 28px;
        font-size: clamp(0.9rem, 3vw, 1rem);
        gap: 8px;
        border-radius: 35px;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }
    
    .hero-indicator.active,
    .hero-indicator:hover {
        transform: scale(1.5);
    }
}

@media (max-width: 414px) {
    .hero-section {
        height: 75vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 25px 12px;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 9vw, 2.2rem);
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 3.8vw, 1rem);
        margin-bottom: 20px;
        padding: 0 8px;
        line-height: 1.4;
    }
    
    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        gap: 6px;
        border-radius: 30px;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    /* Better text shadows for very small screens */
    .hero-title {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-slide.active .hero-bg-image {
        transform: scale(1.02);
        transition-duration: 6s;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-button-wrapper {
        transition-duration: 0.5s;
    }
    
    .hero-slides {
        transition-duration: 0.5s;
    }
}


/* =================================================================
   5. FOOTER STİLLERİ (TAMAMEN YENİLENDİ)
   ================================================================= */
.site-footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Footer Logo ve Brand */
.footer-logo-section {
    text-align: center;
    margin-bottom: 25px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    text-align: center;
}

/* İletişim Bilgileri - Footer */
.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: center;
}

.footer-contact-info .contact-item i {
    width: 18px;
    height: 18px;
    color: #FFC107;
    font-size: 1rem;
}

.footer-contact-info .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-contact-info .contact-item a:hover {
    color: #FFC107;
}

/* Widget Başlıkları */
.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FFC107, #FF8F00);
    border-radius: 2px;
}

/* Navigation Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.footer-nav-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: bold;
    transform: translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #FFC107;
    padding-left: 25px;
}

.footer-nav-link:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Services List */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-service-item i {
    color: #FFC107;
    font-size: 0.8rem;
    width: 12px;
}

/* Working Hours */
.footer-hours-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.working-hours-container {
    margin-top: 10px;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.working-hours-item .day {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.working-hours-item .time {
    color: #FFC107;
    font-weight: 500;
}

/* Social Media Section */
.footer-social-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-content {
    max-width: 400px;
    margin: 0 auto;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-icon-link:hover {
    background: #FFC107;
    color: #1e3c72;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
    border-color: #FFC107;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.copyright-text a {
    color: #FFC107;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: white;
}

.made-with-love {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ataturk-quote {
    display: flex;
    align-items: center;
    gap: 12px;
    font-style: italic;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.ataturk-signature {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.ataturk-signature:hover {
    transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px;
    }
    
    .footer-widget {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav-link {
        justify-content: center;
        text-align: center;
    }
    
    .working-hours-item {
        justify-content: space-between;
    }
      .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .ataturk-quote {
        flex-direction: column;
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .ataturk-signature {
        height: 35px;
    }
    
    .social-icons-container {
        gap: 12px;
    }
    
    .social-icon-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}


/* =================================================================
   6. SABİT YARDIMCI BUTONLAR
   ================================================================= */
.fixed-button {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.fixed-button:hover {
    color: var(--color-white);
    transform: translateY(-4px);
}

.whatsapp-button {
    right: 20px;
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.back-to-top-button {
    right: 20px;
    bottom: 80px;
    background-color: var(--color-secondary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease; /* Animasyonu yavaşlattık */
}

.back-to-top-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-button:hover {
    background-color: #d19438;
    transform: translateY(-8px); /* Hover efektini artırdık */
}


/* =================================================================
   7. RESPONSIVE AYARLAR
   ================================================================= */
@media (max-width: 991.98px) {
    .header-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-obs-button .btn-obs span {
        display: none;
    }
    .header-obs-button .btn-obs {
        padding: 0.5rem 0.75rem;
    }
     .header-obs-button .btn-obs .fa-user-graduate {
        margin-right: 0 !important;
    }
    .header-logo .navbar-brand img {
        height: 45px;
    }
}

/* =================================================================
   8. HAKKIMIZDA BÖLÜMÜ STİLLERİ
   ================================================================= */
.about-section {
    background-color: #ffffff;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

.section-subtitle {
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark-text);
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.feature-item {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-dark-text);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 10px;
    color: var(--color-primary);
}

.feature-item i {
    font-size: 1.2rem;
}


/* =================================================================
   9. HİZMETLER BÖLÜMÜ STİLLERİ (ESKİ - YENİSİ AŞAĞIDA)
   ================================================================= */
/* Bu bölüm kaldırıldı - Yeni hizmetler carousel tasarımı kullanılıyor */


/* =================================================================
   10. KADRO BÖLÜMÜ STİLLERİ
   ================================================================= */
.team-section {
    background-color: #ffffff;
}

.team-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateX(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-dark-text);
    margin-bottom: 8px;
}

.team-title {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0;
}


/* =================================================================
   11. RESPONSIVE AYARLAR (GÜNCELLENDİ)
   ================================================================= */
@media (max-width: 991.98px) {
    .header-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-obs-button .btn-obs span {
        display: none;
    }
    .header-obs-button .btn-obs {
        padding: 0.5rem 0.75rem;
    }
     .header-obs-button .btn-obs .fa-user-graduate {
        margin-right: 0 !important;
    }
    .header-logo .navbar-brand img {
        height: 45px;
    }
}

/* =================================================================
   11. İLETİŞİM/ADRES BÖLÜMÜ STİLLERİ (YENİLENDİ)
   ================================================================= */
.address-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.address-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(13, 110, 253, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.address-section .container {
    position: relative;
    z-index: 2;
}

.address-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Modern iletişim kartları */
.address-info .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(13, 110, 253, 0.08);
    position: relative;
    overflow: hidden;
}

.address-info .contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.address-info .contact-item:hover::before {
    transform: scaleX(1);
}

.address-info .contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.address-info .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #1976d2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.2);
}

.address-info .contact-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-secondary), #ff9800);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.address-info .contact-item:hover .contact-icon::before {
    opacity: 1;
}

.address-info .contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.address-info .contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.address-info .contact-details {
    flex: 1;
    min-width: 0;
}

.address-info .contact-details h5 {
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 8px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.address-info .contact-details p {
    color: var(--color-light-text);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

.address-info .contact-item:hover .contact-details h5 {
    color: var(--color-primary);
}

/* Modern harita tasarımı */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.4s ease;
    background: white;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 2;
}

.map-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: none;
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1.05) contrast(1.1);
}

/* Contact section header improvements */
.address-section .section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.address-section .lead {
    font-size: 1.1rem;
    color: var(--color-light-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .address-section {
        padding: 60px 0;
    }
    
    .address-info .contact-item {
        padding: 20px 25px;
        gap: 16px;
    }
    
    .address-info .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .address-section {
        padding: 50px 0;
    }
    
    .address-section .section-title {
        font-size: 2rem;
    }
    
    .address-info .contact-item {
        padding: 18px 20px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .address-info .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .address-info .contact-icon i {
        font-size: 1.2rem;
    }
    
    .address-info .contact-details h5 {
        font-size: 1.1rem;
    }
    
    .address-info .contact-details p {
        font-size: 0.95rem;
    }
    
    .map-container {
        border-radius: 16px;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .address-section {
        padding: 40px 0;
    }
    
    .address-section .section-title {
        font-size: 1.8rem;
    }
    
    .address-info .contact-item {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .address-info .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .address-info .contact-icon i {
        font-size: 1.1rem;
    }
    
    .map-container iframe {
        height: 280px;
    }
}


/* =================================================================
   12. RESPONSIVE AYARLAR (GÜNCELLENDİ)
   ================================================================= */

/* =================================================================
   13. HİZMETLER CAROUSEL STİLLERİ (YENİLENDİ - İYİLEŞTİRİLDİ)
   ================================================================= */

/* =================================================================
   4. HİZMETLER BÖLÜMÜ - YENİ TASARIM
   ================================================================= */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.services-cards-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.services-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    perspective: 1000px;
}

.service-card {
    position: relative;
    width: 280px;
    height: 350px;
    border-radius: 20px;
    cursor: grab;
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    user-select: none;
}

.service-card:active {
    cursor: grabbing;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    transition: all var(--transition-slow);
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
    color: white;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all var(--transition-base);
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    color: white;
}

.service-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Sol ve sağ kartlar */
.service-card.left-card,
.service-card.right-card {
    transform: scale(0.9) rotateY(15deg);
    opacity: 0.8;
    box-shadow: var(--shadow-md);
}

.service-card.left-card {
    transform: scale(0.9) rotateY(15deg);
}

.service-card.right-card {
    transform: scale(0.9) rotateY(-15deg);
}

/* Merkez kart - Ana kart */
.service-card.center-card {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.service-card.center-card .service-card-icon {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.25);
}

/* Hover efektleri */
.service-card:hover {
    transform: scale(1.05) rotateY(0deg) translateY(-5px);
    opacity: 1;
    z-index: 15;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.center-card:hover {
    transform: scale(1.18) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 15;
    opacity: 1;
}

.team-card.center-card:hover {
    transform: scale(1.15) translateY(-10px);
}

/* Animasyon için gerekli stillerin eklenmesi */
.service-card.transition-active {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .services-cards-container {
        gap: 20px;
    }
    
    .service-card {
        width: 240px;
        height: 320px;
    }
    
    .service-card.center-card {
        transform: scale(1.05);
    }
    
    .service-card.left-card,
    .service-card.right-card {
        transform: scale(0.95) rotateY(10deg);
    }
}

@media (max-width: 768px) {
    .services-cards-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-card,
    .service-card.center-card,
    .service-card.left-card,
    .service-card.right-card {
        width: 280px;
        height: 320px;
        transform: scale(1);
        opacity: 1;
    }
}

/* =================================================================
   5. EĞİTİM HEDEFLERİ BÖLÜMÜ
   ================================================================= */
#our-process {
    
    .services-carousel-wrapper {
        padding: 0 30px;
    }
    
    .services-carousel-track {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-slide {
        width: 220px;
        min-height: 260px;
    }
    
    .service-box {
        min-height: 260px;
        padding: 22px 16px;
    }
    
    .service-slide.center {
        transform: scale(1.05);
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .carousel-btn.prev-btn {
        left: -24px;
    }
    
    .carousel-btn.next-btn {
        right: -24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0;
    }
    
    .service-slide {
        width: 200px;
        min-height: 240px;
    }
    
    .service-box {
        min-height: 240px;
        padding: 20px 14px;
        border-radius: 12px;
    }
    
    .service-slide.center {
        transform: scale(1.04);
    }
    
    .services-carousel-wrapper {
        padding: 0 20px;
    }
    
    .services-carousel-track {
        gap: 12px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }
    
    .service-slide {
        width: 280px;
        min-height: 220px;
    }
    
    .service-box {
        min-height: 220px;
        padding: 18px 12px;
    }
    
    .service-slide.center {
        transform: scale(1.02);
    }
    
    .services-carousel-wrapper {
        padding: 0 15px;
    }
    
    .services-carousel-container {
        padding: 30px 15px;
    }
    
    .carousel-btn.prev-btn {
        left: -15px;
    }
    
    .carousel-btn.next-btn {
        right: -15px;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
}

/* Team Carousel Responsive - GELİŞTİRİLMİŞ */
@media (max-width: 1400px) {
    .team-slide {
        width: 300px;
        min-width: 260px;
    }
}

@media (max-width: 1200px) {
    .team-slide {
        width: 280px;
        min-width: 240px;
    }
    
    .team-carousel-track {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .team-slide {
        width: 260px;
        min-width: 220px;
    }
    
    .team-carousel-track {
        gap: 16px;
        padding: 0 5px;
    }
    
    .team-carousel-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .team-slide {
        width: 240px;
        min-width: 200px;
    }
    
    .team-carousel-track {
        gap: 15px;
        padding: 0;
    }
    
    .team-carousel-wrapper {
        padding: 0 10px;
    }
    
    .team-image-simple {
        height: 250px;
    }
    
    .team-card-simple {
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .team-slide {
        width: 220px;
        min-width: 180px;
    }
    
    .team-carousel-track {
        gap: 12px;
    }
    
    .team-carousel-wrapper {
        padding: 0 5px;
    }
    
    .team-image-simple {
        height: 220px;
    }
    
    .team-card-simple {
        max-height: 320px;
    }
}

@media (max-width: 480px) {
    .team-slide {
        width: 200px;
        min-width: 160px;
    }
    
    .team-carousel-track {
        gap: 10px;
    }
    
    .team-image-simple {
        height: 200px;
    }
    
    .team-card-simple {
        max-height: 300px;
    }
}

/* Gallery Carousel Responsive */
@media (max-width: 1200px) {
    .gallery-slide {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .gallery-slide {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 260px;
    }
    
    .gallery-carousel-track {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-slide {
        width: 240px;
    }
    
    .gallery-carousel-track {
        gap: 12px;
    }
}

/* =================================================================
   14. PROCESS STİLLERİ
   ================================================================= */
#our-process {
    position: relative;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.padding {
    padding: 100px 0;
}

.bg-red {
    background-color: #dc3545;
}

.svg-process-top-holder,
.svg-process-bottom-holder {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}

.svg-process-top-holder {
    top: 0;
}

.svg-process-bottom-holder {
    bottom: 0;
}

.svg-process-top,
.svg-process-bottom {
    width: 100%;
    height: 60px;
    background: white;
}

.svg-process-top {
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.svg-process-bottom {
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.heading-title {
    text-align: center;
    margin-bottom: 60px;
}

.heading-title span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.heading-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0;
}

.whitecolor {
    color: white;
}

.font-normal {
    font-weight: 300;
}

.process-wrapp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.process-wrapp::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.process-wrapp li {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 220px;
}

.pro-step {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-wrapp li.active .pro-step,
.process-wrapp li:hover .pro-step {
    background: white;
    color: #dc3545;
    border-color: white;
    transform: scale(1.1);
}

.bottom20 {
    margin-bottom: 20px;
}

.fontbold {
    font-weight: 700;
}

.mt-n2 {
    margin-top: -0.5rem;
}

.mt-sm-0 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .process-wrapp {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .process-wrapp::before {
        display: none;
    }
    
    .heading-title h2 {
        font-size: 2rem;
    }
}

/* =================================================================
   15. YENİ KADRO CAROUSEL STİLLERİ
   ================================================================= */
/* =================================================================
   EKİBİMİZ CAROUSEL - GELİŞTİRİLMİŞ RESPONSİVE DÜZENLEMESİ
   ================================================================= */
.team-carousel-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 0 10px;
}

.team-slide {
    flex: 0 0 auto;
    min-width: 280px;
    width: 320px;
    margin: 0;
}

.team-slide.clone {
    opacity: 1;
}

.team-card-simple {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    max-height: 380px;
    border: 2px solid rgba(13, 110, 253, 0.05);
}

.team-card-simple:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.team-image-simple {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.team-image-simple img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card-simple:hover .team-image-simple img {
    transform: scale(1.08);
}

.team-info-simple {
    padding: 25px 20px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-name-simple {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.team-title-simple {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .team-slide {
        width: 300px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .team-slide {
        width: 280px;
        min-width: 220px;
    }
    
    .team-carousel-track {
        gap: 15px;
        padding: 0 8px;
    }
    
    .team-image-simple {
        height: 250px;
    }
    
    .team-info-simple {
        padding: 20px 15px;
        height: 90px;
    }
    
    .team-name-simple {
        font-size: 1.1rem;
    }
    
    .team-title-simple {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .team-slide {
        width: 260px;
        min-width: 200px;
    }
    
    .team-carousel-track {
        gap: 12px;
        padding: 0 5px;
    }
    
    .team-image-simple {
        height: 220px;
    }
    
    .team-carousel-wrapper {
        padding: 0 10px;
    }
}

/* =================================================================
   16. ETKİNLİKLER BÖLÜMÜ STİLLERİ
   ================================================================= */
.activities-section {
    background-color: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.activity-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-item:hover img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.activity-item:hover .activity-overlay {
    transform: translateY(0);
}

.activity-overlay h5 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.activity-overlay p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* =================================================================
   16. ETKİNLİKLER GALERİSİ STİLLERİ (ÇİFT SIRALI)
   ================================================================= */
.activities-gallery-section {
    background-color: #f8f9fa;
    overflow: hidden;
    padding-bottom: 60px;
}

.activities-double-carousel {
    overflow: hidden;
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.activities-row {
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 200px;
}

.activities-track {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    transition: none;
    will-change: transform;
    height: 180px;
}

/* CSS animasyonları kaldırıldı - JavaScript ile kontrol ediliyor */

.activity-item {
    flex: 0 0 auto;
    width: 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.activity-card {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.activity-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.activity-item:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-overlay {
    opacity: 1;
}

.activity-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
}

.activity-details .activity-date {
    font-size: 14px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.activity-details .activity-description {
    font-size: 13px;
    line-height: 1.4;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}

.activity-item:hover .activity-details h4,
.activity-item:hover .activity-details .activity-date,
.activity-item:hover .activity-details .activity-description {
    transform: translateY(0);
    opacity: 1;
}

/* =================================================================
   ETKİNLİK MODAL STİLLERİ - KİTAP TASARIMI (BOOTSTRAP ÇAKIŞMASIz)
   ================================================================= */

/* Modal Ana Container - Bootstrap Override */
#activityModal.activity-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    display: none !important;
    align-items: center;
    justify-content: center;
    z-index: 9999 !important;
    padding: 20px;
    box-sizing: border-box;
    transition: none !important;
}

#activityModal.activity-modal.show {
    display: flex !important;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal İçerik Container */
#activityModal .modal-container {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 85vh !important;
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    position: relative !important;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { 
        transform: scale(0.8) translateY(40px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Sol Resim Bölümü */
#activityModal .modal-image-section {
    flex: 0 0 45% !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 500px !important;
}

#activityModal .modal-image-section img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Sağ İçerik Bölümü */
#activityModal .modal-content-section {
    flex: 1 !important;
    padding: 35px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow-y: auto !important;
    background: #fafafa !important;
}

/* Kapama Butonu */
#activityModal .modal-close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    z-index: 10 !important;
}

#activityModal .modal-close-btn:hover {
    background: white !important;
    transform: scale(1.1) !important;
}

/* Başlık ve Meta Bilgiler */
#activityModal .modal-header-info {
    margin-bottom: 25px !important;
}

#activityModal .modal-category-badge {
    display: inline-block !important;
    background: linear-gradient(45deg, #0d6efd, #4c84ff) !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
}

#activityModal .modal-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

#activityModal .modal-meta-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
    padding: 20px !important;
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

#activityModal .modal-meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 0.95rem !important;
    color: #555 !important;
}

#activityModal .modal-meta-item i {
    color: #0d6efd !important;
    font-size: 1rem !important;
    width: 16px !important;
}

/* Açıklama */
#activityModal .modal-description {
    margin-bottom: 25px !important;
}

#activityModal .modal-description p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: #444 !important;
    margin: 0 !important;
    text-align: justify !important;
}

/* Action Butonları */
#activityModal .modal-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: auto !important;
    padding-top: 20px !important;
}

#activityModal .action-btn {
    flex: 1 !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

#activityModal .primary-btn {
    background: linear-gradient(45deg, #0d6efd, #4c84ff) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
}

#activityModal .primary-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.4) !important;
}

#activityModal .secondary-btn {
    background: linear-gradient(45deg, #6c757d, #8a92a5) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3) !important;
}

#activityModal .secondary-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.4) !important;
}

/* Öne Çıkan Rozeti */
#activityModal .modal-featured-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    background: linear-gradient(45deg, #ffd700, #ffed4e) !important;
    color: #333 !important;
    padding: 6px 12px !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.4) !important;
    z-index: 5 !important;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    #activityModal .modal-container {
        flex-direction: column !important;
        max-height: 90vh !important;
        margin: 10px !important;
    }
    
    #activityModal .modal-image-section {
        flex: 0 0 auto !important;
        min-height: 200px !important;
        max-height: 250px !important;
    }
    
    #activityModal .modal-content-section {
        padding: 25px !important;
    }
    
    #activityModal .modal-title {
        font-size: 1.4rem !important;
    }
    
    #activityModal .modal-actions {
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    #activityModal {
        padding: 10px !important;
    }
      #activityModal .modal-content-section {
        padding: 20px !important;
    }
    
    #activityModal .modal-title {
        font-size: 1.2rem !important;
    }
}

.modal-features h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.action-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn {
    background: linear-gradient(45deg, var(--color-primary), #4c84ff);
    color: white;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 110, 253, 0.4);
}

.secondary-btn {
    background: linear-gradient(45deg, #6c757d, #8a92a5);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 117, 125, 0.4);
}

/* Featured Badge */
.modal-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 5;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        margin: 20px;
        border-radius: 15px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .modal-description {
        font-size: 1rem;
    }
}

/* =================================================================
   17. MODAL POPUP STİLLERİ
   ================================================================= */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.gallery-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: scale(0.7) translateY(50px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    position: relative;
    padding: 0;
    margin: 0;
}

.modal-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
    display: block;
}

.modal-body {
    padding: 25px 30px;
    text-align: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-description {
    font-size: 1.1rem;
    color: var(--color-light-text);
    line-height: 1.6;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.modal-close i {
    font-size: 1.5rem;
    color: #333;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        margin: 20px;
        border-radius: 15px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
}

/* Gallery Item Interactivity */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(13, 110, 253, 0.9);
}

.gallery-icon {
    font-size: 2rem;
    margin-top: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-overlay {
    transition: all 0.4s ease;
}

.gallery-content h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =================================================================
   MODERN GELİŞTİRMELER - MOBİL VE RESPONSIVE İYİLEŞTİRMELER
   ================================================================= */

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, 
               transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* Modern section styling */
section {
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-box:hover,
.team-card-simple:hover,
.gallery-item:hover {
    animation: float   2s ease-in-out infinite;
}

/* Modern shadow system */
.card-shadow-sm {
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-shadow-md {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-shadow-lg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card-shadow-xl {
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.16);
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Loading animations */
@keyframes shimmer {
    0% { background-position: -468px 0; }
    100% { background-position: 468px 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 400% 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll behavior improvements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

/* Enhanced focus states for accessibility */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus,
.btn:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

/* =================================================================
   BÖLÜM GEÇİŞ AYIRICILAR VE TASARIMLAR
   ================================================================= */

/* Genel bölüm ayırıcısı */
.section-divider {
    position: relative;
    height: 80px;
    background: linear-gradient(135deg, #0D6EFD 0%, #2a5298 100%);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Dalga efekti ayırıcısı */
.wave-divider {
    position: relative;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FF8F00 100%);
    overflow: hidden;
}

.wave-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
    animation: wave-move 4s linear infinite;
}

@keyframes wave-move {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Zigzag ayırıcısı */
.zigzag-divider {
    position: relative;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

/* Yumuşak geçiş ayırıcısı */
.smooth-transition {
    position: relative;
    height: 40px;
    background: linear-gradient(135deg, #dc3545 0%, #e83e8c 100%);
    clip-path: ellipse(100% 100% at 50% 0%);
}

/* Geometrik ayırıcı */
.geometric-divider {
    position: relative;
    height: 70px;
    background: linear-gradient(135deg, #6f42c1 0%, #e83e8c 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    overflow: hidden;
}

.geometric-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slide-across 2s ease-in-out infinite;
}

@keyframes slide-across {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

/* =================================================================
   4.5. ENHANCED SEPARATOR (HAKKIMIZDA VE KADROMUZ ARASINDA)
   ================================================================= */
.enhanced-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    max-width: 200px;
}

.separator-icon {
    margin: 0 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

.separator-icon i {
    font-size: 1.5rem;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =================================================================
   6. YENİ KADROMUZ BÖLÜMÜ
   ================================================================= */
.team-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.team-cards-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.team-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    perspective: 1200px;
}

.team-card {
    position: relative;
    width: 280px;
    height: 380px;
    cursor: grab;
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    user-select: none;
}

.team-card:active {
    cursor: grabbing;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-card:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.team-card-front {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
}

.team-card-back {
    background: linear-gradient(145deg, var(--color-primary) 0%, #1976d2 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(25, 118, 210, 0.8));
    opacity: 0;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark-text);
}

.team-title {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Merkez kart efekti */
.team-card.center-card {
    transform: scale(1.08);
    z-index: 10;
}

.team-card.center-card .team-card-front {
    box-shadow: var(--shadow-lg);
}

/* Yan kartlar efekti */
.team-card:not(.center-card) {
    transform: scale(0.95);
    opacity: 0.8;
}

/* Hover efektleri */
.team-card:hover {
    transform: scale(1.05);
    z-index: 15;
    opacity: 1;
}

.team-card.center-card:hover {
    transform: scale(1.12);
}

/* Responsive tasarım */
@media (max-width: 992px) {
    .team-cards-container {
        gap: 30px;
    }
    
    .team-card {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-cards-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .team-card,
    .team-card.center-card {
        width: 280px;
        height: 380px;
        transform: scale(1);
        opacity: 1;
    }
}

/* Kadromuz - Owl Carousel Stillleri */
#ourteam-slider.owl-carousel .item {
    margin: 10px;
}

#ourteam-slider .team-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#ourteam-slider .team-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#ourteam-slider .image {
    position: relative;
    overflow: hidden;
}

#ourteam-slider .image img {
    width: 100%;
    height: 280px;
    object-fit: none;
    display: block;
    transition: transform 0.5s ease;
}

#ourteam-slider .team-box:hover .image img {
    transform: scale(1.05);
}

#ourteam-slider .team-content {
    padding: 20px;
    text-align: center;
}

#ourteam-slider .team-content h4 {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-dark-text);
}

#ourteam-slider .team-content p {
    margin: 0;
    color: var(--color-light-text);
    font-size: 14px;
}

#ourteam-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

#ourteam-slider.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

#ourteam-slider.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6d6d6;
    display: block;
    transition: all 0.3s ease;
}

#ourteam-slider.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary);
    width: 20px;
    border-radius: 5px;
}

/* Hizmetler - Owl Carousel Stilleri */
#services-slider.owl-carousel .item {
    margin: 10px;
}

#services-slider .service-box {
    position: relative;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#services-slider .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

#services-slider .service-box span {
    font-size: 48px;
    color: #fff;
    display: inline-block;
    margin-bottom: 25px;
}

#services-slider .service-box h4 {
    margin-bottom: 10px;
}

#services-slider .service-box h4 a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
}

#services-slider .service-box p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

#services-slider .bg-orange {
    background: linear-gradient(135deg, #FF9500, #FF5E3A);
}

#services-slider .bg-red {
    background: linear-gradient(135deg, #FF3B30, #FF2D55);
}

#services-slider .bg-green {
    background: linear-gradient(135deg, #4CD964, #34C759);
}

#services-slider .bg-blue {
    background: linear-gradient(135deg, #007AFF, #5AC8FA);
}

#services-slider .bg-purple {
    background: linear-gradient(135deg, #5856D6, #AF52DE);
}

#services-slider .bg-teal {
    background: linear-gradient(135deg, #64D2FF, #5AC8FA);
}

#services-slider.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

#services-slider.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

#services-slider.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6d6d6;
    display: block;
    transition: all 0.3s ease;
}

#services-slider.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary);
    width: 20px;
    border-radius: 5px;
}

.bottom10 {
    margin-bottom: 10px;
}

.bottom20 {
    margin-bottom: 20px;
}

.bottom25 {
    margin-bottom: 25px;
}

/* === ETKİNLİKLER BÖLÜMÜ - YENİ TASARIM === */
.activities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="20" cy="20" r="0.5" fill="%23000" opacity="0.05"/><circle cx="80" cy="80" r="0.5" fill="%23000" opacity="0.05"/><circle cx="40" cy="60" r="0.5" fill="%23000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.activities-row-container {
    margin-bottom: 30px;
    position: relative;
}

/* OWL CAROUSEL ETKİNLİK STİLLERİ */
.activities-carousel .owl-item {
    padding: 0 15px;
}

.activities-carousel .owl-stage-outer {
    padding: 20px 0;
}

.activities-carousel .owl-nav {
    display: none;
}

.activities-carousel .owl-dots {
    display: none;
}

/* ETKİNLİK KARTI TASARIMI */
.activity-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(13, 110, 253, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.activity-card:hover::before {
    opacity: 1;
}

.activity-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    z-index: 2;
}

.activity-category {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.activity-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-title {
    color: var(--color-primary);
}

.activity-date {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-date i {
    font-size: 0.9rem;
}

.activity-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.activity-btn {
    background: linear-gradient(45deg, var(--color-primary), #0056b3);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    margin-top: auto;
}

.activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
    background: linear-gradient(45deg, #0056b3, var(--color-primary));
}

/* ETKİNLİK KARTLARI VE MODAL STİLLERİ
   ================================================================= */

/* Etkinlik kartlarındaki konum bilgisi */
.activity-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.activity-location i {
    color: var(--color-primary);
    margin-right: 0.3rem;
}

/* Modal stilleri */
.activity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.activity-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    --bs-backdrop-zindex:#f5f5f500;
    
}

.modal-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
}

.activity-modal.show .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.modal-close {
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.modal-image-section {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modal-activity-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-category-badge {
    align-self: flex-start;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-featured-badge {
    align-self: flex-end;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.modal-featured-badge i {
    font-size: 1.1rem;
}

.modal-body-section {
    padding: 30px;
    flex: 1;
}

.modal-header-info {
    margin-bottom: 25px;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 15px;
    line-height: 1.2;
}

.modal-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-date-info,
.modal-time-info,
.modal-location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.modal-date-info i,
.modal-time-info i,
.modal-location-info i {
    color: var(--color-primary);
    font-size: 1.1rem;
    width: 16px;
}

/* Açıklama */
.modal-description {
    margin-bottom: 30px;
}

.modal-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.modal-participants-info {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.participants-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #555;
}

.stat-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.modal-registration-info {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.registration-required,
.registration-deadline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.registration-required {
    margin-bottom: 10px;
}

.registration-deadline {
    font-size: 0.95rem;
    opacity: 0.9;
}

.modal-features {
    margin-bottom: 30px;
}

.modal-features h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.feature-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.3rem;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.action-btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-primary), #4c84ff);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 110, 253, 0.4);
}

.secondary-btn {
    background: linear-gradient(135deg, #6c757d, #8a92a5);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 117, 125, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .modal-body {
        padding: 20px 25px;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .modal-close {
        width: 45px;
        height: 45px;
        top: 10px;
        right: 10px;
    }
}

/* =================================================================
   MOBIL OPTIMIZASYONLARI - PERFORMANS İÇİN
   ================================================================= */
@media (max-width: 768px) {
    /* Mobil cihazlarda daha hızlı animasyonlar */
    * {
        transition-duration: 0.2s !important;
    }
    
    .site-header {
        transition: top 0.2s ease-in-out, height 0.2s ease-in-out;
    }
    
    .site-header.header-hidden {
        transform: translate3d(0, -100%, 0);
    }
    
    /* Smooth scroll mobilde native kullan */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hover efektlerini mobilde kaldır */
    .header-nav .nav-link:hover,
    .header-obs-button .btn-obs:hover,
    .header-menu-button .btn-menu-toggler:hover {
        transform: none !important;
        background-color: inherit !important;
    }
    
    /* Mobil touch optimizasyonu */
    .nav-link, .btn {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
}

/* Ultra düşük çözünürlük cihazlar için */
@media (max-width: 480px) {
    .site-header {
        height: 70px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .site-header.scrolled {
        height: 60px;
    }
    
    .site-header.header-hidden {
        transform: translate3d(0, -70px, 0);
    }
}

/* Yüksek DPI ekranlar için optimize */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .site-header {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}