/* Modern Savvy Theme CSS */
/* Force Override All Previous Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Critical Navigation Overrides */
.nav-menu,
.nav-menu *,
.nav-menu ul,
.nav-menu ul li,
.nav-menu ul li a,
.nav-menu ul li ul,
.nav-menu ul li ul li,
.nav-menu ul li ul li a,
.nav-menu > ul,
.nav-menu > ul > li,
.nav-menu > ul > li > a,
.nav-menu > ul > li > ul,
.nav-menu > ul > li > ul > li,
.nav-menu > ul > li > ul > li > a {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
}

.nav-menu ul::before,
.nav-menu ul::after,
.nav-menu ul li::before,
.nav-menu ul li::after,
.nav-menu ul li ul::before,
.nav-menu ul li ul::after,
.nav-menu ul li ul li::before,
.nav-menu ul li ul li::after,
.nav-menu > ul::before,
.nav-menu > ul::after,
.nav-menu > ul > li::before,
.nav-menu > ul > li::after,
.nav-menu > ul > li > ul::before,
.nav-menu > ul > li > ul::after,
.nav-menu > ul > li > ul > li::before,
.nav-menu > ul > li > ul > li::after {
    content: none !important;
    display: none !important;
}

:root {
    --primary-color: #FF0000;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray-text: #6b7280;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 24px;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--primary-color);
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-right: 10px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(255, 0, 0, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    margin-top: 10px;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--dark-color);
    font-size: 14px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.sub-menu a:last-child {
    border-bottom: none;
}

.sub-menu a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary-color);
    padding-left: 30px;
}

.sub-menu a::after {
    display: none;
}





/* Mobile Menu Toggle - Sadece 3 Çizgi */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .line {
    background: var(--primary-color);
}



.mobile-menu-toggle .hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.mobile-menu-toggle .line {
    width: 24px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    margin-bottom: 30px;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo .logo-image {
    height: 35px;
    width: auto;
}

.mobile-logo .logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1003;
    position: relative;
}

.mobile-menu-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
    padding-left: 15px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 10px;
}

