/* Modern Genel Stiller */
:root {
    --primary-color: #0053a6;
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --secondary-color: #333;
    --light-color: #fff;
    --dark-color: #000;
    --gray-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Ana İçerik */
.main-content {
    padding-top: 0; /* Completely removed padding to eliminate white space */
    min-height: 100vh;
}

/* Slider section should start right after header */
.slider-section {
    margin-top: 0; /* Completely removed margin to eliminate white space */
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

/* Modern Header Stilleri */
.header-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    margin: 0;
    height: 140px; /* Logo yüksekliğine uygun olarak artırıldı */
}

.header-parts-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Header Parçaları */
.header-part {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Sol Parça - Logo Kısmı */
.left-part {
    width: 25%;
    background-color: #002290; /* Koyu mavi arka plan (#002290) */
    backdrop-filter: blur(5px); /* Arka planı bulanıklaştırma efekti */
    border-top-right-radius: 50px; /* C şeklinde kesik */
    border-bottom-right-radius: 50px; /* C şeklinde kesik */
    padding-right: 30px; /* C şeklinin içe doğru olan kısmı */
    justify-content: flex-start;
}

/* Orta Parça - Kategoriler */
.middle-part {
    width: 40%; /* Kısaltıldı */
    background-color: #002290; /* Koyu mavi arka plan (#002290) */
    backdrop-filter: blur(5px); /* Arka planı bulanıklaştırma efekti */
    border-radius: 30px; /* Ovallik */
    margin: 0 20px; /* Pozitif margin ile parçalardan uzaklaştırma */
    z-index: 5; /* Diğer parçaların üzerinde görünmesi için */
    justify-content: center;
}

/* Sağ Parça - İletişim Butonları */
.right-part {
    width: 25%;
    background-color: #002290; /* Koyu mavi arka plan (#002290) */
    backdrop-filter: blur(5px); /* Arka planı bulanıklaştırma efekti */
    border-top-left-radius: 50px; /* Ters C şeklinde kesik */
    border-bottom-left-radius: 50px; /* Ters C şeklinde kesik */
    padding-left: 30px; /* Ters C şeklinin içe doğru olan kısmı */
    justify-content: flex-end;
}

/* Logo Stili */
.logo {
    display: flex;
    align-items: center;
    justify-content: center; /* Logo'yu yatayda ortalar */
    width: 100%; /* Tam genişlik */
    padding: 0; /* Padding'i sıfırlar */
    margin: 0 auto; /* Otomatik margin ile ortalar */
}

.header-wrapper {
    padding-left: 0; /* Sol padding'i kaldırır */
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center; /* İçeriği ortalar */
    color: var(--light-color);
    width: 100%; /* Tam genişlik */
}

.logo img {
    height: 120px; /* Büyük ekranlar için yükseklik */
    max-width: 100%; /* Responsive için maksimum genişlik */
    object-fit: contain; /* Görüntü oranını korur */
    margin: 0 auto; /* Otomatik margin ile ortalar */
}

/* Logo için responsive ayarlar */
@media (max-width: 1200px) {
    .logo img {
        height: 100px; /* Orta boyutlu ekranlar için küçültülmüş yükseklik */
    }
}

@media (max-width: 992px) {
    .logo {
        justify-content: flex-start; /* Mobil görünümde sola hizala */
        padding-left: 20px; /* Mobil görünümde sol boşluk ekle */
    }
    
    .logo img {
        height: 80px; /* Tablet için küçültülmüş yükseklik */
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 60px; /* Mobil için daha küçük yükseklik */
    }
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Ana Menü Stili */
.main-menu-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    margin: 0 15px;
}

.menu-link {
    color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
    padding: 30px 0;
    display: block;
    position: relative;
    transition: var(--transition);
}

.menu-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: var(--transition);
}

.menu-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.menu-link:hover i {
    transform: rotate(180deg);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.menu-link:hover::after {
    width: 100%;
}

/* Header Butonları */
.header-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto; /* Butonları en sağa çeker */
    margin-right: 20px;
    padding-right: 0;
}

.contact-button {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 20px 10px 20px; /* Eşit padding değerleri */
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 0;
    min-width: 150px;
    height: 45px;
    line-height: 1;
}

.contact-button:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    margin-right: 0;
    padding-right: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    color: var(--light-color);
    font-size: 24px;
}

.menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--light-color);
    display: inline-block;
    transition: var(--transition);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--light-color);
    transition: var(--transition);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Modern Yandan Açılan Menü */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.side-menu.active {
    right: 0;
}

.side-menu-inner {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.side-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.side-menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.side-menu-logo {
    margin-bottom: 15px;
}

.side-menu-logo img {
    height: 75px; /* Yarı boyutuna düşürüldü (150px / 2) */
}

.side-menu-header h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.side-menu-header p {
    color: #666;
    font-size: 14px;
}

.side-menu-nav {
    flex: 1;
}

.side-menu-list {
    list-style: none;
}

.side-menu-item {
    margin-bottom: 15px;
}

.side-menu-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.side-menu-link:hover {
    background-color: rgba(0, 83, 166, 0.1);
    color: var(--primary-color);
}

.side-menu-icon {
    width: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.side-menu-text {
    flex: 1;
}

.side-menu-arrow {
    font-size: 12px;
    transition: var(--transition);
}

.side-menu-link:hover .side-menu-arrow i {
    transform: rotate(180deg);
}

.side-menu-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.side-menu-contact {
    margin-bottom: 30px;
}

.side-menu-contact h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.side-menu-contact-list {
    list-style: none;
}

.side-menu-contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.side-menu-contact-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.side-menu-social {
    display: flex;
    justify-content: center;
}

.side-menu-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin: 0 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.side-menu-social .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
    backdrop-filter: blur(3px);
    transition: var(--transition);
}

.overlay.active {
    display: block;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .menu-link {
        font-size: 14px;
        padding: 30px 0;
    }
    
    .menu-item {
        margin: 0 10px;
    }
}

@media (max-width: 992px) {
    .header-container {
        height: 70px;
    }
    
    .header-parts-container {
        flex-wrap: wrap;
    }
    
    .header-part {
        border-radius: 0 !important;
        padding: 0 20px !important;
    }
    
    .left-part, .right-part, .middle-part {
        width: 100%;
        margin: 0;
        z-index: 1;
    }
    
    .middle-part, .right-part {
        display: none;
    }
    
    .main-menu-container {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .logo {
        width: auto;
    }
    
    .logo img {
        height: 50px;
    }
    
    .main-content {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .side-menu {
        width: 320px;
    }
    
    .side-menu-inner {
        padding: 50px 30px;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        padding: 0 20px;
        height: 60px;
    }
    
    .contact-button {
        display: none;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .side-menu {
        width: 280px;
    }
    
    .side-menu-inner {
        padding: 40px 20px;
    }
    
    .main-content {
        padding-top: 60px;
    }
}

/* Ana Sayfa Stilleri */
.section-title {
    margin-bottom: 30px;
}

.section-title span {
    display: block;
    font-size: 14px;
    color: #002290;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
}

.center {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: transparent;
    color: var(--light-color);
    padding: 12px 30px;
    border: 2px solid var(--light-color);
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #002290; /* Header blue color */
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-primary:hover {
    color: #ffe000; /* Yellow text on hover */
    border-color: #002290; /* Header blue color */
}

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

.slider-content .btn-primary {
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #002290; /* Header blue color */
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-secondary:hover {
    color: #ffe000; /* Yellow text on hover */
    border-color: #002290; /* Header blue color */
}

.btn-secondary:hover::before {
    width: 100%;
}

.arrow {
    display: inline-block;
    margin-left: 10px;
}

.circle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Markalar Şeridi */
.brands-strip {
    background-color: #f8f8f8;
    padding: 25px 0;
    overflow: hidden;
    position: relative;
}

.brands-container {
    width: 100%;
    position: relative;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    animation: scroll-brands 40s linear infinite;
    width: fit-content;
}

.brand-item {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive for brands strip */
@media (max-width: 768px) {
    .brands-strip {
        padding: 20px 0;
    }
    
    .brand-item {
        padding: 0 15px;
    }
    
    .brand-item img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brands-strip {
        padding: 15px 0;
    }
    
    .brand-item {
        padding: 0 10px;
    }
    
    .brand-item img {
        height: 35px;
    }
}

/* Slider Bölümü */
.slider-section {
    position: relative;
    height: 82vh;
    color: var(--light-color);
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    z-index: 1;
}

/* High-quality image preloading and optimization */
.slider-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
    image-rendering: high-quality;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Preload critical slider images */
.slider-section::before {
    content: '';
    position: absolute;
    top: -9999px;
    left: -9999px;
    background-image: 
        url('assets/images/slider/slider-2.jpg'),
        url('assets/images/koleksiyon/kece-panel.jpg'),
        url('assets/images/koleksiyon/ahsap-panel-1.jpg'),
        url('assets/images/slider/slider-4.jpg');
    background-size: 1px 1px;
    background-repeat: no-repeat;
}

/* Additional image quality improvements */
.slider-item {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Force high-quality rendering on all browsers */
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    .slider-item {
        background-attachment: scroll;
        filter: contrast(1.1) brightness(1.08) saturate(1.2);
    }
}

/* Optimize for mobile devices */
@media (max-width: 768px) {
    .slider-item {
        background-attachment: scroll;
        filter: contrast(1.05) brightness(1.03) saturate(1.1);
    }
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
    image-rendering: high-quality;
    opacity: 1;
    transition: opacity 1s ease;
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: contrast(1.08) brightness(1.05) saturate(1.15) sharpen(0.5);
    -webkit-filter: contrast(1.08) brightness(1.05) saturate(1.15);
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-content {
    max-width: 800px;
    padding: 0 20px;
}

.slider-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slider-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slider-content p {
    font-size: 16px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.social-sidebar {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10; /* Ensure it appears above slider items */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-color);
    border-radius: 50%;
    margin: 10px 0;
    color: var(--light-color);
    transition: all 0.3s ease;
}

/* Social media hover effects with brand colors */
.social-sidebar .social-icon:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-sidebar .social-icon:nth-child(1):hover {
    color: #FF0000; /* YouTube red */
    border-color: #FF0000;
}

.social-sidebar .social-icon:nth-child(2):hover {
    color: #fff; /* White icon on gradient background */
    border: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-sidebar .social-icon:nth-child(3):hover {
    color: #1DA1F2; /* Twitter blue */
    border-color: #1DA1F2;
}

.social-sidebar .social-icon:nth-child(4):hover {
    color: #0077B5; /* LinkedIn blue */
    border-color: #0077B5;
}

.sidebar-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 2px;
}

.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 14px;
    letter-spacing: 8px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffe000;
}

/* Gürültü Kirliliktir Bölümü */
.noise-pollution-section {
    padding: 20px 0 10px 0;
    background-color: #ffffff;
}

.noise-pollution-container {
    text-align: center;
    margin-bottom: 0;
    padding: 0;
}

.noise-pollution-image {
    max-width: 100%;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    opacity: 1;
}

/* Responsive adjustments for noise pollution image */
@media (max-width: 768px) {
    .noise-pollution-section {
        padding: 15px 0 8px 0;
    }
    
    .noise-pollution-image {
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    .noise-pollution-section {
        padding: 10px 0 5px 0;
    }
    
    .noise-pollution-image {
        max-height: 60px;
    }
}

/* Biz Kimiz Bölümü */
.about-section {
    padding: 60px 0 5px 0;
    background-color: transparent !important;
}

.about-section .container {
    padding: 0 30px;
    max-width: 1400px;
    width: 100%;
    background-color: transparent !important;
}

.about-content {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 20px; /* Reduced gap for tighter layout */
    justify-content: space-between; /* Distribute space between items */
    align-items: flex-start; /* Align items to the top */
    background-color: transparent !important;
}

/* All three sections side by side */
.counter-box {
    background-color: #002290;
    color: var(--light-color);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 425px; /* Increased height from 380px to 450px */
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevent shrinking */
}

.counter-image {
    margin-bottom: 25px;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-image img {
    max-width: 100%;
    max-height: 100%;
}

.counter-text {
    text-align: center;
}

.counter-text h2 {
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
}

.counter-text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.about-image-container {
    width: 375px; /* Match the image width */
    max-width: 100%; /* Ensure it doesn't overflow on small screens */
    background-color: transparent !important; /* Remove any background color */
    padding: 0 !important; /* Remove any padding */
    margin: 0 !important; /* Remove any margin */
}

/* About Slider Styles */
.about-slider {
    position: relative;
    margin-bottom: 0; /* Removed bottom margin */
    overflow: hidden;
    width: 100%; /* Use percentage for responsiveness */
    max-width: 375px; /* Match the image width */
    background-color: transparent !important; /* Remove any background color */
}

.about-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: transparent !important;
    padding: 0 !important; /* Remove any padding */
    margin: 0 !important; /* Remove any margin */
}

.about-slide.active {
    display: block;
    opacity: 1;
    background-color: transparent !important;
    padding: 0 !important; /* Remove any padding */
    margin: 0 !important; /* Remove any margin */
}

.about-image {
    margin-bottom: 0; /* Removed bottom margin to eliminate gray space */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: transparent; /* Remove any background color */
}

.about-image img {
    width: 375px; /* Fixed width */
    height: 320px; /* Fixed height */
    object-fit: cover; /* Maintain aspect ratio and cover the container */
    transition: transform 0.3s ease;
    display: block; /* Remove any inline spacing */
}

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

.about-slider-nav {
    margin-bottom: 0; /* Removed bottom margin */
    display: flex;
    justify-content: center;
    background-color: transparent !important;
}

.about-slider-nav .slider-dot {
    width: 24px;
    height: 24px;
    background-color: transparent;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slider-nav .slider-dot i {
    font-size: 16px;
    color: #ccc;
    transition: all 0.3s ease;
}

.about-slider-nav .slider-dot.active i {
    color: #ffe000; /* Yellow star for active dot */
}

.about-slider-nav .slider-dot:hover i {
    color: #ffe000; /* Yellow star on hover */
}

.about-image-container h3 {
    font-size: 16px;
    margin: 15px 0 0 0 !important; /* Add top margin for spacing */
    padding: 0 !important; /* Force remove all padding */
    color: #333;
    text-align: center; /* Center the text under the images */
    background-color: transparent !important; /* Remove any background color */
    line-height: 1.2; /* Reduce line height */
}

.about-right {
    width: calc(100% - 640px); /* Remaining width after counter-box and image container */
    min-width: 300px; /* Ensure minimum width on small screens */
    padding-left: 0px;
    border-left: none;
}

.service-icons {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 15px; /* Add gap between service items */
}

.service-item {
    width: calc(25% - 15px); /* 4 items per row - Account for gap */
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #002290; /* Changed from #f5f5f5 to #002290 (blue) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 34, 144, 0.2); /* Added default shadow */
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    stroke: #fff; /* Changed from #666 to #fff (white) */
    transition: all 0.3s ease;
}

.service-item:hover .icon-circle {
    background-color: #002290;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 34, 144, 0.3); /* Enhanced shadow on hover */
}

.service-item:hover .icon-circle svg {
    stroke: #fff;
}

.service-item span {
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

/* Responsive styles for about section */
@media (max-width: 1400px) {
    .about-section .container {
        padding: 0 20px;
    }
    
    .about-right {
        width: calc(100% - 620px); /* Adjust for slightly smaller screens */
    }
    
    .service-item {
        width: calc(50% - 15px); /* 2 items per row on medium screens */
    }
}

@media (max-width: 1200px) {
    .about-content {
        justify-content: center;
        gap: 30px;
    }
    
    .counter-box {
        width: 260px;
        min-height: 360px;
    }
    
    .about-image-container {
        width: 300px;
    }
    
    .about-slider {
        max-width: 300px;
    }
    
    .about-right {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .counter-box, .about-image-container, .about-right {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .about-slider {
        max-width: 100%;
    }
    
    .service-item {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .counter-box {
        padding: 20px;
        min-height: 350px;
    }
    
    .counter-image {
        height: 150px;
    }
    
    .counter-text h2 {
        font-size: 36px;
    }
    
    .service-item {
        width: 100%; /* 1 item per row on small screens */
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .counter-box, .about-image-container, .about-right {
        max-width: 100%;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle svg {
        width: 20px;
        height: 20px;
    }
}

/* Akustik ve Ses Yalıtımında Lider Bölümü */
.leader-section {
    padding: 80px 0 20px 0;
    background-color: #f8f9fa;
}

.leader-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.leader-left {
    flex: 1;
    padding-right: 20px;
}

.leader-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002290;
    margin-bottom: 30px;
    line-height: 1.2;
}

.leader-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.leader-left p:last-child {
    margin-bottom: 0;
}

.leader-right {
    flex: 0 0 45%;
    max-width: 45%;
}

.leader-right img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.leader-right img:hover {
    transform: scale(1.02);
}

/* Responsive styles for leader section */
@media (max-width: 1200px) {
    .leader-content {
        gap: 40px;
    }
    
    .leader-right h2 {
        font-size: 32px;
    }
    
    .leader-right p {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .leader-section {
        padding: 60px 0;
    }
    
    .leader-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .leader-left {
        flex: none;
        max-width: 100%;
    }
    
    .leader-right {
        padding-left: 0;
        text-align: center;
    }
    
    .leader-right h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .leader-right p {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .leader-section {
        padding: 50px 0;
    }
    
    .leader-content {
        gap: 30px;
    }
    
    .leader-right h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .leader-right p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .leader-section {
        padding: 40px 0;
    }
    
    .leader-left img {
        border-radius: 10px;
    }
    
    .leader-right h2 {
        font-size: 22px;
    }
    
    .leader-right p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Akustik Düzenleme Bölümü */
.acoustic-solutions-section {
    padding: 60px 0 0 0; /* Alt padding tamamen kaldırıldı - ürün koleksiyonu ile arasındaki boşluk sıfırlandı */
    background-color: #ffffff; /* Gri arkaplan beyaz yapıldı */
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Boşluk tamamen kaldırıldı */
}

/* Process Flow Styles */
.process-flow {
    display: flex;
    align-items: center;
    gap: 15px;
}

.process-step-text {
    font-size: 18px;
    font-weight: 700;
    color: #002290;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 34, 144, 0.05) 100%);
    border: 2px solid transparent;
}

.process-step-text:hover {
    background: linear-gradient(135deg, #002290 0%, #0053a6 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 34, 144, 0.3);
    border-color: #002290;
}

.process-step-text:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 34, 144, 0.4);
}

.wave-divider {
    width: 80px;
    height: 25px;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
}

.wave-divider svg path {
    transition: all 0.3s ease;
}

.process-step-text:hover + .wave-divider svg path {
    stroke: #0053a6;
    stroke-width: 3;
}

/* Responsive adjustments for process flow */
@media (max-width: 768px) {
    .process-flow {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .process-step-text {
        font-size: 14px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
    
    .wave-divider {
        width: 60px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .process-flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .wave-divider {
        transform: rotate(90deg);
        width: 40px;
        height: 15px;
    }
    
    .process-step-text {
        font-size: 16px;
        padding: 8px 20px;
        text-align: center;
        min-width: 150px;
    }
}

/* Solutions Container Styles */
.solutions-container {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping to keep cards side by side */
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    justify-content: space-between; /* Distribute space evenly */
}

.solutions-container .col-lg-3 {
    flex: 0 0 25%; /* Fixed width for all cards */
    width: 25%; /* Explicit width */
    min-width: 0; /* Allow cards to shrink if needed */
    max-width: 25%; /* Ensure maximum width consistency */
    margin-bottom: 30px;
}

.service-card {
    overflow: hidden;
    position: relative;
    border-radius: clamp(8px, 0.625vw, 24px);
    width: 100%;
    height: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: none; /* Scroll animasyonları kaldırıldı */
}

.service-card img {
    border-radius: clamp(8px, 0.625vw, 24px);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    position: relative;
}

/* Dark overlay for service card images */
.service-card.v2 {
    position: relative;
}

.service-card.v2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* No overlay */
    border-radius: clamp(8px, 0.625vw, 24px);
    z-index: 1;
    pointer-events: none; /* Allows clicks to pass through to the underlying elements */
    transition: opacity 0.3s ease; /* Smooth transition for the overlay */
}

.service-card.v2:hover::after {
    opacity: 0; /* Hide the overlay on hover */
}

.service-card.v2 .card-content {
    z-index: 2; /* Ensure content appears above the overlay */
}

/* Version 2 specific styling */
.service-card.v2::before {
    right: 0%;
    top: -100%;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.service-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: clamp(18px, 1.25vw, 48px);
    z-index: 1;
}

.service-card .card-content .h4 {
    border-left: 2px solid #ffffff; /* Changed from light gray (#eaeaec) to white */
    padding-left: 8px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: block;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.service-card .card-content.l-12 {
    left: 12px;
}

.service-card .hover-layer {
    opacity: 0;
    height: 0;
    min-height: 0;
    transition: all 0.5s ease-in-out;
}

.service-card p,
.service-card .h4 {
    transition: all 0.5s ease-in-out;
}

.service-card .card-content p {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Hover effects */
.service-card:hover.v2::before {
    top: 0%;
}

.service-card:hover::before {
    bottom: 0;
}

.service-card:hover img {
    opacity: 1; /* Keep the image visible on hover */
}

.service-card:hover .card-content .h4 {
    color: #ffffff !important; /* White color on hover */
    border-left-color: #ffffff; /* White border color */
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.9);
}

.service-card:hover .card-content p {
    color: #ffffff !important; /* White color on hover */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.service-card:hover .card-content .hover-layer {
    padding-top: clamp(12px, 0.833vw, 32px);
    opacity: 1;
    min-height: 9.896vw;
}

/* Custom button styling */
.cus-btn-wrap {
    border-radius: 3px;
    border-right: 1px solid #002290;
    border-left: 1px solid #002290;
    padding: 0 3px;
    background-color: transparent;
    transition: box-shadow 0.5s ease;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.cus-btn-wrap span {
    display: inline-flex !important;
}

.cus-btn-wrap .cus-btn {
    border-radius: 2px;
    padding: clamp(8px, 0.4vw, 15px) clamp(10px, 0.8vw, 25px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 0.3vw, 12px);
    background: #002290;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cus-btn-wrap .cus-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}

.cus-btn-wrap .cus-btn svg {
    width: clamp(12px, 0.8vw, 30px);
    height: clamp(12px, 0.8vw, 30px);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.cus-btn-wrap .cus-btn svg path {
    transition: all 0.5s ease-in-out;
    fill: #ffffff;
}

.cus-btn-wrap .cus-btn .text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    color: #ffffff;
    font-size: clamp(11px, 0.6vw, 24px);
    transition: all 0.5s ease-in-out;
    position: relative;
    text-transform: capitalize;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cus-btn-wrap:hover {
    box-shadow: 0 6px 14px rgba(0, 34, 144, 0.45);
}

.cus-btn-wrap:hover .cus-btn::before {
    left: 0;
}

.cus-btn-wrap:hover .cus-btn .text {
    color: #002290;
}

.cus-btn-wrap:hover .cus-btn svg {
    transform: scale(1.02) rotate(45deg);
}

.cus-btn-wrap:hover .cus-btn svg path {
    fill: #002290;
}

/* Helper classes */
.white {
    color: #fafafa !important;
}

.mb-16 {
    margin-bottom: clamp(14px, 0.833vw, 32px);
}

.mb-32 {
    margin-bottom: clamp(24px, 1.667vw, 64px);
}

.hover-content {
    transition: all 0.5s ease-in-out;
}

.hover-content:hover {
    color: #002290 !important; /* Changed from orange (#f97316) to blue */
}

/* Responsive styles */
@media (max-width: 1399px) {
    .service-card:hover .card-content .hover-layer {
        min-height: 13vw;
    }
}

@media (max-width: 1200px) {
    /* Keep cards side by side even on smaller screens */
    .solutions-container {
        flex-wrap: nowrap;
    }
    
    .solutions-container .col-lg-3 {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .service-card:hover .card-content .hover-layer {
        min-height: 12.896vw;
    }
    
    /* Adjust card height for smaller screens */
    .service-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-card img {
        height: 320px;
    }
    
    .service-card:hover .card-content .hover-layer {
        min-height: 17.896vw;
    }
    
    /* Further adjust card height for mobile */
    .service-card {
        height: 350px;
    }
}

@media (max-width: 490px) {
    .service-card:hover .card-content .hover-layer {
        min-height: 28vw;
    }
}

@media (max-width: 375px) {
    .service-card:hover .card-content .hover-layer {
        min-height: 32vw;
    }
}

/* Akustik Projelendirme Bölümü */
.project-process-section {
    padding: 0px 0 60px 0;
    background-color: #ffffff;
}

.project-process-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.project-process-section .section-title span {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.project-process-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(7) {
    margin-top: 15px;
}

.step-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

/* Keşif & Danışmanlık ikonunu aşağı al */
.process-step:first-child .step-icon {
    margin-top: 15px;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
}

.step-icon img, .step-icon svg {
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon img, 
.process-step:hover .step-icon svg {
    transform: scale(1.1);
}

.step-icon svg {
    stroke: #666;
    stroke-width: 2;
}

.process-step:hover .step-icon svg {
    stroke: #002290;
}

.step-number {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.process-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.step-arrow {
    font-size: 36px;
    color: #002290;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 -35px;
    margin-bottom: 120px;
    margin-top: -40px;
    font-weight: 200;
    opacity: 0.6;
    transition: all 0.3s ease;
    letter-spacing: 5px;
}

.step-arrow:hover {
    opacity: 1;
    transform: scale(1.15);
    letter-spacing: 8px;
}

/* Contact info section styling */
.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    gap: 20px;
}

.contact-cta {
    flex: 1;
    text-align: right; /* Keeping text-align right */
    padding-right: 0;
    padding-left: 0;
    margin-right: 240px; /* Reduced from 80px to 40px to move a bit to the left */
}

.contact-cta .cus-btn-wrap {
    position: static;
    margin-right: 0px;
    margin-left: 200px; /* Reduced from 160px to 100px to move a bit to the left */
    transform: scale(1.2);
}

.contact-cta .btn-primary {
    display: none;
}

.contact-text {
    flex: 1;
    text-align: left;
    padding-left: 0;
}

.contact-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
    display: block;
    padding-left: 0;
    margin-left: -150px; /* Changed from 0px to -40px to move it further to the left */
}

.contact-details {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0;
    margin-left: -200px; /* Changed from 0px to -40px to align with the heading */
}

.contact-details .phone {
    font-size: 18px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details .phone:hover {
    color: #002290;
    transform: translateY(-2px);
}

.contact-details p {
    font-size: 16px;
    color: #999;
}

.contact-details .email {
    font-size: 16px;
    font-weight: 700;
    color: #002290;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details .email:hover {
    color: #002290;
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 45%;
        margin-bottom: 40px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .contact-info {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .contact-cta {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
        padding-left: 0;
    }
    
    .contact-details {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .project-process-section .section-title h2 {
        font-size: 32px;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-details .phone,
    .contact-details .email {
        font-size: 16px;
    }
}

/* Ürün Koleksiyonu Bölümü */
.products-section {
    padding: 0; /* Padding tamamen kaldırıldı - bölümler arası boşluk sıfırlandı */
    background-color: #ffffff; /* Gri arkaplan beyaz yapıldı */
}

.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Ürün koleksiyonu başlık-kartlar arası boşluk tamamen kaldırıldı */
}

.products-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    justify-content: space-between;
}

.products-container .col-lg-3 {
    flex: 0 0 25%; /* Fixed width for all cards */
    width: 25%; /* Explicit width */
    min-width: 0; /* Allow cards to shrink if needed */
    max-width: 25%; /* Ensure maximum width consistency */
    margin-bottom: 30px;
}

.products-section .slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.products-section .slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-section .slider-dot.active {
    background-color: #002290;
    transform: scale(1.2);
}

/* Referanslar Bölümü */
.references-section {
    padding: 60px 0;
    background-color: #ffffff; /* Gri arkaplan beyaz yapıldı */
}

.references-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.references-left {
    flex: 1;
    padding-right: 50px;
}

.references-logos {
    flex: 2;
}

.logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}

.logo-item {
    flex: 1;
    background-color: var(--light-color);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-item img {
    max-width: 240px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 100px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    padding-right: 50px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column.footer-left {
    flex: 0 0 20%;
    padding-left: 0;
    padding-right: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.contact-info li {
    display: flex;
    align-items: center;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom-links a {
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content, .references-content {
        flex-direction: column;
    }
    
    .about-left, .about-right, .references-left {
        padding: 0;
        margin-bottom: 50px;
    }
    
    .logo-item {
        flex: 0 0 calc(50% - 10px);
        padding: 15px;
    }
    
    .logo-item img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-step {
        flex: 0 0 45%;
        margin-bottom: 30px;
    }
    
    .step-arrow {
        display: none;
    }
    
    .solution-item, .product-item {
        flex: 0 0 50%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 50px;
        padding: 0;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 36px;
    }
    
    .social-sidebar, .scroll-indicator {
        display: none;
    }
    
    .service-item {
        width: 50%;
    }
    
    .solution-item, .product-item {
        flex: 0 0 100%;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .contact-info {
        flex-direction: column;
    }
    
    .contact-cta {
        margin-bottom: 30px;
    }
    
    .logo-row {
        flex-wrap: wrap;
    }
    
    .logo-item {
        flex: 0 0 48%;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        margin-top: 20px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
}
