/**
 * Proplas - Main Stylesheet
 * Professional Profile Solutions
 */

:root {
    --primary-color: #0056b3;
    --primary-dark: #003d80;
    --secondary-color: #6c757d;
    --dark-color: #1d1d22;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-muted: #6c6c89;
    --border-color: #dee2e6;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* Base */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
    background: var(--primary-color);
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Header */
.main-header {
    z-index: 1000;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
}

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

/* Mega Menu */
.nav-item.dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    border: none;
    border-top: 2px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mega-menu .dropdown-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.4;
}

.mega-menu .dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Search Form */
.search-form .form-control {
    border-radius: 0.375rem 0 0 0.375rem;
    border-right: none;
}

.search-form .btn {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* Hero Slider */
.hero-slider {
    position: relative;
}

.hero-slider .swiper-slide {
    height: 500px;
    background: linear-gradient(135deg, #003d80 0%, #0056b3 50%, #1a6fbf 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.4) saturate(1.2);
    z-index: 1;
}

/* Image Only Slide */
.slide-image-only {
    padding: 0 !important;
}

.slide-image-only .slide-fullimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-image-only .slide-fullimage-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* Text Only Slide */
.slide-text-only .slide-title {
    font-size: 3rem;
}

.slide-text-only .slide-subtitle {
    font-size: 1.35rem;
}

.hero-slider .slide-content {
    max-width: 600px;
}

.hero-slider .slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-slider .slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Product Slide */
.product-slide {
    position: relative;
}

/* Slide Image Box */
.slide-image-box {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 350px;
    overflow: hidden;
}

.slide-image-box img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.slide-category-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Category Card */
.category-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 200px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.category-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.category-card .category-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.category-card .product-count {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Category Card V2 */
.category-card-v2 {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.category-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.category-card-image {
    height: 140px;
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-v2:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-body {
    padding: 0.75rem;
    text-align: center;
}

.category-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.1rem;
}

.category-card-count {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}

/* Feature Card */
.feature-card {
    padding: 2rem 1.5rem;
    background: var(--light-color);
    border-radius: 1rem;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* About Intro Home Section */
.about-intro-home-section {
    padding: 5rem 0;
}

.about-intro-image-wrapper {
    position: relative;
}

.about-intro-image-wrapper img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 100%;
    border-radius: 0.75rem;
}

/* Factory Gallery */
.about-main-image {
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}
.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.about-intro-home-section .about-image-badge {
    bottom: 1.5rem;
    right: -1.5rem;
}

.factory-gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.factory-gallery-item {
    aspect-ratio: 16/10;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0.65;
}
.factory-gallery-item.active,
.factory-gallery-item:hover {
    border-color: var(--primary-color);
    opacity: 1;
}
.factory-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .factory-gallery-strip {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
    }
}
@media (max-width: 575.98px) {
    .factory-gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stats Counter Home Section */
.stats-counter-section {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--dark-color);
    position: relative;
}

.stats-counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 56, 128, 0.85) 0%, rgba(0, 30, 70, 0.92) 100%);
}

.stats-counter-section .stats-grid {
    position: relative;
    z-index: 1;
}

.stats-counter-section .stat-number {
    font-size: 2.5rem;
}

/* Sectors Home Section */
.sector-card {
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.sector-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.sector-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.sector-card:hover .sector-card-icon {
    background: var(--primary-color);
    color: #fff;
}

.sector-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sector-card-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Product Card V2 */
.product-card-v2 {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.product-card-v2:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-view {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,86,179,0.9) 0%, rgba(0,86,179,0.7) 100%);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: bottom 0.3s ease;
}

.product-card-v2:hover .product-card-view {
    bottom: 0;
}

.product-card-body {
    padding: 1rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-cat {
    font-size: 0.7rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: inline-block;
}

.product-card-cat:hover {
    color: var(--primary-dark);
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    transition: var(--transition);
}

.product-card-title:hover {
    color: var(--primary-color);
}

.product-card-sku {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.4rem;
}

.product-card-sku i {
    font-size: 0.7rem;
}

.product-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1.5;
}

