/* ============================================
   RESPONSIVE CSS - Tüm Cihazlar İçin
   ============================================ */

/* Tablet ve küçük desktop */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .product-card .product-image {
        height: 200px;
    }
}

/* Mobil cihazlar */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero-slider {
        height: 400px;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .product-card .product-image {
        height: 180px;
    }
    
    .product-info h3 {
        font-size: 1rem;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .back-to-top, .whatsapp-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
        min-height: 350px;
    }
    
    .slide-content h1 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .product-card .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Yatay mod (landscape) */
@media (max-width: 992px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
}

/* Print için */
@media print {
    .navbar, .footer, .hero-slider, .back-to-top, .whatsapp-button, .breadcrumb {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}