:root {
    --primary-color: #094b8c;
    --secondary-color: #e8e8e6;
    --dark-color: #094c8f;
    --industrial-dark: #0a3561;
    --text-color: #333;
    --white-color: #fff;
    --light-gray: #ddd;
    --super-light-gray: #f0f0f0;
    --bg-light-gray: #f8f9fa;
    --bg-light-gray-alt: #e9ecef;
    --border-gray: #ddd;
    --border-gray-dark: rgba(243, 156, 18, 0.3);
    --border-white-trans: rgba(255, 255, 255, 0.2);
    --text-white-trans: rgba(255, 255, 255, 0.85);
    --bg-white-trans: rgba(255, 255, 255, 0.1);
    --bg-white-trans-hover: rgba(255, 255, 255, 0.2);
    --bg-nav-link-hover: rgb(255 255 255 / 16%);
    --accent-color: var(--secondary-color);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    --footer-text-color: rgba(255, 255, 255, 0.7);
    --footer-text-light: #ddd;
    --footer-border-trans: rgba(255, 255, 255, 0.1);
    --footer-text-trans: rgba(255, 255, 255, 0.5);
    --footer-social-border: rgba(255, 255, 255, 0.2);
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    --shadow-navbar: rgba(0, 0, 0, 0.3);
    --shadow-button: rgba(0, 0, 0, 0.2);
    --shadow-drop: rgba(0, 0, 0, 0.4);
    
    /* New Variables for this section */
    --text-color-primary: #333;
    --text-color-secondary: #555;
    --text-color-muted: #666;
    --text-color-light: #777;
    --border-color-default: #e2e8f0;
    --border-color-light: #eee;
    --border-color-hover: #cbd5e0;
    --bg-color-widget: var(--white-color);
    --bg-color-tag: #f5f5f5;
    --bg-color-pagination: var(--white-color);
    --bg-color-pagination-hover: #f7fafc;
    --bg-color-pagination-disabled: #f8f9fa;
    --bg-color-button: var(--primary-color);
    --bg-color-button-hover: var(--dark-color);
    --bg-color-category-badge: #005cb7bd;

    --shadow-default: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    --shadow-pagination-active: rgba(26, 82, 118, 0.2);

    --padding-sm: 15px;
    --padding-md: 25px;
    --padding-lg: 40px;

    --gap-default: 25px;
    --gap-sm: 10px;
}
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

.text-justify{
    text-align:justify;
}

.btn {
    --bs-btn-font-size: 0.8rem;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    font-size: 0.8rem;
    padding-top: 140px;
}

.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

.top-bar {
    background: linear-gradient(to right, var(--industrial-dark), var(--dark-color));
    color: var(--white-color);
    padding: 20px 0;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px),
                      linear-gradient(0deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.top-contact {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
}

.top-contact div {
    margin-right: 0;
    display: flex;
    align-items: center;
}

.top-contact i {
    margin-right: 4px;
    color: var(--secondary-color);
    font-size: 0.9em;
}

.social-icons a {
    color: var(--light-gray);
    margin-left: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-white-trans);
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    background: var(--bg-white-trans-hover);
}

.navbar {
    background: var(--dark-color);
    box-shadow: 0 2px 15px var(--shadow-navbar);
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--secondary-color);
}

.navbar.scrolled {
    padding: 0;
}

.navbar-container {
    /*padding: 0.5rem 1rem;*/
}

.logo-img {
    height: 45px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px var(--shadow-drop));
}

.navbar-nav .nav-link {
    color: var(--text-white-trans) !important;
    font-weight: 500;
    padding: 1rem 0.8rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white-color) !important;
    background: var(--bg-nav-link-hover);
}

.navbar-toggler {
    border: 1px solid var(--border-white-trans);
    padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    background: linear-gradient(to bottom, var(--dark-color), var(--industrial-dark));
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 5px 15px var(--shadow-heavy);
    padding: 0.5rem;
}

.bottom-content {
    left:102%;
    top:0px;
}

.dropdown-item {
    color: rgb(205 205 205 / 85%);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    white-space: normal;
}

.dropdown-item:hover {
    background-color: rgb(79 107 134 / 37%);
    color: var(--white-color);
    padding-left: 1.3rem;
}

