/* Optimia Web Sitesi - Modern Ana Stil Dosyası */
/* Cache busting - will-change removed: 2025-01-17 */

/* Performance Optimizations for Scroll-Linked Effects */
* {
    box-sizing: border-box;
}

/* Performance optimizations - Minimal GPU acceleration */
.service-card,
.portfolio-card,
.blog-card,
.testimonial-card,
.process-card,
.reference-logo {
    /* Removed GPU acceleration for better scroll performance */
}

/* Modern CSS Variables - Logo Uyumlu Renk Paleti */
:root {
    /* Ana Renkler - Logo Mavi Tabanlı */
    --primary-color: #6b7280;        /* Gri - Logo'dan */
    --logo-blue: #6b7280;             /* Logo Grisi - Optimia Software */
    --logo-green: #6b7280;            /* Logo Gri - Optimia Software */
    --primary-dark: #4b5563;         /* Daha koyu gri */
    --primary-light: #6b7280;        /* Açık gri */
    --primary-50: #f9fafb;           /* Çok açık gri */
    --primary-100: #f3f4f6;          /* Açık gri */
    --primary-200: #e5e7eb;          /* Orta açık gri */
    
    /* Vurgu Renkleri - Logo Yeşil Tabanlı */
    --accent-color: #6b7280;        /* Logo grinin canlı tonu */
    --accent-dark: #4b5563;          /* Koyu gri */
    --accent-light: #9ca3af;          /* Açık gri */
    --accent-50: #f9fafb;            /* Çok açık gri */
    --accent-100: #f3f4f6;           /* Açık gri */
    
    /* Tamamlayıcı Renkler */
    --secondary-color: #6b7280;       /* Gri - Logo'dan */
    --success-color: #6b7280;         /* Gri (accent ile aynı) */
    --info-color: #6b7280;           /* Gri */
    --warning-color: #f59e0b;        /* Turuncu */
    --danger-color: #ef4444;          /* Kırmızı */
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-family: 'Poppins', 'Poppins-fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    --transition: none;
    --transition-fast: none;
}

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

/* Font optimization - CLS azaltma */
@font-face {
    font-family: 'Poppins-fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-display: swap;
    size-adjust: 100%;
    ascent-override: 100%;
    descent-override: 20%;
    line-gap-override: 0%;
}

body {
    font-family: 'Poppins', 'Poppins-fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Scroll - sayfa her zaman aşağı inebilsin; overscroll-behavior kaldırıldı (mouse tekerleği ile kaydırmayı engelliyordu) */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

/* Typography Scale - CLS önleme için sabit boyutlar */
h1 { 
    font-size: 2rem; 
    font-weight: 500; 
    min-height: 2.4rem; 
    line-height: 1.2; 
}
h2 { 
    font-size: 1.75rem; 
    font-weight: 500; 
    min-height: 2.1rem; 
    line-height: 1.2; 
}
h3 { 
    font-size: 1.5rem; 
    font-weight: 500; 
    min-height: 1.8rem; 
    line-height: 1.2; 
}
h4 { 
    font-size: 1.25rem; 
    font-weight: 400; 
    min-height: 1.5rem; 
    line-height: 1.2; 
}
h5 { 
    font-size: 1.1rem; 
    font-weight: 400; 
    min-height: 1.32rem; 
    line-height: 1.2; 
}
h6 { 
    font-size: 1rem; 
    font-weight: 400; 
    min-height: 1.2rem; 
    line-height: 1.2; 
}

p { font-size: 15px; font-weight: 400; }
small { font-size: 12px; font-weight: 400; }
.lead { font-size: 16px; font-weight: 400; }

/* Modern Header Stilleri */
.modern-header {
    transition: background-color 0.2s ease;
    padding: 0.75rem 0;
    min-height: 80px;
}

/* Navbar scroll effect - reflow önleme için transform kullan */
.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

/* Modern Logo Stilleri */
.modern-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.modern-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.modern-logo:hover .logo-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.35);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* Modern Nav Stilleri */
.modern-nav {
    gap: 0.5rem;
}

.modern-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
    background: transparent;
    border: none;
}

.modern-link:hover {
    color: #000000;
    background: transparent;
    transform: none;
    box-shadow: none;
}

.modern-link.active {
    color: #000000;
    background: transparent;
    box-shadow: none;
    font-weight: 600;
}

.modern-link i {
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-right: 0.25rem;
}

/* Modern Toggler */
.modern-toggler {
    border: 2px solid #6b7280;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background: transparent;
    color: #6b7280;
}

.modern-toggler:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
}

.modern-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(107, 114, 128, 0.25);
}

/* Ana Sayfa - Tek Sabit Konteyner */
.homepage-container {
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
}

/* Hero Section - Beyaz Tema */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.03) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    33% { transform: translateX(30px) translateY(-30px) rotate(120deg); }
    66% { transform: translateX(-20px) translateY(20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1e293b;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #64748b;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.min-vh-50 {
    min-height: 50vh;
}

/* Modern Service Cards - Gradient Styles */
.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Service Cards - Temiz Beyaz Tasarım */
.service-card {
    background: white !important;
    color: #1f2937 !important;
    border: 1px solid #e5e7eb !important;
}

.service-card:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border-color: transparent !important;
}

/* Genel service-card hover durumunda tüm yazıları beyaz yap */
.service-card:hover * {
    color: white !important;
}

.service-card:hover h3,
.service-card:hover h5,
.service-card:hover h6 {
    color: white !important;
}

.service-card:hover p,
.service-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-card:hover .content-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.service-card:hover .service-features h6 {
    color: white !important;
}

