/* Ana Sayfa CSS */
/* ============== */

/* Ana sayfa özel stilleri - Using main CSS for slider */

/* Ana sayfa için özel stiller - Slider, Services, Products ana CSS'de */

/* Product Icon Styles */
.product-icon v2 {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09a2e3 0%, #01d7bb 100%);
    border-radius: 8px;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Branch Section */
.branch-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.branch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.branch-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.title-main {
    color: #2c3e50;
}

.title-accent {
    color: #09a2e3;
}

.branch-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.btn-branch {
    background: #09a2e3;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-branch:hover {
    background: #067bbd;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(9, 162, 227, 0.3);
    color: white;
}

.branch-image {
    text-align: center;
}

.image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Partners Section */
.partners-companies-section {
    padding: 4rem 0;
    background: white;
}

.partners-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.partners-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.partner-card {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

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

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .branch-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .branch-title {
        font-size: 2.5rem;
    }
    
    .partners-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .branch-title,
    .partners-title {
        font-size: 2rem;
    }
    
    .partner-card {
        width: 150px;
        height: 100px;
    }
}

/* Ürün Bulunamadı Mesajı */
.product-not-found {
    padding: 3rem 1rem;
    text-align: center;
}

.product-not-found-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 3rem;
}

.product-not-found-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.product-not-found-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