.dropdown-header {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--footer-border-trans);
    padding-bottom: 0.5rem;
}

.mega-dropdown {
    position: static;
}

.mega-dropdown-menu {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(to bottom, var(--dark-color), var(--industrial-dark));
    border: 1px solid var(--secondary-color);
    left: 0;
    right: 0;
    position: absolute;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.mega-dropdown-menu .row {
    margin: 0 -10px;
}

.mega-dropdown-menu .col-md-3 {
    padding: 0 10px;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .dropdown-item {
        font-size: 0.75rem;
    }
    .navbar-nav {
        width: 100%;
        justify-content: center;
    }

    .container {
        --bs-gutter-x: 2rem;
    }

    .navbar-collapse {
        justify-content: center;
    }

    .nav-item.ms-lg-2 {
        margin-left: 0 !important;
    }
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*width: 80%;*/
}

.top-bar .navbar-brand {
    margin-right: 15px;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .navbar-collapse {
        background: linear-gradient(to bottom, var(--dark-color), var(--industrial-dark));
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 5px;
        border: 1px solid var(--border-gray-dark);
        max-height: 75vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0.5rem !important;
        border-bottom: 1px solid var(--footer-border-trans);
    }

    .dropdown-menu {
        margin-bottom: 0.5rem;
        background: rgba(26, 37, 47, 0.95);
    }

    .mega-dropdown-menu {
        padding: 1rem;
    }

    .top-bar {
        display:none;
    }

    .top-contact {
        justify-content: center;
        flex-direction: row;
    }

    .top-contact div {
        margin: 0 8px 0 8px;
    }

    .social-icons {
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }

    .social-icons a {
        margin: 0 5px;
    }
    .navbar-container {
        padding: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 60px;
    }

    .top-bar {
        display:none;
    }

    .top-contact {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        font-size: 0.7rem;
        gap: 5px;
    }

    .top-contact div {
        margin: 0;
        white-space: nowrap;
    }

    .top-contact i {
        margin-right: 2px;
    }

    .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
    }

    .d-flex.flex-column.flex-md-row .social-icons {
        margin-top: 5px;
    }

    .top-bar .navbar-brand {
        display: none;
    }
    .navbar-brand {
        display: block !important;
    }

    .top-bar .d-none.d-lg-block {
        display: none !important;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-nav .nav-link {
        padding: 0.7rem 0.5rem !important;
    }

    .footer-content .row {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
        margin: 0 auto 15px;
    }

    .footer-social-icons {
        text-align: center;
    }

    .short-links-grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

    .short-links-grid > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .short-links-grid .col-6 {
        margin-bottom: 1rem;
    }

    .short-links-grid .pe-2 {
        padding-right: 0.5rem !important;
    }
    .short-links-grid .ps-2 {
        padding-left: 0.5rem !important;
    }
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 0;
    }

    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .dropdown-submenu > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .mega-dropdown:hover .mega-dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        display: flex !important;
    }

    .mega-dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
    }
}

.btn-quote {
    background: linear-gradient(to bottom, #256fb5, #074a8b);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 5px var(--shadow-button);
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: linear-gradient(to bottom, #1b2127, #000000);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-heavy);
    color: var(--white-color);
}

.btn-outline-quote {
    color: var(--white-color);
    background-color: transparent;
    border: 1px solid var(--white-color);
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 2px 5px var(--shadow-button);
    transition: all 0.3s ease;
}

.btn-outline-quote:hover {
    background: linear-gradient(to bottom, #1b2127, #000000);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-heavy);
    color: var(--white-color);
}

.btn-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--whatsapp-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px var(--shadow-heavy);
    transition: all 0.3s;
}

.btn-wa:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1);
    color: var(--white-color);
}

.footer {
    background: linear-gradient(to bottom, var(--dark-color), var(--industrial-dark));
    color: var(--super-light-gray);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -5px 15px var(--border-white-trans);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
                      linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 45px;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.footer p {
    font-size: 0.8rem;
    color: var(--footer-text-color);
    text-align: justify;
    margin-bottom: 0.8rem;
}

.footer a {
    color: var(--footer-text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-color);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .footer-title::after {
        left: 0;
        transform: none;
    }
}

.footer .list-unstyled li {
    margin-bottom: 3px;
}

.footer-social-icons {
    margin-top: 10px;
}

.footer-social-icons a {
    color: var(--white-color);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--footer-social-border);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--industrial-dark);
    transform: rotate(360deg) scale(1.1);
    padding-left: 0;
}