.service-icon {
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hover efektlerinde icon renkleri - Beyaz */
.service-card:hover .service-icon i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon-wrapper div {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
}

.service-card:hover .service-icon-wrapper div i {
    color: #000000 !important;
}

/* Service Card Icons - Siyah Renkler */
.service-card:nth-child(1) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card:nth-child(2) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card:nth-child(3) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card:nth-child(4) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card:nth-child(5) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card:nth-child(6) .service-icon i {
    color: #1e293b !important; /* Siyah */
    font-size: 3rem;
}

.service-card h5 {
    font-weight: 700;
    color: #1f2937 !important;
    transition: var(--transition);
}

.service-card:hover h5 {
    color: white !important;
}

.service-card p {
    color: #1e293b !important;
    transition: var(--transition);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Button styling */
.service-card .btn {
    background: #6b7280 !important;
    border: 1px solid #6b7280 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
    transform: translateY(-2px);
    color: white !important;
}

.service-card:hover .btn {
    background: white !important;
    border-color: white !important;
    color: #000000 !important;
}

.service-card:hover .btn:hover {
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
    color: #000000 !important;
}

/* Service Cards Override - HTML yapısına göre */
.services-section .service-card {
    background: white !important;
    color: #1f2937 !important;
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 280px !important;
    max-height: 320px !important;
    padding: 1.25rem !important;
    position: relative !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Service card içeriği için flex düzenleme */
.services-section .service-card > * {
    flex-shrink: 0 !important;
    text-align: center !important;
}

.services-section .service-card .service-icon {
    flex-shrink: 0 !important;
    margin-bottom: 1rem !important;
}

.services-section .service-card h5 {
    flex-shrink: 0 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
}

.services-section .service-card p {
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.services-section .service-card .btn {
    margin-top: auto !important;
    align-self: center !important;
    background: #6b7280 !important;
    border: 1px solid #6b7280 !important;
    color: white !important;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0.375rem !important;
    text-decoration: none !important;
}

.services-section .service-card .btn i {
    display: none !important;
}

.services-section .service-card .btn:hover {
    background: #2563eb !important;
    border-color: #2563eb !important;
    transform: translateY(-2px) !important;
    color: white !important;
}

.services-section .service-card:hover .btn {
    background: white !important;
    border-color: white !important;
    color: #000000 !important;
}

.services-section .service-card:hover .btn:hover {
    background: #f3f4f6 !important;
    border-color: #e5e7eb !important;
    color: #000000 !important;
}

.services-section .service-card:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* Hover durumunda tüm yazıları beyaz yap */
.services-section .service-card:hover * {
    color: white !important;
}

.services-section .service-card:hover h3,
.services-section .service-card:hover h5,
.services-section .service-card:hover h6 {
    color: white !important;
}

.services-section .service-card:hover p,
.services-section .service-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services-section .service-card:hover .content-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services-section .service-card:hover .service-features h6 {
    color: white !important;
}

/* Services section hover durumunda icon renkleri */
.services-section .service-card:hover .service-icon-wrapper div {
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
}

.services-section .service-card:hover .service-icon-wrapper div i {
    color: #000000 !important;
}

.services-section .service-card:hover i {
    color: #000000 !important;
}

.services-section .service-card h5 {
    color: #1f2937 !important;
    font-weight: 700 !important;
}

.services-section .service-card:hover h5 {
    color: white !important;
}

.services-section .service-card p {
    color: #1e293b !important;
}

.services-section .service-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Icon renkleri - HTML yapısına göre override - Siyah Renkler */
.services-section .service-card:nth-child(1) .service-icon i,
.services-section .service-card:nth-child(1) i,
.services-section .service-card:nth-child(1) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:nth-child(2) .service-icon i,
.services-section .service-card:nth-child(2) i,
.services-section .service-card:nth-child(2) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:nth-child(3) .service-icon i,
.services-section .service-card:nth-child(3) i,
.services-section .service-card:nth-child(3) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:nth-child(4) .service-icon i,
.services-section .service-card:nth-child(4) i,
.services-section .service-card:nth-child(4) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:nth-child(5) .service-icon i,
.services-section .service-card:nth-child(5) i,
.services-section .service-card:nth-child(5) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:nth-child(6) .service-icon i,
.services-section .service-card:nth-child(6) i,
.services-section .service-card:nth-child(6) .text-primary {
    color: #1e293b !important;
    font-size: 2.5rem !important;
}

.services-section .service-card:hover .service-icon i,
.services-section .service-card:hover i,
.services-section .service-card:hover .text-primary {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}


/* Responsive Carousel */
@media (max-width: 768px) {
    .testimonials-section .carousel-control-prev,
    .testimonials-section .carousel-control-next {
        display: none;
    }
    
    .testimonials-section .carousel-indicators {
        bottom: -30px;
    }
}

/* Modern Portfolio Cards */
.portfolio-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.portfolio-card:hover::before {
    opacity: 0.1;
}

.portfolio-image {
    transition: var(--transition);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-content {
    position: relative;
    z-index: 2;
    background: white;
}

.portfolio-card h5 {
    font-weight: 700;
    color: var(--gray-800);
    transition: var(--transition);
}

.portfolio-card:hover h5 {
    color: var(--primary-color);
}

/* Company Logo Cards */
.company-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.company-logo-card:hover .company-logo {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.05);
}

.company-logo-card:hover .logo-background {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
}

/* Hero Section Styles - Modern Design with Brush Effect */
.hero-section {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%);
    padding: 0;
    height: 56.25vw; /* 1920x1080 aspect ratio (1080/1920 = 0.5625) */
    max-height: 100vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(34, 197, 94, 0.2));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

/* Hero Contact Form */
.hero-contact-form {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 4rem;
}

.hero-contact-form .contact-form-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.contact-form-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    background: white;
}


/* References Section */
.references-section {
    background: #ffffff;
    position: relative;
}

.reference-logo {
    transition: all 0.3s ease;
    cursor: pointer;
}

.reference-logo:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reference-logo:hover .logo-placeholder {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

/* Work Process Section */
.work-process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    transform: scale(1.1);
}

.process-icon i {
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
}

.process-card:hover .process-icon i {
    color: white !important;
    transform: rotate(5deg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Process icon'ları kesinlikle görünür yap */
.work-process-section .process-icon {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.work-process-section .process-icon i {
    color: #1e293b !important;
}

.work-process-section .process-icon i {
    color: #1e293b !important;
    font-size: 2rem !important;
    text-shadow: none !important;
    z-index: 10 !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.work-process-section .process-card:hover .process-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
    transform: scale(1.1) !important;
}

.work-process-section .process-card:hover .process-icon i {
    color: white !important;
}

.work-process-section .process-card:hover .process-icon i {
    color: white !important;
    transform: rotate(5deg) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-title {
    color: var(--primary-color);
}

.process-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.process-card:hover .process-description {
    color: #475569;
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reference-logo {
    opacity: 0.6;
    transition: all 0.5s ease;
}

.reference-logo.active {
    opacity: 1;
    transform: scale(1.05);
}

.reference-logo.active .logo-placeholder {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

/* Clean Logo Styles - No boxes, just logos */
.company-logo-clean {
    transition: all 0.3s ease;
    filter: grayscale(100%) contrast(1.2) brightness(0.9);
    opacity: 0.8;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.reference-logo:hover .company-logo-clean {
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
    opacity: 1;
    transform: scale(1.05);
}

.logo-placeholder-clean {
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
}

.reference-logo:hover .logo-placeholder-clean {
    transform: scale(1.05);
}

.logo-placeholder-clean i {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.reference-logo:hover .logo-placeholder-clean i {
    color: #64748b;
    transform: scale(1.1);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 30px 0;
        min-height: auto;
        background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
    }
    
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        display: none;
    }
    
    .hero-contact-form {
        margin-top: 1rem;
        position: relative;
        z-index: 10;
    }
    
    .hero-contact-form .contact-form-card {
        margin: 0;
        padding: 0.5rem !important;
        max-width: 100%;
        width: 100%;
        max-height: none;
        overflow: visible;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobil form alanları 2 sütun */
    .hero-contact-form .contact-form .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 2px;
    }
    
    .hero-contact-form .contact-form .col-12 {
        padding: 0 2px;
    }
    
    /* Mobil form input'ları */
    .hero-contact-form .contact-form .form-control {
        padding: 0.4rem 0.3rem !important;
        font-size: 0.75rem !important;
        margin-bottom: 0.2rem !important;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
    }
    
    /* Mobil form başlığı */
    .hero-contact-form .contact-form-card h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
        color: #1e293b;
    }
    
    .hero-contact-form .contact-form-card p {
        font-size: 0.7rem !important;
        margin-bottom: 0.3rem !important;
        color: #64748b;
    }
    
    /* Mobil form butonu */
    .hero-contact-form .contact-form .btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.75rem !important;
        margin-top: 0.2rem !important;
        border-radius: 4px;
    }
    
    .hero-contact-form .contact-form textarea {
        min-height: 40px !important;
        resize: vertical !important;
    }
    
    .process-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .process-icon i {
        font-size: 1.5rem;
    }
    
    .reference-logo {
        margin-bottom: 1rem;
    }
    
    .logo-placeholder {
        height: 60px !important;
    }
    
    /* Mobil services section renk düzenlemesi */
    .services-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    }
    
    /* Mobil hero title düzenlemesi */
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    /* Mobil References Carousel */
    .references-carousel .carousel-inner {
        padding: 1rem 0;
    }
    
    .references-carousel .carousel-item {
        transition: transform 0.6s ease-in-out;
    }
    
    .references-carousel .carousel-control-prev,
    .references-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
    }
    
    .references-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .references-carousel .carousel-control-next {
        right: 10px;
    }
    
    .references-carousel .carousel-control-prev:hover,
    .references-carousel .carousel-control-next:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .references-carousel .carousel-indicators {
        bottom: -30px;
    }
    
    .references-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        margin: 0 3px;
    }
    
    .references-carousel .carousel-indicators button.active {
        background: var(--primary-color);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 40px 0;
        min-height: auto;
        background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-contact-form .contact-form .row .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .hero-contact-form .contact-form-card {
        padding: 0.4rem !important;
        margin: 0 !important;
        max-width: 100%;
        width: 100%;
        max-height: none;
        overflow: visible;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobil form alanları daha kompakt - 2 sütun */
    .hero-contact-form .contact-form .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 1px;
    }
    
    .hero-contact-form .contact-form .col-12 {
        padding: 0 1px;
    }
    
    .hero-contact-form .contact-form .form-control {
        padding: 0.3rem 0.2rem !important;
        font-size: 0.7rem !important;
        margin-bottom: 0.15rem !important;
        border: 1px solid #e2e8f0;
        border-radius: 3px;
    }
    
    .hero-contact-form .contact-form .btn {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.7rem !important;
        margin-top: 0.15rem !important;
        border-radius: 3px;
    }
    
    /* Küçük ekranlar için form başlığı */
    .hero-contact-form .contact-form-card h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
        color: #1e293b;
    }
    
    .hero-contact-form .contact-form-card p {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
        color: #64748b;
    }
    
    /* Küçük ekranlar için textarea */
    .hero-contact-form .contact-form textarea {
        min-height: 35px !important;
        resize: vertical !important;
    }
    
    .process-card {
        padding: 1rem;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -10px;
        right: 15px;
    }
    
    /* Mobil services section daha renkli */
    .services-section {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%) !important;
        padding: 3rem 0 !important;
    }
    
    /* Mobil service cards daha kompakt */
    .services-section .service-card {
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .services-section .service-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .services-section .service-icon i {
        font-size: 1.25rem !important;
    }
    
    .services-section .service-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .services-section .service-description {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Küçük ekranlar için carousel optimizasyonu */
    .references-carousel .carousel-control-prev,
    .references-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .references-carousel .carousel-control-prev {
        left: 5px;
    }
    
    .references-carousel .carousel-control-next {
        right: 5px;
    }
    
    .references-carousel .carousel-indicators {
        bottom: -25px;
    }
    
    .references-carousel .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
}

/* Hero Graphic */
.hero-graphic {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-graphic i {
    font-size: 4rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section {
    background: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

/* Portfolio Hero Section */
.portfolio-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.services-section .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.services-section .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-section .service-icon i {
    font-size: 1.5rem;
    color: #1e293b;
}

.services-section .service-card:hover .service-icon {
    transform: scale(1.1);
}

.services-section .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.services-section .service-description {
    color: #64748b;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio-section {
    background: #f8fafc;
    padding: 80px 0;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

/* Portfolio Overlay Effects */
.portfolio-overlay {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.portfolio-overlay .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-overlay .btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.portfolio-placeholder {
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.portfolio-description {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.blog-image {
    height: 120px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    margin-bottom: 1rem;
}

.blog-title a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

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

.blog-excerpt {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.company-logo {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.testimonial-card:hover .company-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.company-placeholder {
    color: #94a3b8;
}

.company-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 80px 0;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Hero Section Service Cards */
.hero-section .service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hero-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.hero-section .service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-section .service-icon i {
    font-size: 1.5rem;
    color: #1e293b;
}

.hero-section .service-card:hover .service-icon {
    transform: scale(1.1);
}

.hero-section .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.hero-section .service-description {
    color: #64748b;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-image i {
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


.portfolio-meta {
    color: var(--gray-600);
    transition: var(--transition);
}

/* Service Cards Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: white !important;
}

.portfolio-card:hover .portfolio-meta {
    color: var(--gray-700);
}

/* Modern Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}

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

.blog-card h5 a {
    color: var(--gray-800);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
}

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

.blog-meta {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.blog-meta .badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    font-weight: 600;
}

/* Modern Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-lg);
}

/* Services Section - Static Design */
.services-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.services-section .service-card {
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    background: white;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* Override any animation classes for services */
.services-section.animate-in,
.services-section .service-card.animate-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Content Text Styling */
.content-text {
    line-height: 1.8;
    color: var(--gray-700);
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text ul, .content-text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-text li {
    margin-bottom: 0.5rem;
}

.content-text h1, .content-text h2, .content-text h3, 
.content-text h4, .content-text h5, .content-text h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.content-text h1 { font-size: 1.5rem; }
.content-text h2 { font-size: 1.4rem; }
.content-text h3 { font-size: 1.3rem; }
.content-text h4 { font-size: 1.2rem; }
.content-text h5 { font-size: 1.1rem; }
.content-text h6 { font-size: 1rem; }

.content-text strong, .content-text b {
    font-weight: 600;
    color: var(--gray-800);
}

.content-text em, .content-text i {
    font-style: italic;
}

.content-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--gray-600);
}

.content-text code {
    background: var(--gray-100);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.content-text pre {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: var(--border-radius);
    overflow-x: auto;
    margin: 1rem 0;
}

.content-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-text a:hover {
    text-decoration: underline;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #9ca3af 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(75, 85, 99, 0.3) !important;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

/* Forms */
.form-control {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Cards */
.card {
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Badges */
.badge {
    border-radius: 6px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-section, .portfolio-section, .blog-section, .testimonials-section, .cta-section {
        padding: 60px 0;
    }
    
    .hero-graphic {
        width: 200px;
        height: 200px;
    }
    
    .hero-graphic i {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-section,
    .portfolio-section,
    .blog-section,
    .testimonials-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .service-card,
    .portfolio-card,
    .blog-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .services-section .service-card {
        padding: 1rem;
    }
    
    .services-section .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .services-section .service-icon i {
        font-size: 1.25rem;
    }
    
    .services-section .service-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .services-section .service-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .service-card {
        padding: 1rem;
    }
    
    .hero-section .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .service-icon i {
        font-size: 1.25rem;
    }
    
    .hero-section .service-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section .service-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .navbar-nav {
        text-align: center !important;
        padding: 1rem 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }
    
    .navbar-nav .nav-item {
        width: 100% !important;
        text-align: center !important;
        margin: 0.25rem 0 !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(30, 64, 175, 0.1) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2) !important;
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, #1e40af, #059669) !important;
        color: white !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3) !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
        padding: 40px 0;
    }
    
    .hero-section, .portfolio-section, .blog-section, .cta-section {
        padding: 40px 0;
    }
    
    /* Mobilde slider için özel padding */
    .references-section {
        padding: 80px 0 !important;
    }
    
    .hero-graphic {
        width: 150px;
        height: 150px;
    }
    
    .hero-graphic i {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-section,
    .portfolio-section,
    .blog-section,
    .cta-section {
        padding: 40px 0;
    }
    
    .testimonials-section {
        padding: 60px 0 !important;
    }
    
    .references-section {
        padding: 60px 0 !important;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

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

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

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* WebKit scrollbar (Chrome/Safari) - Firefox bu seçiciyi tanımaz, uyarı vermez */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

/* ===== YENİ MODERN ANA SAYFA TASARIMI ===== */
/* Cache-busting: 2025-01-17-v4 - Tüm Sayfalarda Logo Uyumlu Renkler */

/* Bootstrap Override - Tüm Sayfalarda Logo Renkleri */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

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

.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.btn-secondary:hover {
    background-color: #6b7280 !important;
    border-color: #6b7280 !important;
}

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

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

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

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

/* Link renkleri */
a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25) !important;
}

/* Card border renkleri */
.card {
    border-color: rgba(30, 64, 175, 0.1);
}

/* Navbar renkleri */
.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
}

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

/* Logo Uyumlu Renk Paleti - Optimia Software */
:root {
    --primary-color: #6b7280;      /* Gri - Logo'dan */
    --secondary-color: #6b7280;   /* Gri - Logo'dan */
    --accent-color: #22c55e;       /* Yeşil vurgu */
    --success-color: #22c55e;     /* Yeşil */
    --text-dark: #1e293b;         /* Koyu gri */
    --text-light: #64748b;        /* Açık gri */
    --bg-light: #f8fafc;          /* Açık arka plan */
    --bg-white: #ffffff;          /* Beyaz */
}

/* Modern Homepage Container */
.modern-homepage {
    background: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-modern {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
    overflow: hidden;
}

/* Hero Modern - Gri Gradyan Zorla */
.hero-modern,
.hero-modern .hero-bg,
.hero-modern::before,
.hero-modern::after {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #d1d5db 100%) !important;
}

.hero-pattern {
    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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 2rem 0;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #6b7280, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
    color: white !important;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.4) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Form */
.hero-form {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.form-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

/* Services Section */
.services-modern {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
    background: linear-gradient(45deg, var(--secondary-color), white) !important;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: #1a1a1a !important;
    color: white !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 2rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
}

.service-card-modern .service-icon i {
    color: #1e293b !important;
}

.service-card-modern:hover .service-icon i {
    transform: scale(1.1);
    color: white !important;
}

/* Service Card Modern - Icon Renkleri */
.service-card-modern .service-icon i,
.service-card-modern i[class*="fa-"],
.service-card-modern i[class*="fas"],
.service-card-modern i[class*="far"] {
    color: #1e293b !important;
}

.service-card-modern:hover .service-icon i,
.service-card-modern:hover i[class*="fa-"],
.service-card-modern:hover i[class*="fas"],
.service-card-modern:hover i[class*="far"] {
    color: white !important;
}

/* Modern Service Cards Hover Effects */
.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.service-card:hover .service-icon-wrapper div {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card:hover .btn-primary {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.service-card:hover .btn-outline-primary {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

.service-card-modern h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-modern p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-self: flex-end;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

/* References Section - Owl Carousel */
.references-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.references-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.references-section .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

.references-container {
    margin-top: 3rem;
}

/* Owl Carousel References */
#owl-carousel2 {
    margin-top: 2rem;
    opacity: 1;
    visibility: visible;
    min-height: 120px; /* CLS önleme için sabit yükseklik */
    overflow: hidden;
}

#owl-carousel2 .owl-stage {
    display: flex;
    align-items: center;
}

#owl-carousel2 .owl-item {
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 170px; /* CLS önleme için sabit genişlik */
    height: 100px; /* CLS önleme için sabit yükseklik */
    min-height: 100px;
}

/* Carousel yüklenmeden önce logoları göster */
#owl-carousel2:not(.owl-loaded) .owl-item {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    width: 170px; /* CLS önleme için sabit genişlik */
    height: 100px; /* CLS önleme için sabit yükseklik */
    min-height: 100px;
}

#owl-carousel2 .ref-img {
    max-width: 150px;
    max-height: 80px;
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px;
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#owl-carousel2 .owl-item:hover .ref-img {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

#owl-carousel2 .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

#owl-carousel2 .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0 !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#owl-carousel2 .owl-dots .owl-dot.active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

#owl-carousel2 .owl-dots .owl-dot:hover {
    background: var(--secondary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .references-section {
        padding: 3rem 0;
    }
    
    #owl-carousel2 {
        min-height: 100px; /* Mobilde daha küçük yükseklik */
    }
    
    #owl-carousel2 .owl-item {
        width: 140px; /* Mobilde daha küçük genişlik */
        height: 80px;
        min-height: 80px;
    }
    
    #owl-carousel2 .ref-img {
        max-width: 120px;
        max-height: 60px;
        width: 120px;
        height: 60px;
    }
    
    .references-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #owl-carousel2 {
        min-height: 80px; /* Küçük ekranlarda daha küçük yükseklik */
    }
    
    #owl-carousel2 .owl-item {
        width: 120px; /* Küçük ekranlarda daha küçük genişlik */
        height: 70px;
        min-height: 70px;
    }
    
    #owl-carousel2 .ref-img {
        max-width: 100px;
        max-height: 50px;
        width: 100px;
        height: 50px;
    }
}




@media (max-width: 768px) {
    .references-modern {
        padding: 8rem 0 6rem 0;
    }
    
    .references-modern .section-header {
        margin-top: 4rem;
        margin-bottom: 3rem;
    }
    
    .references-modern .section-header p {
        font-size: 0.9rem;
    }
    
}


/* Process Section - Beyaz Gri Tonları */
.process-modern {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    color: #111827 !important;
}

.process-modern .section-header h2 {
    color: #111827 !important;
}

.process-modern .section-header p {
    color: #374151 !important;
}

/* Blog section header */
.blog-modern .section-header p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.process-modern .process-item h3 {
    color: #111827 !important;
}

.process-modern .process-item p {
    color: #1e293b !important;
}

.process-modern .process-item {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
}

.process-modern .process-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.process-modern .process-icon {
    background: linear-gradient(135deg, var(--logo-blue), var(--logo-green)) !important;
    color: #ffffff !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem auto !important;
    font-size: 1.5rem !important;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3) !important;
    transition: all 0.3s ease !important;
}

.process-modern .process-item:hover .process-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4) !important;
}

.process-modern .process-number {
    background: #f1f5f9 !important;
    color: var(--logo-blue) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    margin: 0 auto 1rem auto !important;
    border: 2px solid var(--logo-blue) !important;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6b7280, #9ca3af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Blog Section - Daha Az Yükseklik */
.blog-modern {
    padding: 3rem 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blog-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem !important;
    height: auto !important;
    min-height: auto !important;
}

.blog-card-modern .card-body {
    padding: 1rem !important;
}

.blog-card-modern h3 {
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.75rem !important;
}

.blog-card-modern p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    border: 1px solid #e2e8f0;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.2rem;
        line-height: 1.0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-slider {
        display: block;
    }
    
    .slider-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.1rem;
        line-height: 1.0;
    }
    
    .slider-item {
        flex: 0 0 100%;
    }
}

/* Çok küçük ekranlar için ek düzenleme */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.0rem !important;
        line-height: 1.0 !important;
    }
}

/* Orta boyut ekranlar için de düzenleme */
@media (max-width: 992px) and (min-width: 769px) {
    .section-header h2 {
        font-size: 1.4rem !important;
        line-height: 1.1 !important;
    }
}

/* Büyük ekranlar için düzenleme (1920x1080 dahil) */
@media (min-width: 1200px) {
    .section-header h2 {
        font-size: 2.0rem !important;
        line-height: 1.1 !important;
    }
}

/* Çok büyük ekranlar için düzenleme */
@media (min-width: 1400px) {
    .section-header h2 {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Portfolio Filter */
.portfolio-filter {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.filter-buttons .btn {
    margin: 0.25rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.filter-buttons .btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.filter-buttons .btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.filter-buttons .btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* Portfolio Filter Responsive */
@media (max-width: 768px) {
    .filter-buttons .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin: 0.15rem;
    }
    
    .portfolio-filter {
        padding: 1rem 0;
    }
}

/* Portfolio Filter Enhanced Styles */
.filter-buttons .btn {
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
}

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

.filter-buttons .btn:hover:before {
    left: 100%;
}

/* Portfolio Item Filtering */
.portfolio-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.8);
}

.portfolio-item:not(.hidden) {
    display: block !important;
    opacity: 1;
    transform: scale(1);
}

/* Contact Form */
.contact-form-card {
    border-radius: 12px;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
}

/* Modern Testimonials Styles */
.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
}

.testimonial-card:hover .card-hover-overlay {
    opacity: 1 !important;
}

.testimonial-card:hover .logo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3) !important;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 100%) !important;
}

.testimonial-card:hover .company-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)) !important;
}

