@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 {
    --satelite-orange: #f37e21;
    --satelite-dark: #040174;
    --satelite-dark-alt: #040174;
    --satelite-white: #FFFFFF;
    --satelite-gray: #777777;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --satelite-light: #F9F9F9;
    --satelite-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(--satelite-dark);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info a {
    color: var(--satelite-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-right: 25px;
    transition: var(--transition);
}

.top-bar-info i {
    color: var(--satelite-orange);
    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(--satelite-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(--satelite-orange);
    transform: translateY(-2px);
}

.satelite-navbar {
    background-color: var(--satelite-white);
    padding: 18px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-text {
    font-weight: 600;
    color: var(--satelite-orange);
    font-size: 32px;
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 700;
    color: var(--satelite-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(--satelite-orange) !important;
}

.btn-quote {
    background-color: var(--satelite-orange);
    color: var(--satelite-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(--satelite-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;
}

.navbar-brand img {
    max-width: 198px;
    width: 100%;
}

/* =================================================
                    End of header section
    ================================================ */


/* =================================================
                    Start of footer section
    ================================================ */

.satelite-footer {
    background-color: #f9f9f9;
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-logo img {
    max-width: 250px;
    width: 100%;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--satelite-dark);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background-color: var(--satelite-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #212529;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--satelite-orange);
    padding-left: 10px;
}

.footer-contact-box {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.footer-contact-box i {
    font-size: 24px;
    margin-right: 20px;
    color: var(--satelite-orange);
}

.footer-contact-box span {
    font-size: 16px;
    line-height: 1.4;
}

.footer-contact-box span a {
    color: #212529;
}

.footer-bottom {
    margin-top: 70px;
    padding: 30px 0;
    background-color: var(--satelite-dark);
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* =================================================
                    End of footer section
    ================================================ */


/* =================================================
                End of banner section
    ================================================ */

.satelite-hero {
    position: relative;
    background: url('../../assets/images/bg/banner-bg2.webp');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.satelite-hero-content {
    padding: 150px 0;
}

.satelite-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--satelite-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.satelite-hero h1 span {
    color: var(--satelite-orange);
}

.satelite-hero p {
    font-size: 1.05rem;
    color: #555;
    max-width: 480px;
    margin-bottom: 35px;
    line-height: 1.5;
}

.btn-satelite-orange {
    background-color: var(--satelite-orange);
    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-satelite-outline {
    background-color: transparent;
    color: var(--satelite-dark) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid var(--satelite-orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-satelite-orange:hover {
    background-color: var(--satelite-dark);
}

.btn-satelite-outline:hover {
    background-color: var(--satelite-orange);
    color: white !important;
}

@media (max-width: 991px) {
    .satelite-hero h1 {
        font-size: 2.2rem;
    }

    .satelite-info-item {
        margin-bottom: 20px;
    }

    .satelite-hero-content {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .satelite-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(--satelite-orange);
    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(--satelite-dark);
    margin-bottom: 15px;
}

.title-line {
    width: 40px;
    height: 3px;
    background-color: var(--satelite-orange);
    margin-bottom: 30px;
}

.about-text {
    color: var(--satelite-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.promise-box {
    margin-top: 25px;
}

.promise-box span {
    color: var(--satelite-orange);
    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(--satelite-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--satelite-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(--satelite-orange);
    font-size: 28px;
    margin-right: 18px;
    line-height: 1;
}

.feature-info h6 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--satelite-dark);
}

.feature-info p {
    font-size: 14px;
    color: var(--satelite-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
================================================ */

.satelite-label {
    color: var(--satelite-orange);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.satelite-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--satelite-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.satelite-title-line-center {
    width: 50px;
    height: 3px;
    background-color: var(--satelite-orange);
    margin: 0 auto 40px;
}

.product-section {
    padding: 90px 0;
    background-color: var(--satelite-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;
}

.product-page .card-img-container {
    height: 280px;
}

.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(--satelite-orange);
    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: 20px 20px 20px;
}


.product-card-body h5 {
    font-weight: 800;
    font-size: 19px;
    color: var(--satelite-dark);
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 14.5px;
    color: var(--satelite-gray);
    line-height: 1.6;
    margin: 0;
}

.btn-all-products {
    background-color: var(--satelite-orange);
    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(--satelite-dark);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .satelite-title {
        font-size: 30px;
    }

    .product-section {
        padding: 60px 0;
    }

    .product-page .card-img-container {
        height: 240px;
    }

}

.product-slider {
    position: relative;
    overflow: hidden;
}

.product-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.product-slider-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

.product-slider-item>a {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* Bottom Arrows */
.product-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.product-slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #f15a29;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider-btn:hover {
    background: #f15a29;
    color: #fff;
    border-color: #f15a29;
}

@media (max-width: 991px) {
    .product-slider-item {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .product-slider-item {
        flex: 0 0 100%;
    }

    .product-slider-arrows {
        justify-content: center;
    }

    .product-page .card-img-container {
        height: 220px;
    }
}


/* =================================================
                End of product section
================================================ */


/* =================================================
                Start of why choose section
================================================ */


.why-choose-section {
    position: relative;
    padding: 80px 0;
    background-color: #131212;
    color: var(--satelite-white);
}

.feature-box {
    padding: 15px;
    position: relative;
    height: 100%;
}

.feature-icon-wrap {
    max-width: 60px;
    height: 60px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(243 126 33);
    color: var(--satelite-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.feature-box:hover .feature-icon-wrap {
    background-color: var(--satelite-orange);
    transform: rotateY(180deg);
}

.feature-box h5 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
}

.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(--satelite-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(--satelite-orange);
    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(--satelite-dark);
}

.step-item h5 {
    font-weight: 800;
    font-size: 20px;
    color: var(--satelite-dark);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 14px;
    color: var(--satelite-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(--satelite-orange);
    z-index: 0;
}

.step-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -6px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--satelite-orange);
    border-right: 2px solid var(--satelite-orange);
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .step-arrow {
        display: none;
    }

    .step-item {
        margin-bottom: 40px;
    }
}

/* =================================================
                End of step section
================================================ */


/* =================================================
                Start of cta section
================================================ */

.satelite-cta-section {
    background-color: var(--satelite-orange);
    padding: 60px 0;
    color: var(--satelite-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(--satelite-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(--satelite-white);
    color: var(--satelite-orange) !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
================================================ */

.satelite-page-banner {
    position: relative;
    background: #131212;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--satelite-white);
}

.banner-content {
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.banner-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.title-underline {
    width: 45px;
    height: 5px;
    background-color: var(--satelite-orange);
    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(--satelite-orange);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "|";
}

@media (max-width: 767px) {
    .satelite-page-banner {
        height: 180px;
    }

    .banner-title {
        font-size: 28px;
    }

    .satelite-page-banner::before {
        width: 50px;
        left: -25px;
    }
}

.satelite-title span {
    color: var(--satelite-orange);
}

.about-detailed {
    padding: 80px 0;
}

.who-label {
    font-style: italic;
    font-weight: 700;
    color: var(--satelite-dark);
    margin-bottom: 20px;
    display: block;
}

.promise-card {
    background-color: var(--satelite-light);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    border-left: 5px solid var(--satelite-orange);
}

.quote-box {
    width: 40px;
    height: 40px;
    background-color: var(--satelite-orange);
    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(--satelite-orange);
    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(--satelite-orange);
    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(--satelite-orange);
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 18px;
}

.feature-list-content p {
    margin: 0;
    font-size: 14px;
    color: var(--satelite-gray);
}

.vision-mission-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.vm-divider {
    width: 45px;
    height: 3px;
    background-color: var(--satelite-orange);
    margin: 15px auto 55px;
}

.vm-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background-color: var(--satelite-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.vm-content h4 {
    font-weight: 800;
    color: var(--satelite-orange);
    margin-bottom: 8px;
    font-size: 19px;
}

.vm-content p,
.vm-content li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.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(--satelite-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 991px) {

    .vm-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    .vm-content li {
        text-align: left;
    }

}

@media (max-width: 767px) {

    .about-main-img {
        height: 350px;
    }

}

@media (max-width: 767px) {

    .banner-title {
        font-size: 25px;
    }

}

/* =================================================
                End of about section
================================================ */


/* =================================================
                Start of product page
================================================ */

.zigzag-section {
    padding: 80px 0;
    background-color: var(--satelite-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(--satelite-orange);
    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(--satelite-dark);
    margin-bottom: 20px;
}

.zigzag-content p {
    font-size: 17px;
    color: var(--satelite-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(--satelite-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(--satelite-orange);
    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(--satelite-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(--satelite-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 28px;
    color: var(--satelite-orange);
    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: #212529;
    font-size: 15px;
}

.contact-form-card {
    border: 1px solid var(--satelite-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(--satelite-orange);
}

.form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid var(--satelite-border);
    padding: 12px 15px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--satelite-orange);
    box-shadow: none;
}

.btn-send {
    background-color: var(--satelite-orange);
    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(--satelite-dark);
}

.form-footer-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--satelite-gray);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 25px;
        margin-top: 50px;
    }
}


/* =================================================
                End of contact page
================================================ */


/* =================================================
                Start of product detail page
================================================ */

/* ==========================================
   PRODUCT DETAIL
========================================== */

.product-detail-section {
    background: var(--satelite-white);
}

.product-detail-heading h1 {
    color: var(--satelite-dark);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}

.satelite-title-line {
    width: 55px;
    height: 3px;
    background: var(--satelite-orange);
    border-radius: 5px;
}


/* Product Image */

.product-detail-image {
    overflow: hidden;
    border-radius: 10px;
    background: var(--satelite-light);
}

.product-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}


/* Content */

.product-detail-text h2 {
    color: var(--satelite-dark);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
    margin: 32px 0 14px;
}

.product-detail-text p {
    color: var(--satelite-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Feature List */

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
}

.product-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--satelite-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-feature-list li i {
    color: var(--satelite-orange);
    font-size: 16px;
    margin-top: 3px;
}


/* Specifications */

.product-spec-box {
    background: var(--satelite-light);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--satelite-white);
    border: 1px solid var(--satelite-border);
    padding: 13px;
    border-radius: 6px;
    height: 100%;
}

.spec-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 126, 33, 0.10);
    color: var(--satelite-orange);
    border-radius: 5px;
}

.spec-item small {
    display: block;
    color: var(--satelite-gray);
    font-size: 12px;
    margin-bottom: 2px;
}

.spec-item strong {
    display: block;
    color: var(--satelite-dark);
    font-size: 14px;
}


/* ==========================================
   SIDEBAR
========================================== */

.product-sidebar {
    position: sticky;
    top: 100px;
}

.product-sidebar-box {
    background: var(--satelite-white);
    border: 1px solid var(--satelite-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.product-sidebar-box h3 {
    margin: 0;
    padding: 18px 20px;
    background: var(--satelite-dark);
    color: var(--satelite-white);
    font-size: 20px;
    font-weight: 600;
}

.product-sidebar-list {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}

.product-sidebar-list li {
    border-bottom: 1px solid var(--satelite-border);
}

.product-sidebar-list li:last-child {
    border-bottom: 0;
}

.product-sidebar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.product-sidebar-list li a i {
    color: var(--satelite-gray);
    transition: var(--transition);
}

.product-sidebar-list li a:hover,
.product-sidebar-list li.active a {
    color: var(--satelite-orange);
    background: rgba(243, 126, 33, 0.07);
}

.product-sidebar-list li a:hover i,
.product-sidebar-list li.active a i {
    color: var(--satelite-orange);
    transform: translateX(4px);
}


/* ==========================================
   SIDEBAR CTA
========================================== */

.product-sidebar-cta {
    background: var(--satelite-dark);
    padding: 28px 23px;
    border-radius: 8px;
    color: var(--satelite-white);
}

.cta-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--satelite-orange);
    color: var(--satelite-white);
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 16px;
}

.product-sidebar-cta h3 {
    color: var(--satelite-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-sidebar-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--satelite-orange);
    color: var(--satelite-white);
    border: 1px solid var(--satelite-orange);
    padding: 10px 17px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.product-cta-btn:hover {
    background: var(--satelite-white);
    color: var(--satelite-dark);
    border-color: var(--satelite-white);
}


/* Responsive */

@media (max-width: 991px) {

    .product-sidebar {
        position: static;
    }

    .product-detail-heading h1 {
        font-size: 36px;
    }

    .product-detail-image img {
        height: 400px;
    }
}

@media (max-width: 575px) {

    .product-detail-heading h1 {
        font-size: 30px;
    }

    .product-detail-text h2 {
        font-size: 23px;
    }

    .product-detail-image img {
        height: 300px;
    }

}

/* =================================================
                End of product detail page
================================================ */