.footer-divider {
    height: 1px;
    background-color: var(--footer-border-trans);
    width: 100%;
    margin: 20px 0 10px;
}

.footer-bottom-bar {
    font-size: 0.75rem;
    color: var(--footer-text-trans);
}

.footer-contact-info p {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.footer-contact-info i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.latest-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.latest-post-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid var(--footer-border-trans);
    transition: transform 0.3s ease;
}

.latest-post-thumb:hover {
    transform: scale(1.05);
}

.latest-post-info a {
    color: var(--white-color);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.3s ease;
    padding-left: 0;
}

.latest-post-info a:hover {
    color: var(--secondary-color);
}

.latest-post-date {
    font-size: 0.7rem;
    color: var(--footer-text-trans);
    display: block;
    margin-top: 3px;
}

.footer-maps {
    width: 100%;
    height: 175px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-white-trans);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.footer-maps iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (min-width: 992px) {
    .footer-row-top {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 20px;
    }
    .footer-row-top .col-lg-2 {
        flex: 1;
    }
    .footer-row-top .col-lg-4 {
        flex: 1.5;
    }
    .footer-row-bottom {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-top: 25px;
        gap: 20px;
    }
    .footer-row-bottom .col-lg-4 {
        flex: 1;
    }
    .footer-row-bottom .col-lg-4:first-child {
        flex: 1.2;
    }
    .footer-row-bottom .col-lg-4:last-child {
        flex: 1.6;
    }
}

@media (max-width: 991.98px) {
    .footer .row > div {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .footer-content .row {
        text-align: center;
    }
    .footer-logo {
        text-align: center;
        margin: 0 auto 15px;
    }
    .footer-social-icons {
        text-align: center;
    }

    .short-links-grid {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

    .short-links-grid > div {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .short-links-grid .col-6 {
        margin-bottom: 1rem;
    }

    .short-links-grid .pe-2 {
        padding-right: 0.5rem !important;
    }
    .short-links-grid .ps-2 {
        padding-left: 0.5rem !important;
    }
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
    padding: 320px 0;
    color: var(--white-color);
    position: relative;
}

.hero-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--white-color) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.section-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-weight: 900;
    font-size: 1.8rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 35px;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
}

.industrial-pattern {
    background-color: var(--bg-light-gray);
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

.about-feature {
    text-align: center;
    padding: 16px 12px;
}

.about-feature i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.industrial-border {
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    position: relative;
}

.industrial-border:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--border-gray);
    pointer-events: none;
}

.product-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.product-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
}

.btn-primary-custom:hover {
    background-color: #14475f;
    border-color: #14475f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.img-loading {
    background: linear-gradient(90deg, var(--super-light-gray) 25%, #e0e0e0 50%, var(--super-light-gray) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }
}

.product-slider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light-gray) 0%, var(--bg-light-gray-alt) 100%);
    position: relative;
    overflow: hidden;
}

.product-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.swiper {
    width: 100%;
    height: 100%;
    padding: 5px 10px 50px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    height: calc((100% - 30px) / 1);
}

.swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px var(--shadow-medium);
}

.product-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover .product-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background-color: #14475f;
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
    text-align: left;
}

.product-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    text-align: justify;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-cta {
    margin-top: auto;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--white-color);
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .swiper-slide {
        /*max-width: calc(50% - 20px);*/
    }
}

@media (max-width: 767.98px) {
    .swiper-slide {
        /*max-width: calc(100% - 20px);*/
    }

    .product-slider-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-section {
    animation: fadeInUp 0.8s ease forwards;
}

.breadcrumb-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.breadcrumb-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white-color);
    margin: 0;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 3px var(--shadow-heavy);
}

.breadcrumb-title::before {
    content: '|';
    color: var(--accent-color);
    font-weight: 900;
    margin-right: 12px;
    font-size: 2rem;
}