.company-logo {
    transition: all 0.3s ease;
    /* Logo kontrastını artırmak için */
    filter: contrast(1.2) brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-wrapper {
    transition: all 0.3s ease;
    /* Logo wrapper için daha iyi kontrast */
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.9) 100%) !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
}

/* Hover durumunda logo kontrastını artır */
.testimonial-card:hover .company-logo {
    filter: contrast(1.4) brightness(1.2) drop-shadow(0 4px 8px rgba(0,0,0,0.2)) !important;
}

.testimonial-card:hover .logo-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(250,250,250,0.95) 100%) !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
}

.hero-stats .stat-item {
    background: rgba(255,255,255,0.2);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll Animation */
.testimonial-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Content Animation */
.hero-content.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem 1rem;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--gray-300);
}

footer a {
    color: var(--gray-300) !important;
    transition: color 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-light) !important;
}

footer a.text-muted {
    color: var(--gray-300) !important;
}

footer a.text-muted:hover {
    color: var(--primary-light) !important;
}

footer a.text-light {
    color: var(--gray-100) !important;
}

footer a.text-light:hover {
    color: var(--primary-light) !important;
}

footer h5, footer h6 {
    color: white !important;
}

/* Footer'daki tüm başlıklar beyaz */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: white !important;
}

/* Footer bölüm başlıkları için özel düzenleme */
footer .fw-bold,
footer .fw-semibold,
footer .text-dark,
footer .text-primary,
footer .text-secondary {
    color: white !important;
}

