@media (min-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: row;
        gap: 40px;
        padding: 0 20px;
    }
    
    .about-text {
        padding: 0;
    }
    
    .about-text h3 {
        text-align: left;
        font-size: 1.7rem;
    }
    
    .about-text p {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .awards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        max-width: 350px;
    }
    
    .service-img {
        height: 180px;
    }
    
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .process-steps:before {
        width: 100%;
        height: 2px;
        top: 25px;
        left: 0;
    }
    
    .step {
        width: 48%;
        margin-bottom: 30px;
    }
    
    .contact-container {
        flex-direction: row;
        gap: 40px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .awards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .process-steps {
        flex-wrap: nowrap;
    }
    
    .step {
        width: 23%;
        margin-bottom: 0;
    }
    
    .contact-map {
        height: 400px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Small devices (landscape phones, 576px and below) */
@media (max-width: 576px) {
    .header-container {
        padding: 8px 0;
    }
    
    .logo img {
        height: 50px;
    }
.mobile-menu-btn {
    display: block;
    position: absolute;
    right: 20px; /* geser ke kanan 20px dari tepi */
    top: 25px;   /* posisikan dari atas kalau perlu */
    z-index: 1000; /* pastiin di atas elemen lain */
}
    .hero-slider {
        height: 70vh;
        min-height: 400px;
        margin-top: 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        flex: 1 1 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}