/* Header Styles */
.header-top-bar {
    height: 2rem;
    min-height: 2rem;
}

.header-top-bar .flex {
    height: 2rem;
}

/* Main navbar height adjustment */
.main-navbar {
    height: 3.5rem;
    top: 2rem; /* Position directly below header with no gap */
}

.main-navbar .max-w-7xl {
    height: 100%;
}

/* Body padding adjustment for header height */
body {
    padding-top: 5.5rem; /* 2rem header + 3.5rem navbar */
}

/* Mobile Header Styles */
@media (max-width: 640px) {
    /* Adjust header top bar */
    .header-top-bar {
        height: 1.5rem !important;
        min-height: 1.5rem !important;
    }
    
    .header-top-bar .flex {
        height: 1.5rem !important;
    }
    
    /* Make text smaller */
    .header-top-bar .text-sm {
        font-size: 0.7rem !important;
    }
    
    /* Adjust icons */
    .header-top-bar svg {
        width: 0.875rem !important;
        height: 0.875rem !important;
    }
    
    /* Adjust spacing */
    .header-top-bar .space-x-4 {
        column-gap: 0.5rem !important;
    }
    
    /* Adjust navbar */
    .main-navbar {
        height: 2.75rem !important;
        top: 1.5rem !important;
    }
    
    /* Adjust body padding */
    body {
        padding-top: 4.25rem !important;
    }
    
    /* Adjust logo size */
    .main-navbar .logo_img,
    .main-navbar .icon_container {
        height: 2rem !important;
        width: auto !important;
    }
    
    /* Adjust company name */
    .main-navbar .text-xl {
        font-size: 1rem !important;
    }
}

/* WhatsApp Banner Styles */
@media (max-width: 640px) {
    #whatsappTopBanner {
        font-size: 0.75rem;
    }
    
    #whatsappTopBanner img {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Slide Styles */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: white !important;
}

@media (max-width: 640px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
    }
}

/* Testimonial Section Styles */
#testimoni .bg-white {
    transition: all 0.3s ease;
}

#testimoni .bg-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
    #testimoni .grid {
        gap: 1rem !important;
    }
    
    #testimoni .p-6 {
        padding: 1rem !important;
    }
    
    #testimoni .text-2xl {
        font-size: 1.5rem !important;
    }
    
    #testimoni .text-base {
        font-size: 0.875rem !important;
    }
}