.custom-breadcrumb {
    margin: 0;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--border-white-trans);
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.breadcrumb-item a {
    color: var(--white-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-icon {
    margin-right: 8px;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-title {
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .product-hero {
        display: none;
    }

    .custom-breadcrumb {
        align-self: stretch;
        text-align: center;
        border-radius: 8px;
    }
}

/* --- Product Pages --- */
.product-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    text-align: center;
}

.product-hero img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* --- Sidebar Styles --- */
.sidebar {
    padding-left: 30px;
}

@media (max-width: 991.98px) {
    .sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

.sidebar-widget {
    background: var(--bg-color-widget);
    border-radius: 3px;
    padding: var(--padding-md);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-default);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color-light);
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--text-color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.categories-list span {
    background: var(--secondary-color);
    color: var(--dark-color);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
}

.popular-post {
    display: flex;
    margin-bottom: var(--padding-sm);
    align-items: center;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 3px;
    overflow: hidden;
    margin-right: var(--padding-sm);
    flex-shrink: 0;
}

.popular-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.popular-post-info a {
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.popular-post-info a:hover {
    color: var(--primary-color);
}

.popular-post-date {
    font-size: 0.75rem;
    color: var(--text-color-light);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--bg-color-tag);
    color: var(--text-color-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.text-ori {
    color:#666;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 3px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 3px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 147, 255, 0.25);
}

/* Gallery-specific styles */
.gallery-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
    text-align: center;
}

.gallery-hero img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Gallery Content Styles */
.gallery-content {
    padding: 40px 0;
}

/*.section-title {*/
/*    position: relative;*/
/*    padding-bottom: 12px;*/
/*    margin-bottom: 24px;*/
/*    font-weight: 700;*/
/*    font-size: 1.7rem;*/
/*}*/

/*.section-title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 70px;*/
/*    height: 3px;*/
/*    background-color: var(--primary-color);*/
/*}*/

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    aspect-ratio: 1/1;
    cursor: pointer; /* Menambahkan cursor: pointer untuk menunjukkan interaksi */
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-media {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.swiper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.swiper-slide:hover .swiper-overlay {
    opacity: 1;
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-description {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.media-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 82, 118, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1; /* Pastikan di atas media */
}

/* Video Container Styles (tidak digunakan di HTML, tapi dipertahankan) */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-left: 3px;
}

/* Pattern */
.industrial-pattern {
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Modal Fullscreen & Navigation Styles */
.modal-fullscreen-gallery {
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.modal-content-gallery {
    backdrop-filter: blur(20px) !important; 
    -webkit-backdrop-filter: blur(20px) !important;
    border: none !important; 
    border-radius: 0 !important; 
    min-height: 100vh !important; 
    box-shadow: none !important;
}

.modal-header-gallery {
    border-bottom: 1px solid rgba(255,255,255,0.06) !important; 
    background: rgba(255,255,255,0.02) !important;
    backdrop-filter: blur(10px) !important; 
    border-radius: 0 !important; 
    padding: 1rem 1.5rem !important;
}

.modal-title-gallery {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
}

.btn-close-gallery {
    filter: invert(1) !important;
    opacity: 0.85 !important;
    transition: all 0.18s ease !important;
}

.modal-body-gallery {
    padding: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    flex-direction: column !important;
    position: relative !important;
}

.gallery-hero-modal {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

#modalImage {
    display: block !important;
    margin: 0 auto !important;
    max-height: 82vh !important;
    max-width: 100% !important;
    width: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6) !important;
}

#modalDesc {
    color: #ddd !important;
    margin-top: 1rem !important;
    font-size: 1rem !important;
    max-width: 1100px !important;
}

/* Prev/Next Buttons (tetap harus menggunakan !important jika Bootstrap CSS memaksakan styling) */
.modal-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 26px !important;
    cursor: pointer !important;
    z-index: 6 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6) !important;
    transition: transform 0.15s ease !important, background 0.15s ease !important; /* Tambah transisi background */
    padding: 0; /* Pastikan padding nol */
}

#prevBtn {
    left: 20px !important;
}

#nextBtn {
    right: 20px !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #prevBtn {
        left: 10px !important;
    }
    #nextBtn {
        right: 10px !important;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .modal-body-gallery {
        padding: 1rem !important;
    }
    .modal-nav-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }
}
