@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..700;1,14..32,100..700&display=swap');

:root {
    --sipan-red: #FF0000;
    --sipan-dark: #0F0F0F;
    --sipan-dark-alt: #1A1A1A;
    --sipan-white: #FFFFFF;
    --sipan-gray: #777777;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --sipan-light: #F9F9F9;
    --sipan-border: #e0e0e0;
}

body {
    font-family: "Inter", sans-serif !important;
    padding-top: 140px;
    background-color: #fff;
}

a {
    text-decoration: none;
}

/* =================================================
                    Start of header section
    ================================================ */

.top-bar {
    background-color: var(--sipan-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info a {
    color: var(--sipan-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-right: 25px;
    transition: var(--transition);
}

.top-bar-info i {
    color: var(--sipan-red);
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.top-bar-social span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar-social a {
    color: var(--sipan-white);
    font-size: 15px;
    margin-left: 20px;
    transition: var(--transition);
    display: inline-block;
}

.top-bar-info a:hover,
.top-bar-social a:hover {
    color: var(--sipan-red);
    transform: translateY(-2px);
}

.sipan-navbar {
    background-color: var(--sipan-white);
    padding: 18px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-text {
    font-weight: 600;
    color: var(--sipan-red);
    font-size: 32px;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 700;
    color: var(--sipan-dark) !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 20px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--sipan-red) !important;
}

.btn-quote {
    background-color: var(--sipan-red);
    color: var(--sipan-white) !important;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    transition: var(--transition);
}

.btn-quote:hover {
    background-color: var(--sipan-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.navbar-toggler-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

/* =================================================
                    End of header section
    ================================================ */


/* =================================================
                    Start of footer section
    ================================================ */

.sipan-footer {
    background-color: #131212;
    color: var(--sipan-white);
    padding: 80px 0 0;
}

.footer-logo {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background-color: var(--sipan-white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sipan-white);
    padding-left: 10px;
}

.footer-contact-box {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-contact-box i {
    font-size: 24px;
    margin-right: 20px;
    opacity: 0.9;
}

.footer-contact-box span {
    font-size: 16px;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 70px;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =================================================
                    End of footer section
    ================================================ */


/* =================================================
                End of banner section
    ================================================ */

.sipan-hero {
    position: relative;
    background: url('../../assets/images/bg/banner-bg.png');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.sipan-hero-content {
    padding: 150px 0;
}

.sipan-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sipan-text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.sipan-hero h1 span {
    color: var(--sipan-red);
}

.sipan-hero p {
    font-size: 1.05rem;
    color: #555;
    max-width: 480px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.btn-sipan-red {
    background-color: var(--sipan-red);
    color: white !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-sipan-outline {
    background-color: transparent;
    color: var(--sipan-text) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid var(--sipan-red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-sipan-red:hover {
    background-color: var(--sipan-dark);
}

.btn-sipan-outline:hover {
    background-color: var(--sipan-red);
    color: white !important;
}

.sipan-info-bar {
    padding: 20px 0;
    color: white;
    background: linear-gradient(45deg, black, black, transparent);
}

.sipan-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sipan-info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--sipan-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sipan-info-text h6 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.sipan-info-text p {
    margin: 0;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .sipan-hero h1 {
        font-size: 2.2rem;
    }

    .sipan-info-item {
        margin-bottom: 20px;
    }

    .sipan-hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .sipan-hero-content {
        padding: 60px 0;
    }
}

/* =================================================
                    End of banner section
    ================================================ */


/* =================================================
                Start of about us section
================================================ */

.about-section {
    padding: 80px 0;
    overflow: hidden;
}

.about-label {
    color: var(--sipan-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.about-title {
    font-weight: 800;
    font-size: 42px;
    color: var(--sipan-dark);
    margin-bottom: 15px;
}

.title-line {
    width: 40px;
    height: 3px;
    background-color: var(--sipan-red);
    margin-bottom: 30px;
}

.about-text {
    color: var(--sipan-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.promise-box {
    margin-top: 25px;
}

.promise-box span {
    color: var(--sipan-red);
    font-weight: 700;
}

.about-image-container {
    position: relative;
    padding: 20px 0;
}

.warehouse-img {
    border-radius: 12px;
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.floating-feature-card {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    background: var(--sipan-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--sipan-shadow);
    width: 320px;
    z-index: 10;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    color: var(--sipan-red);
    font-size: 28px;
    margin-right: 18px;
    line-height: 1;
}

.feature-info h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--sipan-dark);
}

.feature-info p {
    font-size: 14px;
    color: var(--sipan-gray);
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .floating-feature-card {
        left: -30px;
        padding: 25px;
        width: 280px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-image-container {
        margin-top: 50px;
    }

    .floating-feature-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        margin-top: -40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .warehouse-img {
        height: 300px;
    }
}

/* =================================================
                End of about us section
================================================ */


/* =================================================
                Start of product section
================================================ */

.sipan-label {
    color: var(--sipan-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.sipan-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--sipan-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sipan-title-line-center {
    width: 50px;
    height: 3px;
    background-color: var(--sipan-red);
    margin: 0 auto 40px;
}

.product-section {
    padding: 90px 0;
    background-color: var(--sipan-light);
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-container img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.product-icon-float {
    position: absolute;
    bottom: -5px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--sipan-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-card-body {
    padding: 30px 20px 20px;
}

.product-card-body h5 {
    font-weight: 800;
    font-size: 19px;
    color: var(--sipan-dark);
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 14.5px;
    color: var(--sipan-gray);
    line-height: 1.6;
    margin: 0;
}

.btn-all-products {
    background-color: var(--sipan-red);
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: none;
    margin-top: 50px;
    font-size: 14px;
}

.btn-all-products:hover {
    background-color: var(--sipan-dark);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .sipan-title {
        font-size: 30px;
    }

    .product-section {
        padding: 60px 0;
    }

}


/* =================================================
                End of product section
================================================ */



/* =================================================
                Start of brand section
================================================ */

.brand-slider-section {
    padding: 80px 0;
    background-color: var(--sipan-white);
}

.sipan-title-line-center {
    width: 50px;
    height: 3px;
    background-color: var(--sipan-red);
    margin: 0 auto;
}

.brand-carousel-container {
    position: relative;
    padding: 0 50px;
}

.brand-box {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 4px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease-in-out;
}

.brand-box img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.brand-box:hover {
    border-color: var(--sipan-red);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.brand-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-slider-section .carousel-control-prev,
.brand-slider-section .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: white;
    border: 1px solid var(--brand-border);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    color: var(--sipan-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.brand-slider-section .carousel-control-prev {
    left: -20px;
}

.brand-slider-section .carousel-control-next {
    right: -20px;
}

.brand-slider-section .carousel-control-prev:hover,
.brand-slider-section .carousel-control-next:hover {
    background-color: var(--sipan-red);
    color: white;
    border-color: var(--sipan-red);
}

.brand-slider-section .carousel-indicators {
    bottom: -60px;
}

.brand-slider-section .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
}

.brand-slider-section .carousel-indicators .active {
    background-color: var(--sipan-red);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .brand-carousel-container {
        padding: 0;
    }

    .brand-box {
        height: 80px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* =================================================
                End of brand section
================================================ */


/* =================================================
                Start of why choose section
================================================ */


.why-choose-section {
    position: relative;
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../../assets/images/about/about-us.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--sipan-white);
}

.feature-box {
    padding: 20px;
    position: relative;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 0, 0.2);
    border: 2px solid var(--sipan-red);
    color: var(--sipan-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-box:hover .feature-icon-wrap {
    background-color: var(--sipan-red);
    transform: rotateY(180deg);
}

.feature-box h5 {
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.divider-line {
    position: absolute;
    right: 0;
    top: 50%;
    height: 180px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .divider-line {
        display: none;
    }

    .feature-box {
        margin-bottom: 30px;
    }
}

/* =================================================
                End of why choose section
================================================ */


/* =================================================
                Start of step section
================================================ */

.how-we-work {
    padding: 90px 0;
    background-color: var(--sipan-white);
}

.process-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.step-item {
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.step-icon-container {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: #EEEEEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 32px;
    height: 32px;
    background-color: var(--sipan-red);
    color: white;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.step-icon-container i {
    font-size: 45px;
    color: var(--sipan-dark);
}

.step-item h5 {
    font-weight: 800;
    font-size: 20px;
    color: var(--sipan-dark);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: var(--sipan-gray);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.step-arrow {
    position: absolute;
    top: 60px;
    right: -15%;
    width: 30%;
    border-top: 2px dashed var(--sipan-red);
    z-index: 0;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -6px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--sipan-red);
    border-right: 2px solid var(--sipan-red);
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }

    .step-item {
        margin-bottom: 40px;
    }
}

/* =================================================
                End of step section
================================================ */


/* =================================================
                Start of cta section
================================================ */

.sipan-cta-section {
    background-color: var(--sipan-red);
    padding: 60px 0;
    color: var(--sipan-white);
}

.cta-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content-part {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.cta-icon-circle i {
    font-size: 45px;
    color: var(--sipan-white);
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    max-width: 550px;
    line-height: 1.4;
}

.btn-cta-white {
    background-color: var(--sipan-white);
    color: var(--sipan-red) !important;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

@media (max-width: 991px) {
    .cta-flex-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-part {
        flex-direction: column;
        gap: 15px;
    }

    .cta-text p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .cta-text h2 {
        font-size: 26px;
    }

    .btn-cta-white {
        width: 100%;
        justify-content: center;
    }
}

/* =================================================
                End of cta section
================================================ */


/* =================================================
                Start of about section
================================================ */

.sipan-page-banner {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../../assets/images/about/about-us.webp');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--sipan-white);
}

.sipan-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40px;
    width: 80px;
    height: 100%;
    background-color: var(--sipan-red);
    transform: skewX(-15deg);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.banner-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.title-underline {
    width: 45px;
    height: 5px;
    background-color: var(--sipan-red);
    margin-top: 15px;
    border-radius: 2px;
}

.breadcrumb-nav {
    margin-top: 10px;
}

.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--sipan-red);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "|";
}

@media (max-width: 767px) {
    .sipan-page-banner {
        height: 180px;
    }

    .banner-title {
        font-size: 36px;
    }

    .sipan-page-banner::before {
        width: 50px;
        left: -25px;
    }
}

.sipan-title span {
    color: var(--sipan-red);
}

.about-detailed {
    padding: 80px 0;
}

.who-label {
    font-style: italic;
    font-weight: 700;
    color: var(--sipan-dark);
    margin-bottom: 20px;
    display: block;
}

.promise-card {
    background-color: var(--sipan-light);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    border-left: 5px solid var(--sipan-red);
}

.quote-box {
    width: 40px;
    height: 40px;
    background-color: var(--sipan-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.promise-card p {
    margin: 0;
    font-size: 15px;
}

.promise-card p span {
    color: var(--sipan-red);
    font-weight: 700;
    font-style: italic;
}

.about-main-img {
    border-radius: 8px;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list-item:last-child {
    border-bottom: none;
}

.icon-circle-red {
    width: 60px;
    height: 60px;
    background-color: var(--sipan-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-list-content h6 {
    color: var(--sipan-red);
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 18px;
}

.feature-list-content p {
    margin: 0;
    font-size: 14px;
    color: var(--sipan-gray);
}

.vision-mission-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.vm-divider {
    width: 45px;
    height: 3px;
    background-color: var(--sipan-red);
    margin: 15px auto 55px;
}

.vm-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background-color: var(--sipan-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    flex-shrink: 0;
}

.vm-content h4 {
    font-weight: 800;
    color: var(--sipan-red);
    margin-bottom: 18px;
}

.vm-content p,
.vm-content li {
    font-size: 15px;
    line-height: 1.7;
}

.vm-content ul {
    padding-left: 0;
    list-style: none;
}

.vm-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.vm-content li::before {
    content: '•';
    color: var(--sipan-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 991px) {

    .vm-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px;
    }

    .vm-content li {
        text-align: left;
    }
    
}

@media (max-width: 767px) {

    .about-main-img {
        height: 350px;
    }
    
}

/* =================================================
                End of about section
================================================ */


/* =================================================
                Start of product page
================================================ */

.zigzag-section {
    padding: 80px 0;
    background-color: var(--sipan-white);
}

.zigzag-row {
    margin-bottom: 60px;
    align-items: center;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-img-wrap {
    position: relative;
    padding: 15px;
}

.zigzag-img-wrap img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    height: 400px;
    border: 1px solid #ddd;
    object-fit: cover;
}

.zigzag-row:hover .zigzag-img-wrap img {
    transform: scale(1.02);
}

.zigzag-icon-badge {
    width: 60px;
    height: 60px;
    background: var(--sipan-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.zigzag-content h3 {
    font-weight: 800;
    font-size: 28px;
    color: var(--sipan-dark);
    margin-bottom: 20px;
}

.zigzag-content p {
    font-size: 17px;
    color: var(--sipan-gray);
    line-height: 1.8;
}

@media (min-width: 992px) {
    .zigzag-row:nth-child(even) {
        flex-direction: row-reverse;
    }

    .zigzag-row:nth-child(even) .zigzag-content {
        padding-right: 80px;
    }

    .zigzag-row:nth-child(odd) .zigzag-content {
        padding-left: 80px;
    }
}

@media (max-width: 991px) {
    .zigzag-row {
        margin-bottom: 60px;
        text-align: center;
    }

    .zigzag-icon-badge {
        margin-left: auto;
        margin-right: auto;
    }


    .zigzag-img-wrap img {
        height: 350px;
    }
}

/* =================================================
                End of product page
================================================ */


/* =================================================
                Start of brands page
================================================ */

.brands-grid-section {
    padding: 80px 0;
    background-color: var(--sipan-white);
}

.brand-display-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 30px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-display-card img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.brand-display-card:hover {
    border-color: var(--sipan-red);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.brand-display-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 767px) {

    .brand-display-card {
        height: 110px;
        padding: 20px;
    }
}

/* =================================================
                End of brands page
================================================ */


/* =================================================
                Start of contact page
================================================ */

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-title {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--sipan-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--sipan-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 28px;
    color: var(--sipan-red);
    margin-right: 20px;
    line-height: 1;
}

.contact-info-text h6 {
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 17px;
}

.contact-info-text p {
    margin: 0;
    color: var(--sipan-dark);
    font-size: 15px;
}

.contact-form-card {
    border: 1px solid var(--sipan-border);
    border-radius: 4px;
    padding: 40px;
    background-color: #ffffff;
}

.contact-form-card h3 {
    font-weight: 800;
    margin-bottom: 30px;
    font-size: 24px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-label span {
    color: var(--sipan-red);
}

.form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid var(--sipan-border);
    padding: 12px 15px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sipan-red);
    box-shadow: none;
}

.btn-send {
    background-color: var(--sipan-red);
    color: white !important;
    width: 100%;
    padding: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-send:hover {
    background-color: var(--sipan-dark);
}

.form-footer-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--sipan-gray);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 25px;
        margin-top: 50px;
    }
}

/* =================================================
                End of contact page
================================================ */