.product-card-footer {
    padding: 0.75rem 1.15rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.product-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.product-card-link:hover {
    color: var(--primary-dark);
    gap: 0.15rem;
}

.product-card-link i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.product-card-v2:hover .product-card-link i {
    transform: translateX(3px);
}

/* Products Listing Section */
.products-listing-section {
    padding: 2.5rem 0 3rem;
}

/* Products Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.toolbar-count {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.toolbar-count strong {
    color: var(--text-color);
}

.toolbar-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-sort-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.toolbar-sort .form-select {
    width: auto;
    min-width: 160px;
    border-radius: 0.5rem;
}

/* Subcategories */
.subcategories-section {
    margin-bottom: 1.5rem;
}

.subcategories-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.subcategories-title i {
    color: var(--primary-color);
}

.subcat-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    height: 100%;
}

.subcat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,86,179,0.1);
    transform: translateY(-2px);
}

.subcat-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcat-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
}

.subcat-info {
    flex: 1;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subcat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.subcat-info i {
    color: var(--primary-color);
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.subcat-card:hover .subcat-info i {
    opacity: 1;
    transform: translateX(3px);
}

/* Empty State */
.products-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.products-empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
    opacity: 0.4;
    display: block;
    margin-bottom: 1rem;
}

.products-empty-state h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.products-empty-state p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Pagination V2 */
.pagination {
    margin-top: 2rem;
    justify-content: center;
    gap: 0.25rem;
}

.pagination .page-link {
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,86,179,0.3);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Products Listing Responsive */
@media (max-width: 991.98px) {
    .product-sidebar {
        position: static;
    }

    .products-listing-section {
        padding: 1.5rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .toolbar-sort {
        justify-content: center;
    }

    .product-card-image {
        height: 160px;
    }

    .subcat-image {
        width: 55px;
        height: 55px;
    }

    .subcat-name {
        font-size: 0.78rem;
    }
}

@media (max-width: 575.98px) {
    .product-card-image {
        height: 130px;
    }

    .product-card-body {
        padding: 0.75rem;
    }

    .product-card-title {
        font-size: 0.82rem;
    }

    .product-card-footer {
        padding: 0.6rem 0.75rem;
    }

    .product-card-desc {
        display: none;
    }

    .product-card-view {
        display: none;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-color);
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    padding: 3rem 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.page-header .btn-outline-light:hover {
    color: var(--primary-color);
}

/* Page Header Banner (with background image) */
.page-header-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85) 0%, rgba(0, 50, 120, 0.75) 100%);
}

.page-header-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-header-banner p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

/* Sidebar (legacy compat) */
.sidebar .widget {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sidebar .widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .category-list li {
    margin-bottom: 0;
}

.sidebar .category-list a {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar .category-list a:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

.sidebar .category-list .count {
    background: var(--light-color);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
}

/* Product Detail V2 */
.product-detail-v2 {
    padding: 2rem 0 3rem;
}

/* Product Sidebar */
.product-sidebar {
    position: sticky;
    top: 1rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.sidebar-widget-title i {
    color: var(--primary-color);
}

.sidebar-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li {
    margin-bottom: 0;
}

.sidebar-cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    color: var(--text-color);
    font-size: 0.9rem;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.sidebar-cat-list li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 1rem;
}

.sidebar-cat-list li a i {
    font-size: 0.7rem;
    opacity: 0.4;
    transition: var(--transition);
}

.sidebar-cat-list li a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

.sidebar-cat-list li.active a {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-cat-list li.active a i {
    opacity: 1;
    color: var(--primary-color);
}

.sidebar-widget-contact p {
    line-height: 1.5;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    color: var(--text-color);
    font-size: 0.88rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.sidebar-contact-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.sidebar-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Product Top Card */
.product-top-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

/* Product Gallery V2 */
.product-gallery-v2 {
    position: relative;
}

.product-main-image {
    position: relative;
    background: var(--light-color);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-zoom-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    z-index: 2;
}

.product-zoom-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.product-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-thumb {
    width: 68px;
    height: 68px;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-color);
}

.product-thumb:hover,
.product-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.15);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
}

/* Zoom Overlay */
.product-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-zoom-overlay.active {
    display: flex;
}

.product-zoom-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.zoom-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
}

.zoom-close-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Product Info V2 */
.product-info-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    width: fit-content;
    transition: var(--transition);
}

.product-category-badge:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-title-v2 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.product-sku-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    width: fit-content;
}

.product-sku-v2 .sku-label {
    color: var(--text-muted);
    font-weight: 500;
}

