body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #ffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    width: 150px;
    display: block;
}

/* Pastikan nav-links tetap sejajar dan tidak wrap */
.nav-links {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item di nav tetap rapi */
.nav-links li {
    position: relative;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-links li a {
    font-size: 18px;
    text-decoration: none;
    color: black;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links li a::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 60%;
    border-bottom: 2px solid transparent;
    margin-top: 2px;
    transition: border-color 0.2s ease;
}

/* Hover and active effect */
.nav-links li a:hover,
.nav-links li a.active {
    color: #b94a1f;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    border-color: #b94a1f;
}

/* Language switch harus ikut sejajar */
.lang-switch {
    font-size: 18px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: #333;
}

/* Menu hamburger icon */
.menu-toggle {
    position: fixed;
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-right: 1rem;
    order: -1;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-home {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.main-banner-slider-container {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.main-slides .slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* Optional: custom panah slick */
.slick-prev,
.slick-next {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.slick-prev {
    left: 35px;
}

.slick-next {
    right: 35px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
}

/* Optional: custom dots */
.slick-dots {
    bottom: 15px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #892203;
    opacity: 1;
}

.our-story {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.our-story .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-story .story-content {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: center;
}

.our-story .story-text {
    flex: 1;
    max-width: 600px;
}

.our-story .story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.our-story .story-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-family: "Times New Roman", Times, serif;
}

.our-story .story-img {
    flex: 1;
    max-width: 450px;
}

.our-story .story-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.our-story button {
    padding: 12px 30px;
    background-color: #892203;
    color: white;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

/*promo css */
.promo {
    background-image: url("/img/promobg.png");
    text-align: center;
}

.promo-container {
    display: flex;
    align-items: space-between;
    /* gap: 50px; */
    padding: 40px;
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    height: auto;
}

.promo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: left;
    color: #333;
    padding-left: 20px;
    height: 100%;
}

.promo-text h2 {
    font-size: 2.5em;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.promo-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.promo-card {
    background-color: #2a2929;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    color: #fff;
    width: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.promo-card.red {
    background-color: #892203;
}

.promo-img-placeholder {
    width: 100%;
    height: 180px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.promo-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.all-promo-button-container {
    text-align: center;
}

.all-promo-button {
    display: inline-block;
    background-color: #892203;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.promo-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.all-promo-button:hover {
    text-decoration: none;
    color: white;
    transform: translateY(-2px);
}

.section-promo {
    padding: 40px 20px;
    text-align: center;
}

.promo-h1 h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.allpromo-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.allpromo-cards {
    width: 180px;
    background-color: #fff;
    text-align: center;
}

.allpromo-cards .img {
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    height: 180px;
    background-color: #892203;
    margin-bottom: 10px;
}

.allpromo-cards h1 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0;
}

.allpromo-cards p {
    font-size: 12px;
    color: #444;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.name-promo {
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
}

.detail-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 80px;
}

.promo-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.promo-image {
    cursor: pointer;
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    flex: 1;
    padding: 20px;
}

.promo-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.promo-rules {
    list-style: none;
    margin-top: 15px;
    padding-left: 0;
    line-height: 1.6;
}

.detail-cards-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.detail-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-card {
    background-color: #2a2929;
    border-radius: 15px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    color: #fff;
    width: 300px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 4px solid #892203;
    border: none;
    border-radius: 10px;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.detail-img-placeholder {
    width: 100%;
    height: 180px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.detail-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.detail-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.all-detail-button-container {
    text-align: center;
}

.all-detail-button {
    display: inline-block;
    background-color: #892203;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.detail-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.all-detail-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/*endpromo css */

.video-news {
    display: flex;
    gap: 6rem;
    padding: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    flex: 1.5;
}

.news {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    flex: 1.1;
}

.video h3,
.news h3 {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.video iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.section-header .see-more {
    color: #b94a1f;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.3rem;
}

.news .see-more {
    color: #b94a1f;
    font-weight: 600;
    display: block;
    text-align: right;
    text-decoration: none;
}

.news ul {
    list-style: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.news ul li {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news ul li img {
    width: 60px;
    height: 60px;
    border-radius: 9px;
    object-fit: cover;
}

.news ul li span {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

footer {
    background: #222;
    color: #eee;
    padding: 0;
    position: relative;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    padding: 2.5rem 2rem 1.5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-left {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

.footer-logo {
    grid-row: 1 / 3;
    grid-column: 1;
}

.footer-info {
    grid-row: 1;
    grid-column: 2;
    padding-left: 0;
}

.footer-helpdesk {
    grid-row: 2;
    grid-column: 2;
    padding-left: 0;
}

.footer-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-info-item i {
    font-size: 1.1rem;
    margin-top: 0.2em;
    color: #ccc;
    min-width: 16px;
}

.footer-helpdesk h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-helpdesk ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-helpdesk li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-helpdesk li:hover {
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.location-footer iframe {
    width: 100%;
    width: 550px;
    height: 300px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wa-float {
    position: absolute;
    top: -30px;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 5;
    transition: all 0.3s ease;
    border: 4px solid #fff;
    text-decoration: none;
}

.wa-float:hover {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #ccc;
    font-size: 0.9rem;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-socials a {
    color: #ccc;
    background: #333;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #b94a1f;
    color: #fff;
    transform: translateY(-2px);
}

/* about css */
.about-section img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.container-about {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 60px 40px !important;
    table-layout: fixed !important;
}

.about-text {
    /* display: table-row !important; */
}

.about-text h2 {
    display: table-cell !important;
    width: 350px !important;
    vertical-align: top !important;
    padding-right: 60px !important;
    font-size: 2.5rem !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    color: #892203 !important;
    text-align: left !important;
}

.about-text p {
    /* display: table-cell !important; */
    vertical-align: top !important;
    font-size: 1.5rem !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
    text-align: left !important;
}

.testimonial-card {
    background: #892203;
    border-radius: 20px;
    padding: 40px;
    max-width: 1100px;
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    min-height: 100px;
}

.header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.header h2 {
    display: inline-block;
    position: relative;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-section {
    padding-left: 20px;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 400;
    opacity: 0.95;
    hyphens: auto;
    padding-left: 10px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.profile-section {
    text-align: center;
}

.profile-image {
    background-color: white;
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 20px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.profile-info {
    text-align: center;
    margin-top: 10px;
}

.profile-info h3 {
    padding-left: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 5px 0;
    line-height: 1.2;
}

.profile-info p {
    padding-left: 30px;
    font-size: 19px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
}

/* responsive about */
@media (max-width: 992px) {
    .container-about {
        padding: 30px 15px;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: left;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-section img {
        height: 180px;
    }

    .img-companyceo {
        padding: 0 10px;
    }

    .img-companyceo img {
        max-width: 90%;
    }
}

/* endresponsive about */

/* endabout css */

/* product css */

/* photobox */
.product-section {
    text-align: center;
    padding: 35px;
}

.product-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.product-box {
    background-color: #892203;
    color: white;
    padding: 10px 10px;
    border-radius: 60px;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-box span {
    margin: 0 10px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.product-box .dot {
    font-weight: bold;
}

.photomatics-box h1 {
    text-align: left;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 35px;
}

.slider-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    position: relative;
    padding: 0 70px;
    box-sizing: border-box;
}

.product-slider .slide-item {
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
    outline: none;
}

.product-slider .slide-item img {
    width: 180px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid #ddd;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    cursor: pointer;
}

.product-slider .slide-item img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.product-slider .slide-item.highlight img {
    border-color: #8b0000;
}

.product-slider .slide-item p {
    margin-top: 15px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.slick-prev-custom,
.slick-next-custom {
    background: none;
    border: none;
    font-size: 40px;
    color: #8b0000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
    opacity: 1;
    color: #a00000;
    outline: none !important;
    box-shadow: none !important;
}

/* Styling untuk panah ketika dinonaktifkan (karena infinite: false) */
.slick-disabled {
    opacity: 0.3 !important;
    /* Buat panah lebih transparan saat disabled */
    cursor: not-allowed !important;
    /* Ubah kursor */
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-slide {
    height: inherit;
    outline: none;
    border: none;
}

.product-slider {
    will-change: transform;
}

* Optimasi untuk performa animasi */ .product-slider {
    will-change: transform;
}

/* Fix khusus untuk animasi backward yang tidak smooth */
.slick-track {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Pastikan animasi konsisten di semua arah */
.slick-slide {
    transition: none !important;
    transform: translateZ(0);
}

/* Override default Slick CSS untuk animasi yang lebih konsisten */
.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

/* Tambahan untuk browser compatibility */
.product-slider .slick-list {
    overflow: hidden;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.product-slider .slick-list:focus {
    outline: none;
}

.product-slider .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-prev-custom {
    left: -60px;
}

.slick-next-custom {
    right: -60px;
}

/* photoboxend */

/* photobox studio */

.studio-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgba(138, 130, 130, 0.1);
    padding: 40px;
    flex-wrap: wrap;
}

.studio-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    line-height: 1.5;
    max-width: 400px;
    margin-right: 10px;
}

.studio-text h1 {
    font-size: 36px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.studio-text p {
    margin-top: 5px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
}

.studio-text span {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    background-color: #892203;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.studio-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px auto;
    width: fit-content;
    position: relative;
}

.studio-slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 80px;
    border-radius: 12px;
    position: relative;
}

.studio-slider-track .slick-slide {
    padding: 0 15px;
}

.studio-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
}

.studio-slide {
    min-width: 250px;
    text-align: center;
    flex-shrink: 0;
}

.studio-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.studio-slider-track .slick-slide {
    padding: 0 15px;
    transition: all 0.3s ease;
    transform: scale(0.85);
    opacity: 0.7;
}

.studio-slider-track .slick-slide.slick-center {
    transform: scale(1.1);
    opacity: 1;
    z-index: 10;
    position: relative;
}

.studio-slider-track .slick-slide.slick-center img {
    border-radius: 10px;
}

.studio-slider-container {
    overflow: visible;
    width: 1000px;
    padding: 40px 10px;
}

.slick-prev-custom-studio,
.slick-next-custom-studio {
    background: none;
    border: none;
    font-size: 40px;
    color: #892203;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.slick-prev-custom-studio:hover,
.slick-next-custom-studio:hover {
    opacity: 1;
    color: #a00000;
    outline: none !important;
    box-shadow: none !important;
}

.slick-prev-custom-studio.slick-disabled,
.slick-next-custom-studio.slick-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.slick-prev-custom-studio {
    left: -50px;
}

.slick-next-custom-studio {
    right: -30px;
}

.studio-slider-track .slick-prev,
.studio-slider-track .slick-next {
    display: none !important;
}

.studio-slider-track .slick-slide {
    transform: none !important;
    opacity: 1 !important;
}

/* studioend */

/* express */
.express-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px;
    flex-wrap: wrap;
}

.product-card-color {
    width: 220px;
    background: #892203;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card {
    width: 220px;
    background: #d6d7d5;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-container {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 15px 10px;
    margin-bottom: 12px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 150px;
    height: 140px;
    object-fit: contain;
    border-radius: 6px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.product-description {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    padding: 0 2px;
}

.product-title-color {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.product-description-color {
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    padding: 0 2px;
}

.express-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    max-width: 900px;
    padding-right: 20px;
}

.express-slider-container {
    width: 810px;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}

.express-slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.express-slide {
    padding: 0 30px;
    position: relative;
    min-width: 250px;
    flex-shrink: 0;
}

.slick-prev-custom-express,
.slick-next-custom-express {
    background: none;
    border: none;
    font-size: 40px;
    color: #892203;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Arrow Buttons */
.slick-prev-custom-express:hover,
.slick-next-custom-express:hover {
    opacity: 1;
    color: #892203;
    outline: none !important;
    box-shadow: none !important;
}

.slick-prev-custom-express.slick-disabled,
.slick-next-custom-express.slick-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

.slick-prev-custom-express {
    left: -50px;
}

.slick-next-custom-express {
    right: -50px;
}

.express-slider-track .slick-prev,
.express-slider-track .slick-next {
    display: none !important;
}

.express-slider-track .slick-slide {
    margin: 0 10px;
    box-sizing: border-box;
    transform: none !important;
    opacity: 1 !important;
}

/* expressend */

.promo-h1 h1 {
    font-size: 28px;
    margin-bottom: 30px;
}

.slick-prev,
.slick-next {
    width: 35px;
    height: 35px;
}

.slick-prev {
    left: 10px;
    /* Lebih dekat ke kiri */
}

.slick-next {
    right: 10px;
    /* Lebih dekat ke kanan */
}

.slick-prev:before,
.slick-next:before {
    font-size: 24px;
    /* Icon lebih kecil */
}

.slider-container,
.studio-slider-container,
.express-slider-container {
    width: 100%;
    padding: 0 10px;
}

.container-about {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
}

.about-text {
    /* flex-direction: column; */
    gap: 1rem;
    /* align-items: center; */
    justify-content: center;
}

.about-text h2 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.img-companyceo {
    padding: 10px;
    margin-top: 30px;
}

.img-companyceo img {
    max-width: 100%;
    height: auto;
}

/* endresponsive product */

/* endproduct css */

/* partner css */
.img-partner img {
    width: 100%;
    height: 310px;
    display: block;
    object-fit: cover;
}

.partner-card {
    cursor: pointer;
    width: 160px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: scale(1.03);
}

.partner-caption {
    background-color: #9b1c10;
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 14px;
}

.partner-section {
    padding: 0;
    margin-bottom: 10px;
}

.partner-grid {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(170px, max-content));
    gap: 30px;
    padding: 50px;
    justify-content: center;
}

.partner-card {
    width: 180px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.partner-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 4px solid #892203;
    border: none;
}

.partner-title {
    background-color: #892203;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
}

/* endpartner css */

/* news css */

.news-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 15px;
}

.news-section img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.news-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    background-color: #2f2f2f;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-content h3 {
    font-size: 17px;
    font-weight: bold;
    margin: 0;
}

.news-content p {
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.news-content .date {
    font-size: 13px;
    color: #888;
}

.read-more {
    align-self: flex-end;
    margin-top: 10px;
    background-color: #892203;
    color: white;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    color: white;
    text-decoration: none;
    background-color: #a83216;
}

/* endnews css */

/* location css */
.location-section {
    background-color: #892203;
}

.location-words {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-words h1 {
    font-size: 2.5rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    margin-top: 50px;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 500px;
}

.search-container input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    border-radius: 9999px;
    border: none;
    outline: none;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-container .fa-search {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.main-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 0;
}

.sidebar {
    background: white;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid #dee2e6;
    padding: 0;
}

.province-header {
    color: black;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.province-header:hover {
    background: #b6b9bc;
}

.province-content {
    padding: 0;
}

.location-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.location-item:hover {
    background-color: #f8f9fa;
}

.location-item.active {
    /* background-color: #b94a1f; */
    color: black;
}

.location-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.location-address {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.location-item.active .location-address {
    color: black;
}

.location-hours {
    font-size: 0.85rem;
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 5px;
}

.location-item.active .location-hours {
    color: #28a745;
}

.map-container {
    height: 100vh;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.collapse-icon {
    transition: transform 0.2s;
}

.collapsed .collapse-icon {
    transform: rotate(-90deg);
}

/* endlocation css */

/* modal css */

.explanation {
    color: #888;
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
}

h5 {
    color: black;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 40px;
}

.custom-carousel {
    position: relative;
}

.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-carousel-control:hover {
    transform: translateY(-50%) scale(1.1);
}

.custom-carousel-control i {
    color: #892203;
    font-size: 20px;
}

.custom-prev {
    left: -50px;
}

.custom-next {
    right: -50px;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.2);
}

.slide-content {
    padding: 20px 0;
}

.slide-image {
    width: 400px;
    height: 500px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.slide-image:hover {
    transform: scale(1.02);
}

/* endmodal css */

/* detailnewscss */
.detailsnews-img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.content-detailnews {
    margin-top: 30px;
}

.detailnews-date {
    padding-left: 200px;
}

.detailnews-date span {
    font-size: 20px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
}

.detailnews-date h3 {
    font-size: 50px;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.detailnews-teks {
    padding-left: 200px;
    max-width: 1400px;
}

.detailnews-teks p {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
    margin: 0 0 1em 0;
    line-height: 1.6;
}

/* enddetailnewscss */

@media (max-width: 1024px) {
    .studio-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .studio-text {
        max-width: 100%;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .studio-text h1 {
        font-size: 32px;
    }

    .studio-text p {
        font-size: 18px;
    }

    .studio-slider {
        width: 100%;
        padding: 0 50px;
        box-sizing: border-box;
    }

    .studio-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .studio-slide {
        min-width: auto;
    }

    .studio-slide img {
        max-height: 320px;
        height: auto;
    }

    .slick-prev-custom-studio,
    .slick-next-custom-studio {
        font-size: 45px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slick-prev-custom-studio {
        left: -30px !important;
    }

    .slick-next-custom-studio {
        right: -30px !important;
    }

    .promo-container,
    .promo-cards,
    .promo-news,
    .video-news,
    .our-story .story-content,
    .footer-main {
        flex-direction: column;
        gap: 2rem !important;
        text-align: center;
    }

    .promo-card {
        justify-content: center;
    }

    .video iframe {
        height: 250px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .footer-info,
    .footer-helpdesk {
        transition: none;
    }

    .footer-logo {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .express-section {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .express-slider {
        position: relative;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .express-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .express-slide {
        padding: 90px;
    }

    .product-image {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .detailnews-date {
        padding-left: 10px;
        padding-right: 10px;
    }

    .detailnews-teks {
        padding-left: 10px;
        padding-right: 10px;
    }

    .allpromo-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 20px;
        padding: 0 50px;
    }

    .section-promo {
        padding: 10px 10px;
    }

    .sidebar {
        height: 50vh;
        max-height: 50vh;
        overflow-y: auto;
    }

    .map-container {
        height: calc(65vh - 0px);
    }

    .footer-main {
        padding: 1.5rem 1rem;
        gap: 2.5rem;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-info,
    .footer-helpdesk {
        grid-row: unset;
        grid-column: unset;
        padding-left: 0;
        width: 100%;
    }

    .footer-logo img {
        width: 150px;
        height: auto;
        margin: 0;
    }

    .footer-info,
    .footer-helpdesk {
        text-align: center;
    }

    .footer-info-item {
        justify-content: center;
    }

    .location-footer {
        width: 100%;
        display: flex;

        justify-content: center;
    }

    .location-footer iframe {
        width: 100%;
        max-width: 500px;
        height: 200px;
    }

    .wa-float {
        top: -20px;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }

    .footer-copyright,
    .footer-socials {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .search-container,
    .fa-search input {
        width: 350px;
    }

    .container-about {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        table-layout: auto !important;
        box-sizing: border-box !important;
    }

    .about-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .about-text h2,
    .about-text p {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        box-sizing: border-box;
    }

    .about-text h2 {
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 30px 15px;
    }

    .content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .profile-image {
        width: 200px;
        height: auto;
        margin: 0 auto 15px;
    }

    .profile-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .profile-info h3 {
        font-size: 1.1rem;
        margin-left: 0;
        text-align: center;
    }

    .profile-info p {
        font-size: 1rem;
        margin-left: 0;
        text-align: center;
    }

    .quote-section {
        padding-left: 0;
        padding-top: 20px;
    }

    .header {
        position: relative;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
        z-index: 2;
    }

    .header h2 {
        font-size: 1.8rem;
        text-align: center;
        padding-top: 20px;
    }

    .profile-info h3 {
        font-size: 1rem;
    }

    .profile-info p {
        font-size: 15px;
    }

    .quote-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 15px;
    }

    .promo-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .promo-content ul li {
        margin-bottom: 5px;
    }

    .promo-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .promo-image img {
        max-width: 80%;
        height: auto;
        object-fit: contain;
    }

    .studio-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .studio-text {
        text-align: center;
        align-items: center;
        margin-right: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .studio-text h1 {
        font-size: 26px;
    }

    .studio-text p {
        font-size: 16px;
    }

    .studio-text span {
        font-size: 16px;
        padding: 8px 16px;
    }

    .studio-slider {
        position: relative;
        width: 100%;
        padding: 0 50px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .studio-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .studio-slide {
        min-width: auto;
    }

    .studio-slide img {
        height: auto;
        max-height: 300%;
    }

    .slick-prev-custom-studio,
    .slick-next-custom-studio {
        background: none;
        border: none;
        font-size: 40px;
        color: #8b0000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .slick-prev-custom-studio {
        left: -30px !important;
    }

    .slick-next-custom-studio {
        right: -30px !important;
    }

    .product-content h1 {
        font-size: 24px;
    }

    .product-box {
        font-size: 14px;
        padding: 8px 16px;
        border-radius: 30px;
    }

    .photomatics-box h1 {
        font-size: 24px;
        text-align: center;
        margin-top: 200px;
    }

    .slider-wrapper {
        padding: 0 20px;
    }

    .product-slider .slide-item img {
        width: 100%;
        height: auto;
        max-width: 220px;
        max-height: 300px;
    }

    .slick-prev-custom,
    .slick-next-custom {
        font-size: 30px;
    }

    .slick-prev-custom {
        left: -30px;
    }

    .slick-next-custom {
        right: -30px;
    }

    .express-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        flex-wrap: wrap;
        box-sizing: border-box;
    }

    .express-slider {
        position: relative;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .express-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .express-slide {
        padding: 10px;
    }

    .product-image {
        height: 150px;
    }

    .slick-prev-custom-express,
    .slick-next-custom-express {
        background: none;
        border: none;
        font-size: 40px;
        color: #8b0000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .slick-prev-custom-express {
        left: -30px !important;
    }

    .slick-next-custom-express {
        right: -30px !important;
    }

    .img-partner img {
        object-fit: contain;
        height: auto;
        width: 100%;
        max-height: 100%;
        display: block;
        margin: 0 auto;
    }

    .partner-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 10px;
    }

    .partner-card {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .partner-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .partner-title {
        font-size: 13px;
        padding: 10px 0;
    }

    .about-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-desc {
        font-size: 1rem;
        text-align: center;
    }

    .about-section img {
        height: 180px;
    }

    .img-companyceo {
        padding: 0 10px;
    }

    .img-companyceo img {
        max-width: 90%;
    }

    .news-section img {
        object-fit: contain;
        height: auto;
        width: 100%;
        max-height: 100%;
        display: block;
        margin: 0 auto;
    }

    .news-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 10px;
    }

    .news-card {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
    }

    .news-card img {
        width: 100%;
        object-fit: cover;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100vh;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        z-index: 100;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 101;
    }

    .promo-container {
        padding: 1.5rem;
    }

    .promo-text h2 {
        font-size: 2rem !important;
        text-align: center;
    }

    .promo-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .our-story .story-content {
        flex-direction: column;
        text-align: center;
    }

    .our-story .story-text h2 {
        font-size: 2rem;
    }

    .video-news {
        padding: 2rem 1rem;
    }

    .footer-main {
        padding: 2rem 1rem;
    }

    .slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .slides {
        width: 100%;
    }

    .slide {
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .express-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
        padding: 0 1px;
    }

    .express-slider {
        position: relative;
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .express-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .express-slide {
        padding: 0 45px;
    }

    .product-image {
        height: 130px;
    }

    .slider-wrapper {
        padding: 0 10px;
    }

    .product-box {
        display: block;
        font-size: 12px;
        text-align: center;
    }

    .product-box span {
        display: inline-block;
        margin: 4px 6px;
    }

    .product-slider .slide-item p {
        font-size: 16px;
    }

    .slick-prev-custom,
    .slick-next-custom {
        font-size: 24px;
    }

    .slick-prev-custom {
        left: -20px;
    }

    .slick-next-custom {
        right: -20px;
    }

    .navbar {
        padding: 1rem;
    }

    .logo img {
        width: 120px;
    }

    .promo-text h2,
    .our-story .story-text h2 {
        font-size: 1.6rem;
    }

    .promo-card {
        width: 100%;
        max-width: 220px;
    }

    .video iframe {
        height: 200px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo img {
        margin: 0 auto 2rem;
    }

    .footer-info,
    .footer-helpdesk {
        transform: none;
        margin: 0 auto;
        align-items: center;
    }

    .footer-info-item {
        justify-content: center;
    }

    .footer-helpdesk ul {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .wa-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        top: -25px;
    }
}

.promo-content-text p,
.ellipsis {
    white-space: nowrap; /* jangan wrap ke baris baru */
    overflow: hidden; /* sembunyikan teks yang keluar */
    text-overflow: ellipsis; /* tampilkan ... di akhir */
}
