/* CSS HANYA UNTUK DESKTOP DAN TABLET */
/* INSTAGRAM/MOBILE MENGGUNAKAN INLINE STYLE */

@media (min-width: 768px) {
    .container {
        max-width: 90%;
        margin: 20px auto;
        border-radius: 48px;
    }
    
    .hero-section {
        min-height: 550px;
        padding: 30px 20px 20px;
    }
    
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
        display: flex;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .eyeglass-card {
        display: flex !important;
        margin-top: 0;
        margin-left: 40px;
        width: 280px;
        height: 280px;
    }
    
    .eyeglass-card img {
        width: 90%;
        filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.3));
    }
    
    .form-container {
        padding: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-actions {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .btn-submit {
        width: auto;
        min-width: 280px;
    }
    
    .btn-security {
        margin-top: 0;
        width: auto;
        padding: 12px 24px;
    }
    
    .glass-info-card {
        flex-direction: row;
        text-align: left;
        padding: 36px 40px;
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 24px;
    }
    
    .footer-links {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        min-height: 500px;
    }
    
    .eyeglass-card {
        width: 400px;
        height: 400px;
    }
}

/* SEMUA STYLE UNTUK MOBILE/INSTAGRAM DIHAPUS */
/* MOBILE/INSTAGRAM SEPENUHNYA MENGGUNAKAN INLINE STYLE */