.product-sku-v2 .sku-value {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.product-short-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.product-desc-v2 {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

/* Product Inquiry Buttons */
.product-inquiry-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-product-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.25rem;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-product-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-product-email {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-product-email:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.35);
}

/* Share & Actions Bar */
.product-actions-bar {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-buttons-v2 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.share-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-right: 0.25rem;
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.share-linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: #0a66c2;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.product-extra-actions {
    display: flex;
    gap: 0.5rem;
}

/* Product Section Cards (Specs, Variants, Related) */
.product-section-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-section-header {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-color);
}

.product-section-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.product-section-header h3 i {
    color: var(--primary-color);
}

.product-section-body {
    padding: 1.5rem 1.75rem;
}

.specs-content-v2 {
    line-height: 1.9;
    color: #555;
    font-size: 0.95rem;
}

/* Variants Table V2 */
.product-variants-table thead {
    background: var(--primary-color);
}

.product-variants-table thead th {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.85rem 1rem;
    border: none;
}

.product-variants-table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.product-variants-table tbody tr {
    transition: var(--transition);
}

.product-variants-table tbody tr:hover {
    background: rgba(0, 86, 179, 0.04);
}

.product-variants-table tbody tr.table-active {
    background: rgba(0, 86, 179, 0.08);
}

.variant-thumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 0.375rem;
    background: var(--light-color);
    padding: 0.15rem;
}

