/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
}

/* İkon Container */
.icon-container {
    width: 80px;
    height: 80px;
    background: var(--baymak-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Marka Logoları */
.brand-logo-container {
    padding: 20px;
    transition: all 0.3s ease;
}

.brand-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.1rem;
    color: var(--baymak-blue);
}

.brand-group {
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Garanti Afişleri */
.poster-container {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.poster-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.poster-image {
    max-height: 300px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.poster-caption h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

/* WhatsApp ve Arama Butonları */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 110px;
    right: 30px;
    background: linear-gradient(135deg, var(--baymak-orange) 0%, #e55a00 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.phone-float:hover {
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .poster-image {
        max-height: 250px;
    }
    
    .poster-container {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
        max-height: 400px;
    }
    
    .brand-logo {
        max-height: 50px;
    }
    
    .brand-name {
        font-size: 0.9rem;
    }
    
    .poster-image {
        max-height: 200px;
    }
    
    .poster-container {
        padding: 10px;
        margin-bottom: 20px;
    }
    
    .whatsapp-float,
    .phone-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .phone-float {
        bottom: 95px;
        right: 20px;
    }
    
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        height: 45vh;
        min-height: 300px;
        max-height: 350px;
    }
}