/**
 * Ankara Tekel - Responsive Styles
 */

/* Tablet (768px ve altı) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-call-chip {
        display: none;
    }

    .logo-sub {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .sticky-buttons {
        left: 10px;
        right: 10px;
        bottom: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        background: rgba(20, 20, 20, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    }

    .btn-call,
    .btn-whatsapp-sticky {
        width: 100%;
        height: 52px;
        border-radius: 10px;
        font-size: 18px;
        justify-content: center;
        gap: 8px;
        transform: none;
    }

    .btn-call span,
    .btn-whatsapp-sticky span {
        display: inline;
        font-size: 14px;
        font-weight: 700;
    }
}

/* Mobile (480px ve altı) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .logo h1 {
        font-size: 18px;
    }

    .mobile-menu {
        top: 60px;
    }
    
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 20px;
        margin: 20px 0;
    }
    
    .feature-card i {
        font-size: 32px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .sticky-buttons {
        left: 6px;
        right: 6px;
        bottom: 6px;
        padding: 8px;
        gap: 8px;
    }
    
    .btn-call,
    .btn-whatsapp-sticky {
        height: 48px;
        font-size: 16px;
    }

    .btn-call span,
    .btn-whatsapp-sticky span {
        font-size: 13px;
    }
}

/* Large Desktop (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .hero p {
        font-size: 22px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .sticky-buttons,
    .mobile-menu,
    .footer {
        display: none;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}