.variant-code {
    background: var(--light-color);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Product Detail Responsive */
@media (max-width: 991.98px) {
    .product-sidebar {
        position: static;
    }

    .product-top-card {
        padding: 1.25rem;
    }

    .product-section-body {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .product-title-v2 {
        font-size: 1.25rem;
    }

    .product-actions-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-top-card {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .product-inquiry-buttons {
        flex-direction: column;
    }

    .btn-product-whatsapp,
    .btn-product-email {
        justify-content: center;
        width: 100%;
    }

    .product-thumbs {
        gap: 0.35rem;
    }

    .product-thumb {
        width: 55px;
        height: 55px;
    }

    .product-section-header {
        padding: 1rem 1.25rem;
    }

    .product-section-body {
        padding: 1rem 1.25rem;
    }

    .product-variants-table thead th {
        font-size: 0.75rem;
        padding: 0.65rem 0.5rem;
    }

    .product-variants-table tbody td {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* Contact Page */
.contact-section {
    padding: 3rem 0;
}

.contact-form .form-label {
    font-weight: 500;
}

.contact-info-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-box .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-box .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info-box .info-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-box .info-item p {
    color: var(--text-muted);
    margin: 0;
}

/* Dealers Page */
.dealer-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.dealer-card:hover {
    box-shadow: var(--shadow);
}

.dealer-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.dealer-card .dealer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dealer-card .dealer-info i {
    width: 20px;
    color: var(--primary-color);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.pagination .page-link {
    color: var(--text-color);
    border-color: var(--border-color);
    margin: 0 0.25rem;
    border-radius: 0.375rem;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    margin-top: 3rem;
    background: linear-gradient(180deg, #0a1628 0%, #0f2240 100%);
}

.footer .text-muted {
    color: #8fa3c0 !important;
}

.footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #8fa3c0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #8fa3c0;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #b8cbea;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #8fa3c0;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
    padding-top: 1.5rem;
    color: #6b85a8;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #8fa3c0;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Page - Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
}

.about-image-badge .badge-year {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* About Page - Stats */
.about-stats-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin: 0;
}

/* About Page - Quote */
.about-quote {
    position: relative;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 0.5rem 0.5rem 0;
}

.about-quote .bi-quote {
    position: absolute;
    top: -8px;
    left: 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.about-quote p {
    margin: 0;
    color: var(--text-color);
}

/* About Page - Why Cards */
.why-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.why-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.why-card-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* About Page - Content Cards (What We Do / Vision) */
.about-content-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.about-content-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.about-content-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.about-content-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-content-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* About Page - Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-author h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* About Page - Certificates */
.certificate-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.certificate-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

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

.certificate-label {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

/* About Page - Breadcrumb Light */
.breadcrumb-light .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* About Page - Responsive */
@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-badge {
        right: 15px;
        bottom: -15px;
    }
}

@media (max-width: 575.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .why-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .certificate-card img {
        height: 180px;
    }
}

/* Services Page - Service Cards */
.service-card-v2 {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 0 4px 0;
    transition: height 0.3s ease;
}

.service-card-v2:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.service-card-v2:hover::before {
    height: 100%;
}

.service-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.service-card-v2:hover .service-card-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-card-v2 h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card-v2 p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Services Page - Industry Cards */
.industry-card-v2 {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.industry-card-v2:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.industry-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.industry-card-v2 h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card-v2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.industry-card-v2 ul li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.industry-card-v2 ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* Services Page - Process Section */
.process-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.section-tag-light {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step-v2 {
    text-align: center;
    padding: 2rem 1.25rem;
    background: rgba(255,255,255,0.08);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}

.process-step-v2:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.25);
}

.process-step-content h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-step-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Services Page - Advantages */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.advantage-item-v2 {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.advantage-item-v2:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.advantage-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    font-size: 1rem;
}

.advantage-item-v2 h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.advantage-item-v2 p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Services Page - Responsive */
@media (max-width: 991.98px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-step-v2 {
        padding: 1.5rem 1rem;
    }

    .service-card-v2 {
        padding: 1.5rem;
    }
}

/* Contact Page - Info Cards Strip */
.contact-cards-strip {
    padding: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 1.15rem;
}

.contact-info-card h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.contact-info-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--primary-color);
}

/* Contact Page - Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.contact-form-header {
    margin-bottom: 1.5rem;
}

.contact-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form .form-control-lg {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.5rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.12);
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Page - Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-map-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
}

.contact-map-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
}

/* Contact Page - Quick Actions */
/* Contact Page - Social Icons in Info Strip */
.contact-strip-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.contact-strip-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 0.6rem;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-strip-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Page - Quick Contact Cards */
.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-3px);
    color: #fff;
}

.quick-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-contact-card h6 {
    margin-bottom: 0.15rem;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.quick-contact-card p {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.quick-contact-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c3e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.quick-contact-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.quick-contact-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.quick-contact-phone:hover {
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}

.quick-contact-email {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.quick-contact-email:hover {
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Contact Page - Responsive */
@media (max-width: 991.98px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-card {
        padding: 1.75rem;
    }

    .quick-contact-card {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-strip {
        margin-top: -1.5rem;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .quick-contact-card {
        padding: 1rem;
    }

    .quick-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-strip-social a {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* Back to Top */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow);
}

.btn-back-to-top.show {
    display: flex;
}

/* Alert Messages */
.alert {
    border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .mega-menu {
        min-width: 100%;
    }

    .hero-slider .swiper-slide {
        height: auto;
        min-height: 400px;
        padding: 2rem 0;
    }

    .hero-slider .slide-image-only {
        min-height: 300px;
    }

    .hero-slider .slide-title {
        font-size: 1.75rem;
    }

    .slide-text-only .slide-title {
        font-size: 2rem;
    }

    .slide-image-box {
        max-height: 250px;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .slide-image-box img {
        max-height: 220px;
    }

    .hero-slider .slide-content {
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }

    .category-card-image {
        height: 120px;
    }
}

@media (max-width: 767.98px) {
    .page-header-banner {
        padding: 3rem 0;
    }

    .page-header-banner h1 {
        font-size: 1.75rem;
    }

    .hero-slider .swiper-slide {
        height: auto;
        min-height: 350px;
        padding: 1.5rem 0;
    }

    .hero-slider .slide-image-only {
        min-height: 220px;
    }

    .hero-slider .slide-title {
        font-size: 1.5rem;
    }

    .slide-image-box {
        max-height: 200px;
        padding: 0.75rem;
    }

    .slide-image-box img {
        max-height: 170px;
    }

    .category-card-image {
        height: 100px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .category-card {
        height: 150px;
    }

    .product-card .product-image {
        height: 160px;
    }

    .search-form {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Bootstrap overrides */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.text-primary {
    color: var(--primary-color) !important;
}

.no-image {
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.no-image i {
    font-size: 3rem;
}

/* Homepage New Sections Responsive */
@media (max-width: 991.98px) {
    .about-intro-home-section {
        padding: 3.5rem 0;
    }

    .stats-counter-section {
        background-attachment: scroll;
    }

    .stats-counter-section .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .about-intro-home-section {
        padding: 3rem 0;
    }

    .about-intro-home-section .about-image-badge {
        right: 10px;
        bottom: 1rem;
        padding: 0.75rem 1rem;
    }

    .about-intro-home-section .about-image-badge .badge-year {
        font-size: 1.5rem;
    }

    .stats-counter-section {
        padding: 3rem 0;
    }
}

@media (max-width: 575.98px) {
    .sector-card {
        padding: 1.5rem 1rem;
    }
}