/* Mobile Social */
.mobile-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.mobile-social-link {
    display: flex;
    align-items: center;
    padding: 15px 0;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.mobile-social-link:last-child {
    border-bottom: none;
}

.mobile-social-link i {
    width: 30px;
    font-size: 18px;
    margin-right: 15px;
    color: var(--primary-color);
}

.mobile-social-link:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .social-icons {
        display: none;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        margin-left: 0;
    }
    
    /* Mobilde çizgi boyutunu ayarla */
    .mobile-menu-toggle .line {
        width: 22px;
        height: 2.5px;
    }
    
    .mobile-menu-toggle {
        padding: 8px 10px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Mobilde testimonials ve referanslar padding'ini azalt */
    .testimonials-section,
    .referanslar-section {
        padding: 30px 0;
    }
    
    /* Mobilde testimonials için daha iyi touch desteği */
    .testimonials-slider {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonial-item {
        min-width: 280px;
        padding: 15px;
        touch-action: pan-y;
    }
    
    .testimonials-track {
        gap: 15px;
        padding: 0 15px;
    }
    
    .referans-item {
        min-width: 140px;
        padding: 10px;
    }
    
    /* Mobilde blog grid tek sütun olsun */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    /* Mobilde çalışmalar grid tek sütun olsun */
    .calismalar-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 20px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
    
    .calisma-card {
        margin-bottom: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
}

@media (max-width: 480px) {
    .calismalar-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 15px !important;
        padding: 0 10px !important;
        width: 100% !important;
    }
    
    .calisma-card {
        margin-bottom: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .calisma-content {
        padding: 20px !important;
    }
    
    .calisma-content h3 {
        font-size: 18px !important;
    }
    
    /* Mobilde testimonials için ek iyileştirmeler */
    .testimonial-item {
        min-width: 260px;
        padding: 12px;
    }
    
    .testimonials-track {
        gap: 12px;
        padding: 0 12px;
    }
    
    /* Mobilde testimonials için daha iyi touch desteği */
    .testimonials-slider {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobilde testimonials için daha iyi görünüm */
    .testimonials-section {
        padding: 25px 0;
    }
    
    /* Mobilde testimonials için daha iyi touch desteği */
    .testimonials-track {
        gap: 10px;
        padding: 0 10px;
    }
    
    .testimonial-item {
        min-width: 250px;
        padding: 10px;
    }
    
    /* Mobilde testimonials için daha iyi touch desteği */
    .testimonials-slider {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .testimonials-track {
        touch-action: pan-x;
    }
    
    /* Mobilde testimonials için daha iyi görünüm */
    .testimonials-section {
        padding: 20px 0;
    }
    
    /* Mobilde testimonials için daha iyi touch desteği */
    .testimonials-track {
        gap: 8px;
        padding: 0 8px;
    }
    
    .testimonial-item {
        min-width: 240px;
        padding: 8px;
    }
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    margin-top: 90px;
}

/* Arka plan dekoratif daireler */
.hero-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 25px;
    height: 25px;
    border: 3px solid #FF0000;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 120px;
    right: 40px;
    width: 20px;
    height: 20px;
    border: 3px solid #FF0000;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
    animation: float 8s ease-in-out infinite reverse;
}

/* Ek dekoratif daireler */
.hero-section .bg-circle-1 {
    position: absolute;
    top: 80px;
    right: 120px;
    width: 18px;
    height: 18px;
    border: 3px solid #FF0000;
    border-radius: 50%;
    z-index: 0;
    opacity: 1;
    animation: float 7s ease-in-out infinite;
}

.hero-section .bg-circle-2 {
    position: absolute;
    bottom: 80px;
    left: 100px;
    width: 80px;
    height: 80px;
    border: 1px solid #000000;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.15;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-section .bg-circle-3 {
    position: absolute;
    top: 200px;
    left: 200px;
    width: 15px;
    height: 15px;
    border: 1px solid #000000;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.2;
    animation: float 5s ease-in-out infinite;
}



/* Float animasyonu */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

/* Hero Background Image - En üstte ve sabit */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 20px;
    padding-right: 50px;
}

.hero-background-image .hero-bg-image {
    width: 600px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1);
}

/* Hero Container ve Grid Düzeni */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

/* Sol İçerik */
.hero-content {
    z-index: 2;
    margin-top: 20px;
    padding-top: 10px;
}

/* Brand Header - MENTAL AJANS */
.brand-header {
    margin-bottom: 25px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.brand-header .brand-bold {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-header .brand-light {
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-left: 5px;
}

/* Sağ Görsel */
.hero-visual {
    position: relative;
    z-index: 2;
}



/* İstatistik Kartları - Görselin Sol Üstünde */


.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
    color: #000000;
    padding-top: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-content h1 .highlight-red {
    color: #FF0000;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-video:hover {
    color: #000000;
}

.video-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.btn-video:hover .video-btn {
    background: #000000;
    border-color: #000000;
    transform: scale(1.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatars {
    display: flex;
    gap: -10px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-left: -10px;
}

.client-avatar:first-child {
    margin-left: 0;
}

.hero-visual {
    position: relative;
    z-index: 2;
}



.hero-image {
    position: relative;
}

.hero-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}













@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 1; /* Mobilde üstte */
    }
    
    .hero-visual {
        order: 2; /* Mobilde altta */
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap; /* Yan yana kalması için */
    }
    
    .btn-social-hero {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 5px;
        flex-shrink: 0; /* Küçülmemesi için */
    }
    
    /* Mobilde istatistik kartları görselin üstünde */
    .hero-visual .stat-cards {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 60px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-visual .stat-card {
        min-width: 140px;
        padding: 12px;
    }
    
    .hero-visual .stat-card h4 {
        font-size: 16px;
    }
    
    .hero-visual .stat-card p {
        font-size: 11px;
    }
    
    .hero-main-image {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-social-hero {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 3px;
    }
    
    /* Çok küçük ekranlarda çizgi boyutunu ayarla */
    .mobile-menu-toggle {
        padding: 6px 8px;
    }
    
    .mobile-menu-toggle .line {
        width: 20px;
        height: 2px;
    }
    
    /* Çok küçük ekranlarda daireleri daha da küçült */
    .hero-section::before {
        width: 15px;
        height: 15px;
        top: 15px;
        left: 15px;
        border-width: 3px;
        opacity: 1;
    }
    
    .hero-section::after {
        width: 12px;
        height: 12px;
        top: 60px;
        right: 15px;
        border-width: 3px;
        opacity: 1;
    }
    
    .hero-section .bg-circle-1,
    .hero-section .bg-circle-2,
    .hero-section .bg-circle-3 {
        transform: scale(0.6);
        opacity: 0.1;
    }
}

/* Blog Section */
.blog-section {
    padding: 40px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

/* Tablet boyutları için blog grid 2 sütun olsun */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    /* Tablet boyutları için çalışmalar grid 2 sütun olsun */
    .calismalar-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
        padding: 0 20px;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--gray-text);
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--gray-text);
}

.blog-meta .author {
    font-weight: 500;
    color: var(--primary-color);
}

.blog-meta .date {
    color: var(--gray-text);
}

/* Testimonials Section */
.testimonials-section {
    background: #FF0000;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header .testimonials-content {
    text-align: center;
}

.testimonials-content {
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-content .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.testimonials-content .section-title {
    color: #ffffff;
}

.testimonials-content .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.btn-review {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

.btn-review:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
    width: max-content;
    padding: 0 20px;
    will-change: transform;
    cursor: grab;
    user-select: none;
    position: relative;
}

.testimonials-track:hover {
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonials-track.dragging {
    transition: none;
    cursor: grabbing;
}

.testimonials-track.dragging .testimonial-item {
    transform: scale(0.99);
    transition: transform 0.15s ease;
}

.testimonials-track.dragging .testimonial-item:hover {
    transform: scale(0.99);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    min-width: 350px;
    color: #333;
    position: relative;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
    margin-bottom: 15px;
    min-height: 80px;
    max-height: 80px;
    overflow: hidden;
    word-wrap: break-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h4 {
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
    font-size: 16px;
}

.author-info p {
    color: var(--gray-text);
    font-size: 12px;
}

.quote-mark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    color: var(--secondary-color);
    font-weight: bold;
    opacity: 0.3;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p,
.footer-column li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

input.error,
textarea.error {
    border-color: #e74c3c;
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info-icon {
        margin-right: 0;
    }
}

/* Contact Form Specific */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.contact-info-content p {
    margin: 5px 0 0 0;
    color: var(--gray-text);
    font-size: 14px;
}

/* 3D Animations */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.rotating-element {
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pulse-element {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 0 15px;
    }
    
    .hero-content {
        order: 1; /* Mobilde üstte */
        margin-top: 5px;
        padding-top: 0;
    }
    
    .hero-visual {
        order: 2; /* Mobilde altta */
    }
    
    /* Mobilde hero arka plan resmi gizle */
    .hero-background-image {
        display: none;
    }
    
    /* Mobilde arka plan dairelerini küçült ve yeniden konumlandır */
    .hero-section::before {
        width: 20px;
        height: 20px;
        top: 20px;
        left: 20px;
        border-width: 3px;
        opacity: 1;
    }
    
    .hero-section::after {
        width: 15px;
        height: 15px;
        top: 80px;
        right: 20px;
        border-width: 3px;
        opacity: 1;
    }
    
    .hero-section .bg-circle-1 {
        width: 12px;
        height: 12px;
        top: 50px;
        right: 80px;
        border-width: 3px;
        opacity: 1;
    }
    
    .hero-section .bg-circle-2 {
        width: 60px;
        height: 60px;
        bottom: 40px;
        left: 50px;
        opacity: 0.1;
    }
    
    .hero-section .bg-circle-3 {
        width: 10px;
        height: 10px;
        top: 120px;
        left: 100px;
        opacity: 0.15;
    }
    

    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap; /* Yan yana kalması için */
    }
    
    .btn-social-hero {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 5px;
        flex-shrink: 0; /* Küçülmemesi için */
    }
    
    .hero-stats .stat-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .hero-stats .stat-card {
        padding: 15px;
    }
    
    .hero-stats .stat-card h4 {
        font-size: 18px;
    }
    
    .hero-stats .stat-card p {
        font-size: 12px;
    }
    
    .hero-main-image {
        max-width: 100%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-social-hero {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 3px;
    }
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: 20px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        margin-left: 0;
        right: auto;
        z-index: 9999;
    }
    
    .nav-menu > ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
        display: flex !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(6, 182, 212, 0.1);
        margin: 0;
        display: block !important;
    }
    
    .nav-menu > ul > li > a {
        padding: 20px;
        display: block !important;
        width: 100%;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: var(--dark-color);
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nav-menu > ul > li > a:hover,
    .nav-menu > ul > li > a.active {
        background: rgba(6, 182, 212, 0.1);
        color: var(--primary-color);
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu .sub-menu a {
        padding: 15px 20px;
        color: var(--gray-text);
        font-size: 16px;
    }
    
    .nav-menu.active {
        left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu.active .mobile-social-icons {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu.active > ul {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu.active > ul > li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-menu.active > ul > li > a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Mobilde header container düzeni */
    .header-container {
        justify-content: space-between;
    }
    
    /* Mobilde sosyal medya ikonları gizle */
    .social-icons {
        display: none;
    }
    
    /* Mobil menüde sosyal medya ikonları */
    .nav-menu .mobile-social-icons {
        display: none !important;
        gap: 15px;
        margin-top: 30px;
        justify-content: center;
    }
    
    .nav-menu .mobile-social-icons .social-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(6, 182, 212, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-color);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 18px;
    }
    
    .nav-menu .mobile-social-icons .social-icon:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Force Display Flex for Navigation */
.nav-menu > ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 30px !important;
}

.nav-menu > ul > li {
    display: flex !important;
    align-items: center !important;
}

/* Force Remove All List Styles */
.nav-menu ul,
.nav-menu ul li,
.nav-menu ul li a,
.nav-menu ul li ul,
.nav-menu ul li ul li,
.nav-menu ul li ul li a,
.nav-menu > ul,
.nav-menu > ul > li,
.nav-menu > ul > li > a,
.nav-menu > ul > li > ul,
.nav-menu > ul > li > ul > li,
.nav-menu > ul > li > ul > li > a,
.nav-menu .sub-menu,
.nav-menu .sub-menu li,
.nav-menu .sub-menu li a {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force Horizontal Layout */
.nav-menu > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 30px !important;
}

.nav-menu > ul > li {
    display: inline-block !important;
    float: none !important;
    vertical-align: top !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
}

/* Ultimate Override */
.nav-menu > ul {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu > ul > li {
    display: inline-block !important;
    float: none !important;
    vertical-align: top !important;
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
    margin: 0 !important;
    padding: 0 !important;
} 

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
    height: 70%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(6, 182, 212, 0.3);
    transform: scale(1.1);
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        height: 60%;
        margin: 10% auto;
    }
} 

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Kare yapmak için */
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: var(--primary-color);
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
} 

/* Gallery Cards */
.gallery-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Kare yapmak için */
    overflow: hidden;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(6, 182, 212, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
}

.gallery-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.gallery-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: white;
}

.gallery-btn i {
    font-size: 16px;
} 

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    margin-bottom: 20px;
}

.blog-meta .date {
    color: #999;
    font-size: 14px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.blog-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.blog-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-all:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: white;
} 

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 400px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 15px 0;
    padding-left: 20px;
    min-height: 80px;
    max-height: 80px;
    overflow: hidden;
    word-wrap: break-word;
}

/* Yıldızlar ve Like Butonları */
.testimonial-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 0 20px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
    animation: starGlow 2s ease-in-out infinite alternate;
}

.stars i:nth-child(1) { animation-delay: 0s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.like-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.like-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.like-button i {
    color: #fff;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.author-avatar:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .testimonials-track {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        width: 300px;
    }
} 

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
} 

/* WPO Section Title */
.wpo-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.wpo-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.wpo-section-title p {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wpo-section-title h2 {
        font-size: 28px;
    }
    
    .wpo-section-title p {
        font-size: 16px;
    }
} 

/* WPO Service Section */
.wpo-service-section {
    background: white;
}

.wpo-service-section-s3 {
    background: #f8f9fa;
} 

/* WPO Gallery Section */
.wpo-gallery-section {
    background: #f8f9fa;
} 

/* Floating Elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.pulse-element {
    animation: pulse 2s ease-in-out infinite;
} 

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-lg-4,
.col-md-6,
.col-sm-12 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .col-lg-3,
    .col-lg-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
} 

/* Margin Utilities */
.mb-4 {
    margin-bottom: 1.5rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
} 

/* Referanslar Section */
.referanslar-section {
    background: var(--white);
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.referanslar-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
    background: #f8f9fa;
    padding: 40px 0;
    border-radius: 15px;
}

.referanslar-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.referans-item {
    flex-shrink: 0;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.referans-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.referans-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.referans-item:hover .referans-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.referanslar-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .referanslar-slider {
        padding: 20px 0;
    }
    
    .referans-item {
        margin: 0 15px;
        padding: 10px;
    }
    
    .referans-logo {
        max-width: 100px;
        max-height: 50px;
    }
} 

/* Blog Detail */
.blog-detail-section {
    padding: 40px 0;
    background: var(--white);
}

.blog-detail-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-content {
    padding: 40px;
}

.blog-detail-text {
    line-height: 1.8;
    color: var(--gray-text);
    font-size: 16px;
}

.blog-detail-text h1,
.blog-detail-text h2,
.blog-detail-text h3,
.blog-detail-text h4,
.blog-detail-text h5,
.blog-detail-text h6 {
    color: var(--dark-color);
    margin: 25px 0 15px 0;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin: 20px 0;
    padding-left: 20px;
}

.blog-detail-text li {
    margin-bottom: 10px;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
} 

/* Services Cards Section */
.services-cards-section {
    padding: 20px 0 60px;
    background: var(--white);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* 6 kart için özel düzen */
@media (min-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-card-item {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #FF0000;
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.card-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.card-turquoise {
    background: linear-gradient(135deg, #FF0000 0%, #1e40af 100%);
    color: white;
}

.card-dark {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.card-turquoise-light {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    color: white;
}

.service-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: transparent;
}

.service-card-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
}

.service-card-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    color: inherit;
    margin: 0;
}

@media (max-width: 1200px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-item {
        padding: 20px;
        min-height: 180px;
    }
} 

/* Career Section */
.career-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.career-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.career-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.career-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.career-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp, .btn-telegram, .btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background: #006699;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.btn-phone {
    background: var(--primary-color);
    color: white;
}

.btn-phone:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

@media (max-width: 768px) {
    .career-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp, .btn-telegram, .btn-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 

/* Çalışmalarımız Section */
.calismalar-section {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.calismalar-section .calismalar-grid,
.calismalar-grid {
    display: grid !important;
    flex: none !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.calismalar-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Çalışmalar Grid */
.calismalar-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    padding: 0;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    flex: none !important;
}

/* Eski slider stilleri (artık kullanılmıyor) */
.calismalar-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.calismalar-track {
    display: flex;
    gap: 30px;
    animation: slideCalismalar 25s linear infinite;
    width: max-content;
}

@keyframes slideCalismalar {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.calisma-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100% !important;
    min-width: 0;
    flex-shrink: 0;
    flex: none !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    display: block !important;
}

.calisma-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.15);
}

.calisma-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.calisma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.calisma-card:hover .calisma-image img {
    transform: scale(1.1);
}

.calisma-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 48px;
}

.calisma-content {
    padding: 25px;
}

.calisma-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.calisma-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.btn-detay {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Çalışmalar Footer Butonu */
.calismalar-footer {
    margin-top: 40px;
}

.calismalar-footer .btn-view-all {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.calismalar-footer .btn-view-all:hover {
    background: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-detay:hover {
    background: #000000;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 768px) {
    .calisma-card {
        width: 300px;
    }
    
    .calisma-content {
        padding: 20px;
    }
} 

/* Contact Form Styles */
.contact-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Content Styles */
.about-content-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.about-content-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 40px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
    text-align: left;
}

/* Glass Card Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Testimonials Section Background */
.testimonials-section {
    background: #FF0000 !important;
    padding: 40px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.testimonials-section .section-title,
.testimonials-section .section-description {
    position: relative;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-section .section-tag {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-align: center;
}

.testimonials-section .section-title,
.testimonials-section .section-description {
    color: #ffffff !important;
    text-align: center;
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    cursor: grab;
    user-select: none;
    transform: translateX(0);
    width: max-content;
    padding: 0 20px;
    will-change: transform;
    touch-action: pan-x;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-action: pan-x;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-drag: none;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-cursor: grab;
    -webkit-will-change: transform;
    -webkit-transform: translateX(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    -webkit-touch-action: pan-x;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-item {
    min-width: 300px;
    max-width: 300px;
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    margin-right: 20px;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Referanslar Section Background */
.referanslar-section {
    background: #ffffff;
    padding: 40px 0;
    position: relative;
    width: 100%;
    margin: 0;
}

.referanslar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
}

.referanslar-section .section-title,
.referanslar-section .section-description {
    position: relative;
    color: #000 !important;
}

.referanslar-section .section-header {
    margin-bottom: 30px;
    text-align: center;
}

.referanslar-section .section-header .section-title,
.referanslar-section .section-header .section-description {
    text-align: center;
    color: #000 !important;
}

.referanslar-section .section-title,
.referanslar-section .section-description {
    color: #000 !important;
    text-align: center;
    margin: 5px 0;
}

/* Markalar yazısı için kırmızı renk */
.referanslar-section .section-title .markalar-text {
    color: #FF0000 !important;
}

/* Siyah-gri gradient yazılar için */
.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials section'daki gradient-text'i override et */
.testimonials-section .gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.referanslar-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: none;
}

.referanslar-track {
    display: flex;
    gap: 25px;
    align-items: center;
}

.referans-item {
    min-width: 120px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.referans-item:hover {
    transform: scale(1.05);
}

.referans-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.referans-item:hover .referans-logo {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.social-media-section .social-icons {
    justify-content: center;
    gap: 20px;
}

.social-media-section .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
}

/* Career Card */
.career-card.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.career-card h2 {
    color: #000;
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.career-card p {
    color: #000;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
}

/* Social Media Buttons */
.career-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 10px;
}

.btn-social::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-social:hover::before {
    left: 100%;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-social i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-social:hover i {
    transform: scale(1.1);
}

.btn-facebook { background: #1877f2; }
.btn-twitter { background: #1da1f2; }
.btn-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-linkedin { background: #0077b5; }
.btn-youtube { background: #ff0000; }
.btn-whatsapp { background: #25d366; }
.btn-telegram { background: #0088cc; }
.btn-phone { background: #28a745; }

/* Work Detail Page Styles */
.work-meta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.work-placeholder {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
}

.no-works {
    text-align: center;
    color: var(--gray-text);
    font-style: italic;
    padding: 20px;
}

.social-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-share:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.btn-share.btn-facebook { background: #1877f2; }
.btn-share.btn-twitter { background: #1da1f2; }
.btn-share.btn-linkedin { background: #0077b5; }
.btn-share.btn-whatsapp { background: #25d366; }

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card.glass-card:hover::before {
    transform: scaleX(1);
}

.feature-card.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-card.glass-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-form-card,
    .about-content-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-card.glass-card {
        padding: 25px 20px;
        margin: 20px 15px;
    }
    
    .testimonial-item {
        min-width: 280px;
        padding: 20px;
    }
    
    .referanslar-card.glass-card {
        padding: 25px 20px;
        margin: 20px 15px;
    }
    
    .referans-item {
        min-width: 140px;
        padding: 15px;
    }
    
    .referans-logo {
        max-height: 60px;
    }
    
    .career-card.glass-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .career-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .career-card p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .career-contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .btn-social {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        font-size: 18px;
        margin: 5px;
    }
    
    .work-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .why-choose-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .feature-card.glass-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    /* Social Media Section Styles */
    .social-media-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .social-media-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .social-media-card {
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .social-media-card:hover {
        transform: translateY(-10px);
    }
    
    .social-media-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: white;
        font-size: 32px;
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    }
    
    .social-media-card h3 {
        color: #1f2937;
        margin-bottom: 15px;
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .social-media-card p {
        color: #6b7280;
        margin-bottom: 25px;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .btn-social-media {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 30px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    
    .btn-social-media:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
    }
    
    @media (max-width: 768px) {
        .social-media-section {
            padding: 60px 0;
        }
        
        .social-media-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-media-card.glass-card {
            padding: 25px 20px;
        }
        
        .social-media-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .social-media-card h3 {
            font-size: 1.2rem;
        }
        
        .social-media-card p {
            font-size: 0.9rem;
        }
    }
} 

/* Hizmetler Bölümü Stilleri */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card-item {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-item:hover::before {
    opacity: 1;
}

.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #FF0000;
}

.service-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card-item:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: transparent;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-card-content h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-item:hover .service-card-content h3 {
    color: #FF0000;
}

.service-card-content p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card-item:hover .service-card-content p {
    color: #9ca3af;
}

.services-more-button {
    text-align: center;
}

.btn-more-services {
    display: inline-block;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-more-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-more-services:hover::before {
    opacity: 1;
}

.btn-more-services span {
    position: relative;
    z-index: 2;
}

.btn-more-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Hizmetler Sayfası Stilleri */
.page-header {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1f2937;
}

.page-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.all-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-details {
    margin-top: 20px;
}

.btn-service-detail {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-service-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-item {
        padding: 25px 20px;
    }
    
    .service-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-card-content h3 {
        font-size: 20px;
    }
    
    .page-header {
        padding: 100px 0 60px;
        background: white;
        color: #333;
    }
    
    .page-header h1 {
        font-size: 32px;
        color: #1f2937;
    }
    
    .page-header p {
        font-size: 18px;
        color: #6b7280;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-more-services {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Hero Sosyal Medya Butonları */
.btn-social-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #000000;
    color: white;
}

.btn-social-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    background: #333333;
}

/* Hero İstatistik Kartları - 4'lü düzen */
.hero-stats .stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 20px;
}

.hero-stats .stat-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.hero-stats .stat-card p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Hero Görsel Stilleri */
.hero-main-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-social-hero {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 5px;
    }
    
    .hero-stats .stat-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-stats .stat-card {
        padding: 15px;
    }
    
    .hero-stats .stat-card h4 {
        font-size: 20px;
    }
    
    .hero-stats .stat-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-visual .stat-cards {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        margin-bottom: 60px;
    }
    
    .hero-visual .stat-card {
        min-width: 120px;
        padding: 10px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn-social-hero {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 3px;
    }
}

/* PC'de kartları sola ve aşağı al */
@media (min-width: 769px) {
    .hero-visual .stat-cards {
        position: absolute;
        top: 10px;
        left: -70px;
        z-index: 3;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
    }
}

/* Mobilde kartları HİZMETLERİMİZ yazısının üstüne taşı */
@media (max-width: 768px) {
    .hero-visual .stat-cards {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 80px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Mobilde padding'leri azalt */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    
    .hero-content h1 {
        margin-top: 10px;
        font-size: 2.2rem;
        padding-top: 10px;
    }
    
    /* Mobilde brand header */
    .brand-header .brand-bold,
    .brand-header .brand-light {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .brand-header {
        margin-bottom: 20px;
    }
    
    .services-cards-section {
        padding: 15px 0 40px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 30px;
        margin-top: 60px;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .hero-content h1 {
        margin-top: 0;
        font-size: 1.8rem;
        line-height: 1.3;
        padding-top: 0;
    }
    
    /* Çok küçük ekranlarda brand header */
    .brand-header .brand-bold,
    .brand-header .brand-light {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .brand-header {
        margin-bottom: 15px;
    }
    
    .hero-content p {
        margin-top: 15px;
        font-size: 1rem;
    }
    
    .services-cards-section {
        padding: 10px 0 30px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Çalışmalar Section için özel CSS */
.calismalar-section {
    overflow: hidden;
}

.calismalar-section .calismalar-grid,
.calismalar-grid {
    display: grid !important;
    flex: none !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    align-items: unset !important;
    justify-content: unset !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Mobilde tek sütun için özel CSS */
@media (max-width: 768px) {
    .calismalar-section .calismalar-grid,
    .calismalar-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 20px !important;
        padding: 0 15px !important;
        width: 100% !important;
        flex: none !important;
        flex-direction: unset !important;
        flex-wrap: unset !important;
        align-items: unset !important;
        justify-content: unset !important;
    }
    
    .calisma-card {
        margin-bottom: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .calismalar-section .calismalar-grid,
    .calismalar-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 15px !important;
        padding: 0 10px !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .calisma-card {
        margin-bottom: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        display: block !important;
    }
    
    .calisma-content {
        padding: 20px !important;
    }
    
    .calisma-content h3 {
        font-size: 18px !important;
    }
}

/* Mobil menü açıkken 3 çizgiyi gizle */
.mobile-menu.active ~ .header-container .mobile-menu-toggle {
    display: none !important;
}

/* Alternatif yöntem - body'ye class ekleyerek */
body.menu-open .mobile-menu-toggle {
    display: none !important;
}

/* Çalışmalarımız Section Header - Hizmetlerimiz ile aynı */
.calismalar-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.calismalar-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    animation: none;
    transition: none;
}

.calismalar-section .section-header h2:hover {
    transform: none;
    animation: none;
}

.calismalar-section .section-header .section-tag {
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    animation: none;
    transition: none;
}

.calismalar-section .section-header .section-tag:hover {
    transform: none;
    animation: none;
}

.calismalar-section .section-header .section-description {
    font-size: 18px;
    color: #000;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    animation: none;
    transition: none;
}

/* Hizmetlerimiz Section Header - Çalışmalarımız ile aynı */
.services-cards-section .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.services-cards-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    animation: none;
    transition: none;
}

.services-cards-section .section-header h2:hover {
    transform: none;
    animation: none;
}

/* Mobil responsive stilleri */
@media (max-width: 768px) {
    .calismalar-section .section-header h2,
    .services-cards-section .section-header h2 {
        font-size: 2rem;
    }
    
    .calismalar-section .section-header .section-description,
    .services-cards-section .section-header .section-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .calismalar-section .section-header h2,
    .services-cards-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .calismalar-section .section-header .section-description,
    .services-cards-section .section-header .section-description {
        font-size: 14px;
    }
}