/* ==========================================================================
   Dodatna responzivnost za veoma male uredjaje
   ========================================================================== */
   @media (max-width: 480px) {


    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .device-mockup.tablet {
        width: 240px;
        height: 170px;
    }
    
    .device-mockup.phone {
        width: 110px;
        height: 220px;
        right: 10px;
    }
    
    .app-header, .app-order, .app-buttons {
        transform: scale(0.9);
        transform-origin: top left;
    }
    
    .notification {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    .floating-element {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .element-1 {
        left: 20px;
    }
    
    .element-3 {
        left: 50px;
        bottom: 40px;
    }
}

/* ==========================================================================
   Responsivnost za tablete u portret modu
   ========================================================================== */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-content {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .device-mockup.tablet {
        width: 320px;
        height: 225px;
    }

  
    
    .device-mockup.phone {
        width: 150px;
        height: 300px;
    }
}

/* ==========================================================================
   Responsivnost za landscape telefon
   ========================================================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image-container {
        height: 440px;
    }
    
    .device-mockup.tablet {
        width: 280px;
        height: 300px;
    }
    
    .device-mockup.phone {
        width: 180px;
        height: 320px;
    }
}

/* ==========================================================================
   Visoke rezolucije (Retina display)
   ========================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .device-mockup {
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* ==========================================================================
   Print stilovi
   ========================================================================== */
@media print {
    .header,
    .hero-actions,
    .trust-section,
    .cta-section,
    .footer,
    .menu-toggle,
    .floating-element {
        display: none !important;
    }
    
    .hero {
        padding: 50px 0 !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
    }
    
    .hero-visual {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }


    
    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}