/* Footer'daki tüm yazılar için genel düzenleme */
footer * {
    color: inherit !important;
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer .fw-bold, footer .fw-semibold {
    color: white !important;
}

footer p {
    color: var(--gray-400) !important;
}

footer p.text-muted {
    color: var(--gray-500) !important;
}

/* Admin Panel Styles */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
    min-height: 100vh;
    width: 250px;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    z-index: 1000 !important;
    overflow-y: auto;
    display: block !important;
    visibility: visible !important;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
    display: block !important;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.sidebar-header {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sidebar-header h4 {
    color: white !important;
    font-weight: 600 !important;
}

.admin-content {
    background-color: #f8f9fa;
    min-height: 100vh;
    margin-left: 250px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #e9ecef;
    height: auto;
    min-height: 80px;
}

.admin-page-content {
    flex: 1;
    overflow-y: auto;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* Dashboard Specific Styles */
.dashboard-content {
    max-width: 100%;
    padding: 2rem 1rem 1rem 1rem;
    margin: 0;
    margin-top: 1rem;
}

.dashboard-content .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.dashboard-content .col-lg-3,
.dashboard-content .col-lg-6,
.dashboard-content .col-md-6 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.stat-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.stat-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.message-item,
.post-item {
    transition: all 0.3s ease;
}

.message-item:hover,
.post-item:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin: -1rem;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        min-height: auto;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-page-content {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .sidebar {
        display: none !important;
    }
    
    .main-content {
        margin-top: 0 !important;
    }
}

/* About Page Styles */
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Service Page Styles */
.service-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.service-actions .btn-outline-primary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Tüm Site Breadcrumb - Tek Stil */
.breadcrumb {
    font-size: 0.85rem !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
}

.breadcrumb-item {
    pointer-events: auto !important;
    z-index: 1001 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 0.25rem !important;
}

.breadcrumb-item a {
    color: #6b7280 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1002 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    margin: 0.1rem !important;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.05) 0%, rgba(107, 114, 128, 0.1) 100%) !important;
    border: 1px solid rgba(107, 114, 128, 0.1) !important;
    min-height: 40px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    vertical-align: middle !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    overflow: hidden !important;
}

.breadcrumb-item a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.2) 100%) !important;
    transition: left 0.3s ease !important;
    z-index: -1 !important;
}

.breadcrumb-item a:hover {
    color: #4b5563 !important;
    text-decoration: none !important;
    border-color: rgba(107, 114, 128, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.15) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.15) 100%) !important;
}

.breadcrumb-item a:hover::before {
    left: 0 !important;
}

.breadcrumb-item a:active {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.2) 100%) !important;
}

.breadcrumb-item.active {
    color: #374151 !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.1) 0%, rgba(55, 65, 81, 0.15) 100%) !important;
    border-radius: 25px !important;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid rgba(55, 65, 81, 0.2) !important;
    box-shadow: 0 2px 10px rgba(55, 65, 81, 0.1) !important;
    margin: 0 0.25rem !important;
}

/* Modern Breadcrumb Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "→" !important;
    color: #9ca3af !important;
    font-weight: bold !important;
    margin: 0 0.75rem !important;
    pointer-events: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.breadcrumb-item:hover + .breadcrumb-item::before {
    color: #6b7280 !important;
    transform: scale(1.1) !important;
}

/* Tüm Site Breadcrumb Mobil */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem !important;
        pointer-events: auto !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .breadcrumb-item {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .breadcrumb-item a {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        padding: 0.75rem 1.25rem !important;
        margin: 0 !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(107, 114, 128, 0.08) 0%, rgba(107, 114, 128, 0.12) 100%) !important;
        border: 1px solid rgba(107, 114, 128, 0.15) !important;
        border-radius: 15px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 2px 8px rgba(107, 114, 128, 0.1) !important;
    }
    
    .breadcrumb-item a:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 28px rgba(107, 114, 128, 0.2) !important;
        background: linear-gradient(135deg, rgba(107, 114, 128, 0.12) 0%, rgba(107, 114, 128, 0.18) 100%) !important;
    }
    
    .breadcrumb-item.active {
        padding: 0.75rem 1.25rem !important;
        min-height: 48px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(55, 65, 81, 0.12) 0%, rgba(55, 65, 81, 0.18) 100%) !important;
        border: 1px solid rgba(55, 65, 81, 0.25) !important;
        box-shadow: 0 4px 16px rgba(55, 65, 81, 0.15) !important;
    }
    
    /* Mobilde separator'ı gizle */
    .breadcrumb-item + .breadcrumb-item::before {
        display: none !important;
    }
}

