/* =====================================================
   PRODISKON.ORG - Responsive Styles
   ===================================================== */

/* Tablet & Small Desktop (Max 992px) */
@media (max-width: 992px) {
    .hero {
        padding: 50px 30px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
	.vm-grid {
    grid-template-columns: 1fr;
}

.values-grid {
    grid-template-columns: repeat(2, 1fr);
}

.contact-layout {
    grid-template-columns: 1fr;
}
}


/* Mobile Landscape (Max 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 40px 25px;
        text-align: center;
    }
    
    .hero::before {
        font-size: 150px;
        right: -20px;
        top: -20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
	.static-page {
    padding: var(--spacing-xl) var(--spacing-md);
}

.page-header h1 {
    font-size: 1.6rem;
}

.contact-form .form-row {
    grid-template-columns: 1fr;
}

.search-form .search-input-group {
    flex-direction: column;
}

.search-form .search-input-group .btn {
    width: 100%;
}

.search-filters {
    flex-direction: column;
}

.filter-select {
    width: 100%;
}

.error-code {
    font-size: 5rem;
}

.error-page h1 {
    font-size: 1.5rem;
}

.error-actions {
    flex-direction: column;
}

.error-actions .btn {
    width: 100%;
}
}

/* Mobile Portrait (Max 576px) */
@media (max-width: 576px) {
    .hero {
        padding: 30px 20px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
.values-grid {
   grid-template-columns: 1fr;
}
}