/* Breadcrumb bar: kutucuksuz, temiz (style.css kutu stillerini ez) */
.breadcrumb-bar .breadcrumb,
.service-breadcrumb-bar .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    justify-content: flex-start !important;
}
.breadcrumb-bar .breadcrumb-item,
.service-breadcrumb-bar .breadcrumb-item {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    min-height: auto !important;
    width: auto !important;
}
.breadcrumb-bar .breadcrumb-item a,
.service-breadcrumb-bar .breadcrumb-item a {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-height: auto !important;
    box-shadow: none !important;
    transform: none !important;
}
.breadcrumb-bar .breadcrumb-item a::before,
.service-breadcrumb-bar .breadcrumb-item a::before {
    display: none !important;
}
.breadcrumb-bar .breadcrumb-item a:hover,
.service-breadcrumb-bar .breadcrumb-item a:hover {
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
.breadcrumb-bar .breadcrumb-item.active,
.service-breadcrumb-bar .breadcrumb-item.active {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    min-height: auto !important;
    box-shadow: none !important;
}
@media (max-width: 768px) {
    .breadcrumb-bar .breadcrumb-item a,
    .service-breadcrumb-bar .breadcrumb-item a {
        padding: 0 !important;
        min-height: auto !important;
        width: auto !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    .breadcrumb-bar .breadcrumb-item.active,
    .service-breadcrumb-bar .breadcrumb-item.active {
        padding: 0 !important;
        min-height: auto !important;
        width: auto !important;
        background: none !important;
        border: none !important;
    }
}

/* Service Detail Page Modern Styles */
.featured-image-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-image-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-detail-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.service-detail-content h1,
.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4,
.service-detail-content h5,
.service-detail-content h6 {
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    border-bottom: none;
    padding-bottom: 0;
}

.service-detail-content h1 {
    font-size: 2rem;
}

.service-detail-content h2 {
    font-size: 1.75rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
}

.service-detail-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-detail-content ul,
.service-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-detail-content strong {
    color: #333;
    font-weight: 700;
}

.service-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #333;
}

/* Service Sidebar Styles */
.service-sidebar .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.service-sidebar .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-sidebar .card-header {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    border: none;
    padding: 1rem 1.5rem;
    color: white !important;
}

.service-sidebar .card-header h5 {
    color: white !important;
    font-weight: 600 !important;
}

.service-info-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-info-item:last-child {
    border-bottom: none;
}

.service-info-item i {
    width: 20px;
    text-align: center;
}

.service-sidebar .btn {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-sidebar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sidebar buton stilleri - Gri tema */
.service-sidebar .btn-outline-primary {
    border: 2px solid #3b82f6 !important;
    color: #374151 !important;
    background: transparent !important;
    font-weight: 600 !important;
}

.service-sidebar .btn-outline-primary:hover {
    background: #6b7280 !important;
    color: white !important;
    border-color: #6b7280 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3) !important;
}

/* İletişime Geç butonları - Gri tema */
.service-sidebar .btn-primary,
.page-header .btn-light {
    background: #374151 !important;
    border-color: #374151 !important;
    color: white !important;
    font-weight: 600 !important;
}

.service-sidebar .btn-primary:hover,
.page-header .btn-light:hover {
    background: #1f2937 !important;
    border-color: #1f2937 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(55, 65, 81, 0.3) !important;
}

/* Related Services Modern Styles */
.related-services .service-card {
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.related-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: transparent;
}

.related-services .service-icon {
    transition: all 0.3s ease;
}

.related-services .service-card:hover .service-icon {
    transform: scale(1.1);
}

.related-services .service-card:hover .service-icon i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Diğer Hizmetlerimiz alanındaki iconları siyah yap - Zorla uygula */
.related-services .service-icon i,
.related-services .service-card .service-icon i,
.related-services i[class*="fa-"],
.related-services i[class*="fas"],
.related-services i[class*="far"],
.related-services i[class*="fab"] {
    color: #000000 !important;
    transition: all 0.3s ease !important;
}

/* Hover durumunda iconları beyaz yap - Zorla uygula */
.related-services .service-card:hover .service-icon i,
.related-services .service-card:hover i[class*="fa-"],
.related-services .service-card:hover i[class*="fas"],
.related-services .service-card:hover i[class*="far"],
.related-services .service-card:hover i[class*="fab"] {
    color: #ffffff !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2)) !important;
}

/* Tüm inline stilleri geçersiz kıl */
.related-services .service-icon i[style*="color"] {
    color: #000000 !important;
}

.related-services .service-card:hover .service-icon i[style*="color"] {
    color: #ffffff !important;
}

/* Diğer Hizmetlerimiz buton stilleri */
.related-services .btn {
    border: 2px solid #3b82f6 !important;
    color: #3b82f6 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.related-services .btn:hover {
    background: #6b7280 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

/* Tüm service icon background'larını gri yap */
.service-icon,
.services-section .service-icon,
.hero-section .service-icon,
.related-services .service-icon,
.service-card .service-icon {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #3b82f6 !important;
    transition: all 0.3s ease !important;
}

/* Service icon hover durumları */
.service-card:hover .service-icon,
.services-section .service-card:hover .service-icon,
.hero-section .service-card:hover .service-icon,
.related-services .service-card:hover .service-icon {
    background: #374151 !important;
    border-color: #374151 !important;
    color: white !important;
    transform: scale(1.05) !important;
}

/* Process icon'ları da gri yap */
.process-icon,
.work-process-section .process-icon {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #3b82f6 !important;
}

.work-process-section .process-card:hover .process-icon {
    background: #374151 !important;
    border-color: #374151 !important;
    color: white !important;
}

/* Tüm gradyan background'ları geçersiz kıl */
.service-icon[style*="background"],
.service-icon[style*="gradient"],
.process-icon[style*="background"],
.process-icon[style*="gradient"] {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #3b82f6 !important;
}

/* Hover durumlarında da gradyanları geçersiz kıl */
.service-card:hover .service-icon[style*="background"],
.service-card:hover .service-icon[style*="gradient"],
.process-card:hover .process-icon[style*="background"],
.process-card:hover .process-icon[style*="gradient"] {
    background: #374151 !important;
    border-color: #374151 !important;
    color: white !important;
}

/* Modern Recent Posts Styles */
.recent-post-item {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.recent-post-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-color: #e2e8f0;
}

.recent-post-link {
    transition: all 0.3s ease;
    display: block;
}

.recent-post-link:hover {
    color: #3b82f6 !important;
    transform: translateX(2px);
}

.recent-post-number .badge {
    transition: all 0.3s ease;
}

.recent-post-item:hover .recent-post-number .badge {
    background-color: #1e40af !important;
    transform: scale(1.1);
}

.recent-post-content {
    transition: all 0.3s ease;
}

.recent-post-item:hover .recent-post-content {
    color: #1e293b;
}

/* Modern Categories Styles */
.category-item {
    transition: all 0.3s ease;
}

.category-link {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-color: #e2e8f0;
    background-color: #f8fafc !important;
}

.category-link.active {
    background-color: #dbeafe !important;
    border-color: #3b82f6 !important;
}

.category-link:hover .category-icon i {
    color: #1e40af !important;
    transform: scale(1.1);
}

.category-icon i {
    transition: all 0.3s ease;
}

.category-link:hover .badge {
    background-color: #1e40af !important;
    transform: scale(1.05);
}

.category-link .badge {
    transition: all 0.3s ease;
}

/* Modern Tags Styles */
.tag-item {
    transition: all 0.3s ease;
}

.tag-link {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-link:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-color: #e2e8f0;
    background-color: #f8fafc !important;
}

.tag-link:hover i {
    color: #1e40af !important;
    transform: scale(1.1);
}

.tag-link i {
    transition: all 0.3s ease;
}

.tag-link:hover .tag-count {
    background-color: #1e40af !important;
    transform: scale(1.1);
}

.tag-count {
    transition: all 0.3s ease;
}

/* Full Width Popular Tags Section */
.popular-tags-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
}

.tag-cloud-full {
    gap: 0.75rem;
}

.tag-link-full {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.tag-link-full:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    border-color: #3b82f6;
    background: #f8fafc !important;
}

.tag-link-full:hover i {
    color: #1e40af !important;
    transform: scale(1.2);
}

.tag-link-full:hover .tag-count {
    background-color: #1e40af !important;
    transform: scale(1.1);
}

.tag-link-full i {
    transition: all 0.3s ease;
}

.tag-link-full .tag-count {
    transition: all 0.3s ease;
}

/* Responsive adjustments for full width tags */
@media (max-width: 768px) {
    .tag-cloud-full {
        gap: 0.5rem;
    }
    
    .tag-link-full {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Table Styles - Belirgin Çizgiler */
.content-text table,
.blog-post-body table,
.service-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-text table th,
.content-text table td,
.blog-post-body table th,
.blog-post-body table td,
.service-detail-content table th,
.service-detail-content table td {
    border: 1px solid #cbd5e1;
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.content-text table th,
.blog-post-body table th,
.service-detail-content table th {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #94a3b8;
}

.content-text table tr:nth-child(even),
.blog-post-body table tr:nth-child(even),
.service-detail-content table tr:nth-child(even) {
    background-color: #f8fafc;
}

.content-text table tr:hover,
.blog-post-body table tr:hover,
.service-detail-content table tr:hover {
    background-color: #e2e8f0;
    transition: background-color 0.3s ease;
}

/* Responsive table */
@media (max-width: 768px) {
    .content-text table,
    .blog-post-body table,
    .service-detail-content table {
        font-size: 0.9rem;
    }
    
    .content-text table th,
    .content-text table td,
    .blog-post-body table th,
    .blog-post-body table td,
    .service-detail-content table th,
    .service-detail-content table td {
        padding: 8px 12px;
    }
}

/* Portfolio Filter Styles */
.portfolio-item {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.filter-buttons .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-buttons .btn.active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Portfolio card hover effects */
.portfolio-card {
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-overlay {
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1 !important;
}

/* Filter animation improvements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* Portfolio Page Styles */
.portfolio-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.portfolio-image img {
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    transition: all 0.3s ease;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.modal-xl {
    max-width: 1200px;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* CTA Section Özel Stilleri */
.cta-section {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    position: relative;
    overflow: hidden;
}

/* Tüm CTA bölümlerini zorla gri yap */
.cta-section[style*="background"],
.cta-section[style*="gradient"],
section.cta-section {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

/* Hizmetler sayfası CTA'sı özel */
.services-content + section.cta-section,
.work-process-section + section.cta-section {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    opacity: 0.95;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: white !important;
}

.cta-section p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: white !important;
}

/* CTA Section Buton Hover Efektleri */
.cta-section .btn-outline-primary {
    border: 2px solid white !important;
    color: white !important;
    background: transparent !important;
}

.cta-section .btn-outline-primary:hover {
    background: white !important;
    color: var(--primary-color) !important;
    border-color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Float Animasyonu */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Smooth Scroll - mouse tekerleği ile kaydırma çalışsın (overscroll-behavior kaldırıldı) */
html {
    scroll-behavior: smooth;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
}

/* Mobil Viewport Düzeltmeleri */
@media (max-width: 768px) {
    /* Mobilde margin-top sorunlarını düzelt */
    section[style*="margin-top: 76px"] {
        margin-top: 60px !important;
    }
    
    /* Mobilde modern header yüksekliği */
    .modern-header {
        height: 70px !important;
        min-height: 70px !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Mobilde logo boyutu */
    .logo-img {
        height: 45px !important;
    }
    
    .logo-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    .logo-text {
        font-size: 1.3rem !important;
    }
    
    /* Mobilde navbar brand düzeltme */
    .modern-logo {
        font-size: 1.3rem !important;
    }
    
    /* TÜM SİTEDE TEK MOBİL MENÜ SİSTEMİ */
    .modern-toggler {
        padding: 0.4rem 0.6rem !important;
        font-size: 1rem !important;
        border: 2px solid #6b7280 !important;
        border-radius: 8px !important;
        background: transparent !important;
        color: #6b7280 !important;
        transition: all 0.3s ease !important;
        margin-left: auto !important;
    }
    
    .modern-toggler:hover {
        background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
        color: white !important;
        transform: scale(1.02) !important;
        box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25) !important;
    }
    
    .modern-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(107, 114, 128, 0.25) !important;
    }
    
    /* Mobil menü container - Sabit konumlandırma - Güçlendirilmiş */
    .navbar-collapse {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(30, 64, 175, 0.15) !important;
        margin-top: 0.75rem !important;
        padding: 1.25rem !important;
        border: 1px solid var(--primary-200) !important;
        backdrop-filter: blur(5px) !important;
        position: relative !important;
        overflow: hidden !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .navbar-collapse.show {
        position: fixed !important;
        top: 70px !important;
        left: 15px !important;
        right: 15px !important;
        z-index: 1050 !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid var(--primary-200) !important;
        margin-top: 0 !important;
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 1.25rem !important;
    }
    
    /* Mobil menü linklerinin tıklanabilir olmasını sağla */
    .navbar-collapse.show .navbar-nav .nav-link {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 1051 !important;
        position: relative !important;
        display: block !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #4a5568 !important;
        border-radius: 0 !important;
        transition: color 0.3s ease !important;
        text-align: left !important;
        border: none !important;
        background: transparent !important;
        margin-bottom: 0.25rem !important;
    }
    
    .navbar-collapse.show .navbar-nav {
        pointer-events: auto !important;
        z-index: 1051 !important;
        gap: 0.5rem !important;
    }
    
    .navbar-collapse.show .navbar-nav .nav-item {
        pointer-events: auto !important;
        z-index: 1051 !important;
        margin: 0 !important;
    }
    
    .navbar-collapse.show .navbar-nav .nav-link:hover {
        background: transparent !important;
        color: #000000 !important;
        border-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .navbar-collapse.show .navbar-nav .nav-link.active {
        background: transparent !important;
        color: #000000 !important;
        border-color: transparent !important;
        font-weight: 600 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Header yüksekliğini tüm sayfalarda sabitle (sadece .modern-header - eski tema) */
    .modern-header {
        height: 70px !important;
        min-height: 70px !important;
        padding: 0.5rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1030 !important;
    }
    
    /* İlk Yardım teması: header sayfayla birlikte kayar, fixed değil */
    .modern-header-blue,
    .modern-header-blue.site-header-custom {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    /* Tüm sayfalarda body margin-top (sadece .modern-header kullanıldığında) */
    body {
        padding-top: 0 !important;
    }
    
    /* Blog post hero margin'ini düzelt */
    .blog-post-hero {
        margin-top: 0 !important;
    }
    
    /* Mobil menü arka plan efekti */
    .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
        z-index: -1;
    }
    
    /* Mobil menü linkleri */
    .modern-nav {
        gap: 0.5rem !important;
    }
    
    .modern-nav .nav-item {
        margin: 0 !important;
    }
    
    .modern-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #4a5568 !important;
        border-radius: 0 !important;
        transition: color 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        border: none !important;
        position: relative !important;
        background: transparent !important;
        margin-bottom: 0.25rem !important;
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--logo-blue);
        border-radius: 2px;
        transition: height 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: transparent !important;
        color: #000000 !important;
        border-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .nav-link:hover::before {
        height: 50%;
        background: white;
    }
    
    .navbar-nav .nav-link.active {
        background: transparent !important;
        color: #000000 !important;
        border-color: transparent !important;
        font-weight: 600 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .navbar-nav .nav-link.active::before {
        height: 100%;
        background: white;
    }
    
    /* Mobil menü animasyonu */
    .navbar-collapse.show {
        animation: slideDown 0.3s ease-out !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobilde hero section'lar için düzeltme */
    .hero-section,
    .services-hero,
    .portfolio-hero,
    .about-hero,
    .testimonials-hero,
    .blog-hero,
    .contact-hero {
        margin-top: 60px !important;
        padding-top: 2rem !important;
    }
    
    /* Mobilde body scroll sorununu düzelt - kaydırma her zaman açık */
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    
    /* Mobilde sayfa yüklenme animasyonu */
    .modern-homepage {
        animation: fadeInUp 0.6s ease-out;
    }
}

/* Blog Post Sayfalarında Animasyonları Kaldır - TÜM CİHAZLAR */
.blog-post-hero,
.blog-post-content,
.blog-post-article,
.blog-post-body,
.content-text,
.blog-post-tags,
.popular-tags-section,
.blog-post-share,
.related-posts,
.back-to-blog {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}

/* Mobil Performans Optimizasyonları */
@media (max-width: 768px) {
    /* Mobilde animasyonları devre dışı bırak */
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Blog post sayfalarında tüm animasyonları kaldır */
    .blog-post-hero,
    .blog-post-content,
    .blog-post-article,
    .blog-post-body,
    .content-text {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    /* Mobilde transform optimizasyonu */
    .service-card,
    .portfolio-card,
    .blog-card,
    .testimonial-card,
    .process-card,
    .reference-logo {
        backface-visibility: visible !important;
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Mobilde hover efektlerini kaldır */
    .service-card:hover,
    .portfolio-card:hover,
    .blog-card:hover,
    .testimonial-card:hover,
    .process-card:hover,
    .reference-logo:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Mobilde parallax efektini kaldır */
    .hero-section,
    .hero-modern {
        transform: none !important;
    }
    
    /* Mobilde slider performansı */
    .slider-track {
        transition: none !important;
    }
    
    /* Mobilde scroll performansı */
    .modern-homepage {
        overflow-x: hidden;
        position: relative;
    }
    
    /* Mobilde scroll'u serbest bırak */
    body, html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Mobilde sayfa yükleme sırasında scroll'u aktif et */
    .modern-homepage {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Mobilde gereksiz animasyonları kaldır */
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none !important;
    }
    
    /* Mobilde float animasyonlarını kaldır */
    .hero-shape-1,
    .hero-shape-2,
    .hero-shape-3 {
        animation: none !important;
    }
    
    /* Mobilde IntersectionObserver animasyonlarını kaldır */
    .service-card-modern,
    .process-item,
    .blog-card-modern {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Mobilde button hover efektlerini kaldır */
    .btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Mobilde form hover efektlerini kaldır */
    .contact-form-card:hover,
    .form-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Tüm Site - Beyaz ve Gri Tonları */
/* Tüm Hero Sections - Gri Tonları */
.hero-section,
.about-hero,
.testimonials-hero,
.portfolio-hero,
.services-hero,
.contact-hero,
.blog-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
}

/* Hero Başlıkları - Siyah */
.hero-section h1,
.about-hero h1,
.testimonials-hero h1,
.portfolio-hero h1,
.services-hero h1,
.contact-hero h1,
.blog-hero h1 {
    color: #111827 !important;
    text-shadow: none !important;
}

.hero-section .lead,
.about-hero .lead,
.testimonials-hero .lead,
.portfolio-hero .lead,
.services-hero .lead,
.contact-hero .lead,
.blog-hero .lead {
    color: #374151 !important;
    text-shadow: none !important;
}

/* CTA Sections - Gradient Arka Plan */
.cta-section,
.services-cta {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

/* Services CTA Section Özel Stilleri */
.services-cta h2 {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-cta p {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Service Option Kutuları Eşit Boyut */
.service-option {
    height: 100% !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.service-option:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.service-option i,
.service-option .service-option-icon {
    margin-bottom: 0.5rem !important;
    color: var(--site-primary, #FF9900) !important;
}

.service-option h6 {
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
}

.service-option small {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
}

/* Sosyal Medya Butonları - Aynı Satırda */
.social-links {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-links .btn {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

/* İletişim sayfası sosyal medya butonları için özel düzenleme */
.contact-info .social-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.25rem !important;
    align-items: center !important;
}

.contact-info .social-links .btn {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
    flex-shrink: 0 !important;
}

/* Hizmet Detay Sayfası Tablo Düzeni */
.service-detail table,
.service-detail .content table,
.content table,
table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border-collapse: collapse !important;
    margin: 2rem 0 !important;
    background: white !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: none !important;
    table-layout: fixed !important;
}

.service-detail table th,
.service-detail table td,
.service-detail .content table th,
.service-detail .content table td,
.content table th,
.content table td,
table th,
table td {
    padding: 1rem !important;
    text-align: left !important;
    border-bottom: 1px solid #e5e7eb !important;
    vertical-align: top !important;
    border: none !important;
    width: auto !important;
    max-width: none !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.service-detail table th,
.service-detail .content table th,
.content table th,
table th {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.service-detail table td,
.service-detail .content table td,
.content table td,
table td {
    color: #374151 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.service-detail table tr:hover,
.service-detail .content table tr:hover,
.content table tr:hover,
table tr:hover {
    background: #f8fafc !important;
}

.service-detail table tr:last-child td,
.service-detail .content table tr:last-child td,
.content table tr:last-child td,
table tr:last-child td {
    border-bottom: none !important;
}

/* Hizmet Detay Sayfası Genel Düzen */
.service-detail {
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem !important;
}

/* Hizmet detay sayfası container genişlik ayarları */
.service-content .container,
.featured-image-section .container,
.page-header .container,
.related-services .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* Büyük ekranlar için daha fazla padding */
@media (min-width: 1200px) {
    .service-content .container,
    .featured-image-section .container,
    .page-header .container,
    .related-services .container {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
}

/* Tablo container genişlik kontrolü */
.service-detail .content,
.content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
}

.service-detail h1 {
    color: #1f2937 !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

.service-detail h2 {
    color: #374151 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin: 2rem 0 1rem 0 !important;
    border-bottom: 3px solid #3b82f6 !important;
    padding-bottom: 0.5rem !important;
}

.service-detail h3 {
    color: #4b5563 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin: 1.5rem 0 0.75rem 0 !important;
}

.service-detail p {
    color: #1e293b !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
}

.service-detail ul, .service-detail ol {
    color: #1e293b !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
    padding-left: 2rem !important;
}

.service-detail li {
    margin-bottom: 0.5rem !important;
}

.service-detail strong {
    color: #1f2937 !important;
    font-weight: 600 !important;
}

/* Responsive tablo düzeni */
@media (max-width: 768px) {
    .service-detail {
        padding: 1rem 0.5rem !important;
    }
    
    .service-detail h1 {
        font-size: 2rem !important;
    }
    
    .service-detail h2 {
        font-size: 1.5rem !important;
    }
    
    .service-detail h3 {
        font-size: 1.2rem !important;
    }
    
    .service-detail table {
        font-size: 0.9rem !important;
    }
    
    .service-detail table th,
    .service-detail table td {
        padding: 0.75rem 0.5rem !important;
    }
    
    /* Mobilde container padding azalt */
    .service-content .container,
    .featured-image-section .container,
    .page-header .container,
    .related-services .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Hizmet detay sayfası için özel düzenlemeler */
.service-content {
    background: #f8fafc;
}

.service-detail-content {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid #e2e8f0 !important;
}

/* İçerik genişliğini optimize et */
.service-content .col-lg-9 {
    max-width: none !important;
    flex: 0 0 100% !important;
}

.service-content .col-lg-3 {
    max-width: none !important;
    flex: 0 0 100% !important;
    margin-top: 2rem;
}

/* Büyük ekranlarda sidebar'ı yan yana göster */
@media (min-width: 992px) {
    .service-content .col-lg-9 {
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
    
    .service-content .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        margin-top: 0;
    }
}

/* Hizmet detay sayfası için gelişmiş düzenlemeler */
.page-header {
    background: #9ca3af !important;
    position: relative;
    overflow: hidden;
}

/* Nokta deseni kaldırıldı - Düz gri background */

.featured-image-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.featured-image-wrapper img {
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
}

.featured-image-wrapper img:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

/* Sidebar kartları için gelişmiş stil */
.service-sidebar .card {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
}

.service-sidebar .card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

.service-sidebar .card-header {
    border-radius: 12px 12px 0 0 !important;
    border: none !important;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    color: white !important;
}

.service-sidebar .card-header h5 {
    color: white !important;
    font-weight: 600 !important;
}

/* İçerik metin stilleri */
.service-detail-content h1,
.service-detail-content h2,
.service-detail-content h3 {
    position: relative;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Tablo stilleri geliştirme */
.service-detail-content table {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

.service-detail-content table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 0.9rem !important;
}

/* Responsive iyileştirmeler */
@media (max-width: 1200px) {
    .service-content .container,
    .featured-image-section .container,
    .page-header .container,
    .related-services .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (max-width: 992px) {
    .service-content .col-lg-9,
    .service-content .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .service-content .col-lg-3 {
        margin-top: 2rem !important;
    }
}

/* Admin Dashboard Optimizasyonu */
.dashboard-content {
    padding: 1rem !important;
}

/* CSS Optimizasyonu - Performans İyileştirmeleri */
* {
    box-sizing: border-box;
}

/* Critical CSS - Above the fold */
.page-header {
    will-change: transform;
    transform: translateZ(0);
}

.service-detail-content {
    will-change: transform;
    transform: translateZ(0);
}

/* İçerik görünürlük ayarları - İlk açılışta görünür olsun */
.service-detail-content,
.featured-image-section,
.related-services,
.service-content,
.service-sidebar {
    opacity: 1 !important;
    animation: none !important;
    visibility: visible !important;
    display: block !important;
}

/* Tüm animasyonları devre dışı bırak */
.service-detail-content *,
.featured-image-section *,
.related-services *,
.service-content *,
.service-sidebar * {
    animation: none !important;
    transition: none !important;
}

/* Animasyonlar kaldırıldı - İçerik hemen görünür */

/* Çakışan animasyonları devre dışı bırak */
@keyframes fadeInUp {
    from, to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tüm fadeInUp animasyonlarını devre dışı bırak */
* {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
}

/* Blog Ana Sayfası Optimizasyonları */
body.blog-page {
    padding-top: 50px !important;
}

.blog-hero {
    padding: 1rem 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.blog-hero h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

.blog-hero .lead {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.blog-search {
    padding: 1rem 0 !important;
    margin-bottom: 0 !important;
}

.blog-content {
    padding: 1.5rem 0 !important;
    margin-top: 0 !important;
}

.blog-post-card {
    transition: all 0.3s ease !important;
    border: 1px solid #e9ecef !important;
    border-radius: 12px !important;
}

.blog-post-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-post-content h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
}

.blog-post-content h3 a {
    color: #2c3e50 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.blog-post-content h3 a:hover {
    color: #3498db !important;
}

.blog-post-content p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #6c757d !important;
    margin-bottom: 1rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-height: 4.8rem !important;
}

.blog-post-meta {
    font-size: 0.8rem !important;
    margin-bottom: 0.75rem !important;
}

.blog-post-meta .badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
}

.blog-post-meta small {
    font-size: 0.75rem !important;
}

.blog-post-footer small {
    font-size: 0.75rem !important;
}

.blog-post-footer .btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
}

.blog-sidebar h5 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.category-link {
    font-size: 0.85rem !important;
    transition: all 0.3s ease !important;
}

.category-link:hover {
    background-color: #f8f9fa !important;
    transform: translateX(5px) !important;
}

.category-link span {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

.category-link .badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
}

.recent-post-item h6 {
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.25rem !important;
}

.recent-post-item small {
    font-size: 0.7rem !important;
}

.tag-link {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
    margin: 0.15rem !important;
}

.tag-count {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.4rem !important;
}

.blog-search .form-control {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
}

.blog-search .btn {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
}

/* Blog Ana Sayfası Mobil Optimizasyonu */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem !important;
    }
    
    .blog-hero .lead {
        font-size: 1rem !important;
    }
    
    .blog-post-content h3 {
        font-size: 1.1rem !important;
    }
    
    .blog-post-content p {
        font-size: 0.85rem !important;
        -webkit-line-clamp: 2 !important;
        max-height: 2.7rem !important;
    }
    
    .blog-post-meta {
        font-size: 0.75rem !important;
    }
    
    .blog-sidebar h5 {
        font-size: 0.9rem !important;
    }
    
    .category-link {
        font-size: 0.8rem !important;
    }
    
    .recent-post-item h6 {
        font-size: 0.8rem !important;
    }
    
    .blog-search .form-control,
    .blog-search .btn {
        font-size: 0.85rem !important;
        padding: 0.6rem 0.8rem !important;
    }
}

/* Blog Post Sayfası Optimizasyonları */
.blog-post-hero {
    padding: 1.5rem 0 !important;
}

.blog-post-hero h1 {
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

.blog-post-hero .lead {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #6c757d !important;
}

.blog-post-meta {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
}

.blog-post-meta .badge {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
}

.blog-post-body {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

.blog-post-body h1 {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    margin-top: 2rem !important;
    color: #2c3e50 !important;
}

.blog-post-body h2 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.8rem !important;
    margin-top: 1.5rem !important;
    color: #34495e !important;
}

.blog-post-body h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.6rem !important;
    margin-top: 1.2rem !important;
    color: #34495e !important;
}

.blog-post-body h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    margin-top: 1rem !important;
    color: #34495e !important;
}

.blog-post-body p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    color: #555 !important;
}

.blog-post-body ul, .blog-post-body ol {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
    padding-left: 1.5rem !important;
}

.blog-post-body li {
    margin-bottom: 0.3rem !important;
    color: #555 !important;
}

.blog-post-body blockquote {
    font-size: 0.9rem !important;
    padding: 1rem !important;
    margin: 1.5rem 0 !important;
    border-left: 4px solid #6b7280 !important;
    background: #f8f9fa !important;
    color: #555 !important;
}

.blog-post-body img {
    max-width: 100% !important;
    height: auto !important;
    margin: 1rem 0 !important;
    border-radius: 8px !important;
}

.blog-post-body strong {
    font-weight: 600 !important;
    color: #2c3e50 !important;
}

.blog-post-body em {
    font-style: italic !important;
    color: #6c757d !important;
}

.blog-post-body a {
    color: #6b7280 !important;
    text-decoration: underline !important;
}

.blog-post-body a:hover {
    color: #4b5563 !important;
}

/* Modern Breadcrumb Tasarımı - Ana CSS */
.breadcrumb {
    font-size: 0.85rem !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 1.5rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
    position: relative !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
}

.breadcrumb-item {
    pointer-events: auto !important;
    z-index: 1001 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
}

.breadcrumb-item a {
    color: #6b7280 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 1002 !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0.5rem 1rem !important;
    margin: 0.1rem !important;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.05) 0%, rgba(107, 114, 128, 0.1) 100%) !important;
    border: 1px solid rgba(107, 114, 128, 0.1) !important;
    min-height: 40px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    vertical-align: middle !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
    overflow: hidden !important;
}

.breadcrumb-item a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.2) 100%) !important;
    transition: left 0.3s ease !important;
    z-index: -1 !important;
}

.breadcrumb-item a:hover {
    color: #4b5563 !important;
    text-decoration: none !important;
    border-color: rgba(107, 114, 128, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.15) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(107, 114, 128, 0.15) 100%) !important;
}

.breadcrumb-item a:hover::before {
    left: 0 !important;
}

.breadcrumb-item a:active {
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(107, 114, 128, 0.2) 100%) !important;
}

.breadcrumb-item.active {
    color: #374151 !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.1) 0%, rgba(55, 65, 81, 0.15) 100%) !important;
    border-radius: 25px !important;
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid rgba(55, 65, 81, 0.2) !important;
    box-shadow: 0 2px 10px rgba(55, 65, 81, 0.1) !important;
}

/* Modern Breadcrumb Separator */
.breadcrumb-item + .breadcrumb-item::before {
    content: "→" !important;
    color: #9ca3af !important;
    font-weight: bold !important;
    margin: 0 0.75rem !important;
    pointer-events: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.breadcrumb-item:hover + .breadcrumb-item::before {
    color: #6b7280 !important;
    transform: scale(1.1) !important;
}

/* Sidebar optimizasyonu */
.blog-post-sidebar .card {
    margin-bottom: 1.5rem !important;
    border: 1px solid #e9ecef !important;
    border-radius: 8px !important;
}

.blog-post-sidebar .card-title {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
}

.blog-post-sidebar .card-text {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    color: #6c757d !important;
}

.blog-post-sidebar .btn {
    font-size: 0.85rem !important;
    padding: 0.5rem 1rem !important;
}

/* Tags optimizasyonu */
.blog-post-tags .badge {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
    margin: 0.2rem !important;
    border-radius: 4px !important;
}

/* Share buttons optimizasyonu */
.blog-post-share .btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
    margin: 0.2rem !important;
}

/* Related posts optimizasyonu */
.related-posts h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #2c3e50 !important;
}

.related-posts .card-title {
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}

.related-posts .card-text {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: #6c757d !important;
}

.related-posts .btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
}

/* Mobil optimizasyonu */
@media (max-width: 768px) {
    .blog-post-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .blog-post-hero .lead {
        font-size: 0.9rem !important;
    }
    
    .blog-post-body {
        font-size: 0.9rem !important;
    }
    
    .blog-post-body h1 {
        font-size: 1.4rem !important;
    }
    
    .blog-post-body h2 {
        font-size: 1.2rem !important;
    }
    
    .blog-post-body h3 {
        font-size: 1.1rem !important;
    }
    
    .blog-post-meta {
        font-size: 0.8rem !important;
    }
    
    .breadcrumb {
        font-size: 0.8rem !important;
        pointer-events: auto !important;
        z-index: 1000 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;
        backdrop-filter: blur(15px) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .breadcrumb-item {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    .breadcrumb-item a {
        font-size: 0.8rem !important;
        font-weight: 500 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        padding: 0.75rem 1.25rem !important;
        margin: 0 !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(107, 114, 128, 0.08) 0%, rgba(107, 114, 128, 0.12) 100%) !important;
        border: 1px solid rgba(107, 114, 128, 0.15) !important;
        border-radius: 15px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 2px 8px rgba(107, 114, 128, 0.1) !important;
    }
    
    .breadcrumb-item a:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 28px rgba(107, 114, 128, 0.2) !important;
        background: linear-gradient(135deg, rgba(107, 114, 128, 0.12) 0%, rgba(107, 114, 128, 0.18) 100%) !important;
    }
    
    .breadcrumb-item.active {
        padding: 0.75rem 1.25rem !important;
        min-height: 48px !important;
        width: 100% !important;
        background: linear-gradient(135deg, rgba(55, 65, 81, 0.12) 0%, rgba(55, 65, 81, 0.18) 100%) !important;
        border: 1px solid rgba(55, 65, 81, 0.25) !important;
        box-shadow: 0 4px 16px rgba(55, 65, 81, 0.15) !important;
    }
    
    /* Mobilde separator'ı gizle */
    .breadcrumb-item + .breadcrumb-item::before {
        display: none !important;
    }
    
    .blog-post-sidebar .card-title {
        font-size: 0.9rem !important;
    }
    
    .blog-post-sidebar .card-text {
        font-size: 0.8rem !important;
    }
    
    .related-posts h3 {
        font-size: 1.2rem !important;
    }
}
.stat-card {
    box-shadow: 0 1px 2px rgba(0,0,0,0.02) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.stat-card:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
}

.stat-card.bg-primary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.stat-card.bg-success {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.stat-card.bg-info {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.stat-card.bg-warning {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

/* Stat Card İçerik - Daha Belirgin Renkler */
.stat-card h3 {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: white !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5) !important;
    letter-spacing: -0.5px !important;
}

.stat-card p {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.stat-card i {
    color: white !important;
    text-shadow: 0 3px 6px rgba(0,0,0,0.5) !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
}

/* Admin Cards */
.dashboard-content .card {
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.dashboard-content .card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    transform: translateY(-2px) !important;
}

.dashboard-content .card-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border-bottom: 1px solid #e5e7eb !important;
    border-radius: 12px 12px 0 0 !important;
}

.dashboard-content .card-header h5 {
    color: #1f2937 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

/* Message ve Post Items */
.message-item, .post-item {
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
}

.message-item:hover, .post-item:hover {
    background: #f8fafc !important;
    transform: translateX(5px) !important;
}

.message-item h6, .post-item h6 {
    color: #1f2937 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.message-item p, .post-item p {
    color: #1e293b !important;
    font-size: 0.9rem !important;
}

/* Quick Actions Buttons */
.dashboard-content .btn {
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.dashboard-content .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.dashboard-content .btn-outline-primary {
    border: 2px solid #3b82f6 !important;
    color: #3b82f6 !important;
}

.dashboard-content .btn-outline-primary:hover {
    background: #6b7280 !important;
    color: white !important;
}

.dashboard-content .btn-outline-success {
    border: 2px solid #3b82f6 !important;
    color: #3b82f6 !important;
}

.dashboard-content .btn-outline-success:hover {
    background: #6b7280 !important;
    color: white !important;
}

.dashboard-content .btn-outline-info {
    border: 2px solid #06b6d4 !important;
    color: #06b6d4 !important;
}

.dashboard-content .btn-outline-info:hover {
    background: #06b6d4 !important;
    color: white !important;
}

.dashboard-content .btn-outline-warning {
    border: 2px solid #f59e0b !important;
    color: #f59e0b !important;
}

.dashboard-content .btn-outline-warning:hover {
    background: #f59e0b !important;
    color: white !important;
}

/* Blog Sayfası - Beyaz Tonları */
.blog-search,
.blog-search.bg-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%) !important;
}

.blog-search .bg-light,
.blog-search .category-link,
.blog-search .recent-post-item,
.blog-search .popular-tags-section {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Sayfa açıklaması arka planı – Hakkımızda & Eğitimlerimiz aynı gri (Bootstrap .bg-light: #f8f9fa) */
section.page-intro-bg,
section.about-intro.page-intro-bg,
section.egitimler-intro.page-intro-bg,
section.team-section.page-intro-bg,
section.blog-intro.page-intro-bg,
section.contact-intro.page-intro-bg {
    background-color: #f8f9fa !important;
}

/* Stats Section - Gri Tonları */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.stats-section .stat-card {
    background: transparent !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.stats-section .stat-card:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.stats-section .stat-card i {
    color: #ffffff !important;
}

.stats-section .stat-card h2 {
    color: #ffffff !important;
}

.stats-section .stat-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Butonlar - Primary Butonlar Mavi, Secondary Gri */
.btn-primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8) !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3) !important;
}

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

/* Tüm Başlıklar - Siyah */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5,
.fw-bold, .fw-semibold {
    color: #111827 !important;
}

/* Alt Başlıklar - Koyu Gri */
.lead, .text-muted, .text-secondary {
    color: #374151 !important;
}

/* Paragraflar - Siyah */
p, .text-muted {
    color: #1e293b !important;
}

/* Ana Sayfa Hero - Sadece Bu Renkli Kalsın */
.home-hero {
    background: linear-gradient(135deg, var(--logo-blue) 0%, var(--logo-green) 100%) !important;
}

.home-hero h1,
.home-hero .lead {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

/* Testimonials Card Düzeltmeleri */
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card .card-body .flex-grow-1 {
    flex: 1;
}

.testimonial-card .card-body .mt-auto {
    margin-top: auto;
}

/* Sayfa yüklenme animasyonu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Card Modern Hover Effects */
.service-card-modern:hover h3 {
    color: white !important;
    transition: all 0.3s ease;
}

.service-card-modern:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-link {
    color: var(--secondary-color) !important;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-link i {
    color: var(--secondary-color) !important;
}

.portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1920x1080 ekran çözünürlüğü için hizmetler tek satır */
@media (min-width: 1200px) and (max-width: 1920px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1rem !important;
    }
    
    .service-card-modern {
        min-width: 0 !important;
        padding: 1.5rem !important;
    }
    
    .service-card-modern h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .service-card-modern p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        min-height: 3.5rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .service-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .service-icon i {
        font-size: 1.5rem !important;
    }
}

/* 1920px ve üzeri ekranlar için */
@media (min-width: 1920px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* Cache busting - will-change removed: <?= date('Y-m-d H:i:s') ?> */

/* Admin Panel Styling */
.admin-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.dashboard-content .stat-card.bg-primary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.dashboard-content .stat-card.bg-success {
    background: linear-gradient(135deg, #9ca3af 0%, #d1d5db 100%) !important;
}

.dashboard-content .stat-card.bg-info {
    background: linear-gradient(135deg, #d1d5db 0%, #f3f4f6 100%) !important;
    color: #1f2937 !important;
}

.dashboard-content .stat-card.bg-warning {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%) !important;
    color: #1f2937 !important;
}

.sidebar {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%) !important;
    border: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%) !important;
}

/* Diğer Hizmetler Bölümü - Eşit Yükseklik */
.related-services .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.related-services .col-md-4,
.related-services .col-lg-4 {
    display: flex !important;
    flex-direction: column !important;
}

.related-services .service-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 300px !important;
    max-height: 350px !important;
    padding: 1.5rem !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.related-services .service-card .service-icon {
    flex-shrink: 0 !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
}

.related-services .service-card h5 {
    flex-shrink: 0 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
}

.related-services .service-card p {
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

.related-services .service-card .btn {
    flex-shrink: 0 !important;
    align-self: center !important;
    margin-top: auto !important;
    background: #6b7280 !important;
    border: 1px solid #6b7280 !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.related-services .service-card .btn:hover {
    background: #4b5563 !important;
    border-color: #4b5563 !important;
    transform: translateY(-2px) !important;
    color: white !important;
}

.related-services .service-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #3b82f6 !important;
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.modern-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--site-primary, #FF9900) 50%, var(--site-secondary, #FF8C00) 100%);
}

.footer-main {
    padding: 1.5rem 0 0.5rem;
}

/* 2 sütunlu düzen için masaüstü */
@media (min-width: 992px) {
    .footer-main .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .footer-main .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 64px;
    width: auto;
    max-height: 64px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(1.4);
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
}

.brand-text i {
    color: var(--site-primary, #FF9900);
    font-size: 1.8rem;
}

.brand-name {
    background: linear-gradient(135deg, var(--site-primary, #FF9900) 0%, var(--site-secondary, #FF8C00) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(var(--site-primary-rgb, 255, 153, 0), 0.1);
    border: 1px solid rgba(var(--site-primary-rgb, 255, 153, 0), 0.25);
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--site-primary, #FF9900) 0%, var(--site-secondary, #FF8C00) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: white;
    border-color: #FF9900;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

.social-link:hover::before {
    left: 0;
}

.social-link i {
    font-size: 0.9rem;
    z-index: 1;
}

/* Footer Menus */
.footer-menu {
    margin-bottom: 1rem;
}

.menu-title {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, var(--site-primary, #FF9900) 0%, var(--site-secondary, #FF8C00) 100%);
    border-radius: 1px;
}

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

.menu-item {
    margin-bottom: 0.5rem;
}

.menu-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.2rem 0;
    border-radius: 4px;
    position: relative;
}

.menu-link:hover {
    color: var(--site-primary, #FF9900);
    padding-left: 0.3rem;
    background: rgba(var(--site-primary-rgb, 255, 153, 0), 0.08);
}

.menu-link i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Footer Contact - Kompakt Versiyon */
.footer-contact-compact {
    margin-bottom: 0.5rem;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon-compact {
    color: var(--site-primary, #FF9900);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.contact-value-compact {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.contact-value-compact:hover {
    color: var(--site-primary, #FF9900);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-title {
    color: #f8fafc;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--site-primary, #FF9900) 0%, var(--site-secondary, #FF8C00) 100%);
    border-radius: 1px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--site-primary-rgb, 255, 153, 0), 0.1);
    border: 1px solid rgba(var(--site-primary-rgb, 255, 153, 0), 0.2);
    border-radius: 10px;
    color: var(--site-primary, #FF9900);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--site-primary, #FF9900);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1rem 0;
    margin-top: 1rem;
}

.copyright-text {
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 0;
}

.copyright-text strong {
    color: #f8fafc;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--site-primary, #FF9900);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--site-primary, #FF9900);
}

.footer-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 1rem 0 0.25rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 0.75rem;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-menu {
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-contact-compact {
        margin-bottom: 0.25rem;
    }
    
    .contact-info-compact {
        gap: 0.25rem;
    }
    
    /* 2 sütunlu düzen için mobilde tek sütun */
    .footer-main .row {
        flex-direction: column;
    }
    
    .footer-main .col-lg-3,
    .footer-main .col-lg-6 {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .menu-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 0.75rem 0;
        margin-top: 0.75rem;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 0.75rem;
        gap: 1rem;
    }
    
    .copyright-text {
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        gap: 0.4rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link i {
        font-size: 0.8rem;
    }
}

/* ============================================
   YENİ MODERN HEADER VE SLIDER STİLLERİ
   İlk Yardım Eğitimi Teması
   ============================================ */

/* Modern Header - Logo Renkleri ile Uyumlu (Turuncu) - Sayfayla birlikte kayar, asla fixed değil */
.modern-header-blue,
.modern-header-blue.site-header-custom {
    transition: background-color 0.2s ease;
    padding: 1rem 0;
    border-bottom: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 100;
}

.modern-header-blue .nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.modern-header-blue .nav-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.modern-header-blue .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4F4F4F;
    transition: width 0.3s ease;
}

.modern-header-blue .nav-link:hover::after {
    width: 80%;
}

.logo-text-white {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon-circle {
    transition: all 0.3s ease;
}

.logo-icon-circle:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.3) !important;
}

/* Hero Slider Modern */
.hero-slider-modern {
    position: relative;
    overflow: hidden;
}

.hero-modern-v2 {
    position: relative;
    overflow: visible;
    /* Scroll performansı için GPU hızlandırması */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

.hero-slider-modern .hero-title-modern {
    animation: none;
}

.hero-slider-modern .hero-description-modern {
    animation: none;
}

.hero-slider-modern .hero-search-modern {
    animation: none;
}

.hero-slider-modern .hero-stats-left {
    animation: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Ribbon */
.hero-ribbon {
    animation: fadeIn 0.6s ease-out;
    transition: all 0.3s ease;
}

.hero-ribbon:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

/* Hero Badge */
.hero-badge {
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.2s ease;
    position: relative;
    z-index: 12;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.35) !important;
}

/* Search Bar Hover Effects */
.hero-search-modern .btn-search-category:hover {
    background: #f3f4f6;
}

.hero-search-modern .btn-search-submit:hover {
    background: #FF8C00 !important;
}

.hero-search-modern input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Statistics Cards */
.stat-card-large {
    transition: all 0.3s ease;
}

.stat-card-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

.course-card-mini {
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

/* Hero Stats Container - Slider'ın Altına Taşan Kart */
.hero-stats-container {
    transition: all 0.3s ease;
}

.hero-stats-container:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
}

/* Modern Hero V2 Styles */
.hero-modern-v2 {
    position: relative;
    overflow: visible;
    /* Scroll performansı için GPU hızlandırması */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

.hero-badge {
    animation: fadeInDown 0.6s ease-out;
}

.hero-title-v2 {
    animation: fadeInUp 0.8s ease-out;
}

.hero-description-v2 {
    animation: fadeInUp 1s ease-out;
    animation: fadeInUp 1.2s ease-out;
}

.hero-cta-buttons {
    animation: fadeInUp 1.4s ease-out;
    /* Butonların konteyner üzerinde görünmesi için - KESİN ÇÖZÜM */
    position: relative !important;
    z-index: 200 !important;
    margin-bottom: 0 !important;
    margin-top: 2rem !important;
    padding-bottom: 60px !important;
}


.hero-courses-container {
    animation: fadeInUp 0.6s ease-out;
    /* Scroll performansı için GPU hızlandırması */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
    /* Butonların altında kalması için z-index düşürüldü - KESİN ÇÖZÜM */
    z-index: 1 !important;
    /* Margin-top kaldırıldı, row'da ayarlandı */
    position: relative !important;
}

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

/* Modern Button Styles */
.btn-hero-primary {
    transition: none;
    position: relative !important;
    z-index: 201 !important;
}

.btn-hero-primary:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
    background: #f8f9fa !important;
}

.btn-hero-secondary {
    transition: none;
    position: relative !important;
    z-index: 201 !important;
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.8) !important;
}

/* Course Card Modern */
.course-card-modern {
    transition: none;
}

.course-card-modern:hover {
    border-color: #FF9900 !important;
    box-shadow: 0 5px 15px rgba(255,153,0,0.1) !important;
    background: white !important;
}

.btn-course-link {
    transition: none;
}

.course-card-modern:hover .btn-course-link {
    color: #FF8C00 !important;
}

/* Why Us Section */
.why-us-section {
    position: relative;
    /* Scroll performansı için GPU hızlandırması */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

.why-us-card {
    transition: none;
    cursor: pointer;
}

.why-us-card:hover {
    border-color: #FF9900 !important;
    box-shadow: 0 5px 15px rgba(255,153,0,0.1) !important;
}

.why-us-icon {
    transition: none;
}

/* Courses Section */
.courses-section {
    position: relative;
    /* Scroll performansı için GPU hızlandırması */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style;
}

.course-card-detailed {
    transition: none;
}

.course-card-detailed:hover {
    border-color: #FF9900 !important;
    box-shadow: 0 5px 15px rgba(255,153,0,0.1) !important;
}

.course-image {
    transition: none;
}

.btn-course-detail {
    transition: none;
}

.btn-course-detail:hover {
    box-shadow: 0 5px 15px rgba(255,153,0,0.2) !important;
}

.course-card-detailed:hover .btn-course-detail {
    background: linear-gradient(135deg, #FF8C00, #FF9900) !important;
}


.floating-stats-card {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateZ(0);
    }
    50% {
        transform: translateY(-10px) translateZ(0);
    }
}

/* Hero Image Placeholder */
.hero-person-placeholder {
    transition: all 0.3s ease;
}

.hero-person-placeholder:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.15) !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-slider-modern {
        padding: 80px 0 60px !important;
        min-height: auto !important;
    }
    
    .hero-title-modern {
        font-size: 2.5rem !important;
    }
    
    .hero-courses-container {
        margin-top: -40px !important;
        padding: 2rem !important;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    
    .floating-stats-card {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        margin-top: 2rem;
    }
    
    .hero-person-placeholder {
        max-width: 100% !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .modern-header-blue .d-none.d-md-flex {
        display: none !important;
    }
    
    .hero-title-modern {
        font-size: 2rem !important;
    }
    
    .hero-search-modern {
        flex-direction: column;
        border-radius: 15px !important;
    }
    
    .btn-search-category {
        border-right: none !important;
        border-bottom: 2px solid #e5e7eb !important;
        border-radius: 15px 15px 0 0 !important;
        width: 100%;
        justify-content: center;
    }
    
    .btn-search-submit {
        border-radius: 0 0 15px 15px !important;
        width: 100%;
    }
    
    .hero-courses-container {
        margin-top: -30px !important;
        padding: 1.5rem !important;
    }
    
    .hero-title-v2 {
        font-size: 2rem !important;
    }
    
    .hero-description-v2 {
        font-size: 0.95rem !important;
    }
    
    .hero-badge {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        white-space: normal !important;
        max-width: 90%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .hero-badge span {
        font-size: 0.75rem !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
    
    .why-us-section {
        padding: 60px 0 !important;
    }
    
    .why-us-card {
        margin-bottom: 1.5rem;
    }
    
    .courses-section {
        padding: 60px 0 !important;
    }
    
    .course-card-detailed {
        margin-bottom: 2rem;
    }
    
}
