/* ==========================================================================
   DEVELON Paraguay - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --primary-color: #ff6600;
    --primary-dark: #e55c00;
    --secondary-color: #1a1a2e;
    --dark-color: #0f0f1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --text-color: #333333;
    --white: #ffffff;
    --success-color: #28a745;
    --font-primary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.bg-dark .section-subtitle.text-orange {
    color: var(--primary-color) !important;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

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

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

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 1.5rem;
}

.top-bar-contact a:hover {
    color: var(--primary-color);
}

.top-bar-contact i {
    margin-right: 0.5rem;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1rem;
    font-size: 1rem;
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 0.75rem 0;
}

.main-header .logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-header .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.main-header .btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.main-header .btn-contact:hover {
    background-color: var(--primary-dark);
}

.main-header .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 0.5rem 0;
}

.main-header .dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

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

@media (max-width: 1199.98px) {
    .main-header .nav-link {
        font-size: 0.8125rem !important;
        padding: 0.65rem 0.75rem !important;
        letter-spacing: 0.3px !important;
    }

    .main-header .btn-contact {
        margin-left: 0.25rem;
    }
}

@media (max-width: 1024px) {
    .main-header .nav-link {
        font-size: 0.78125rem !important;
        padding: 0.6rem 0.6rem !important;
        letter-spacing: 0.25px !important;
    }
}

/* Search Toggle Button */
.search-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    padding: 0.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}
.search-toggle:hover {
    color: var(--primary-color);
}

/* Search Bar */
.search-bar-collapse {
    background: var(--secondary-color);
    padding: 1.5rem 0;
}
.search-form .input-group {
    max-width: 800px;
    margin: 0 auto;
}
.search-form .form-control {
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}
.search-form .form-control:focus {
    box-shadow: none;
}
.search-form .btn {
    border-radius: 0 4px 4px 0;
    padding: 1rem 2rem;
}

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

.hero-swiper {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
}

.hero-swiper .swiper-button-next::after {
    content: "\f054";
}

.hero-swiper .swiper-button-prev::after {
    content: "\f053";
}

.hero-swiper .swiper-button-next {
    right: 30px;
}

.hero-swiper .swiper-button-prev {
    left: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

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

/* --------------------------------------------------------------------------
   Page Header
   -------------------------------------------------------------------------- */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Product Detail Page Header - Compact */
.page-header-product {
    height: 50px;
    background: var(--secondary-color) !important;
}

.page-header-product .page-header-overlay {
    display: none;
}

.page-header-product .breadcrumb {
    margin-bottom: 0;
}

/* News Page Header - Standard */
.page-header-news {
    height: 150px;
    background: var(--secondary-color) !important;
}

.page-header-news .page-header-overlay {
    display: none;
}

/* Legacy support for page-header-sm (use page-header-product instead) */
.page-header-sm {
    height: 50px;
    background: var(--secondary-color) !important;
}

.page-header-sm .page-header-overlay {
    display: none;
}

.page-header-sm .breadcrumb {
    margin-bottom: 0;
}

/* Black icons for detailed specs */
.specs-table-detailed .text-primary {
    color: var(--secondary-color) !important;
}

/* Custom icons (SVG mask — inherits color and scales with font-size like Font Awesome) */
.icon-bucket {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3L3 14L5 14L6.5 19L8 14L10 14L11.5 19L13 14L15 14L16.5 19L18 14L21 14L22 8L20 3Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 3L3 14L5 14L6.5 19L8 14L10 14L11.5 19L13 14L15 14L16.5 19L18 14L21 14L22 8L20 3Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    vertical-align: -0.125em;
}

/* Clickable product cards */
.product-card-clickable {
    cursor: pointer;
}

/* Clickable category cards */
.category-card-clickable {
    cursor: pointer;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

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

.page-header .breadcrumb-item.active {
    color: var(--primary-color);
}

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

/* --------------------------------------------------------------------------
   Categories Section
   -------------------------------------------------------------------------- */
.categories-section {
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.125rem;
}

.category-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--text-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0;
    flex-grow: 1;
}

.category-arrow {
    color: var(--primary-color);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   About Preview Section
   -------------------------------------------------------------------------- */
.about-preview {
    background-color: var(--light-color);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    line-height: 1.3;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.about-features .feature {
    width: 50%;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.about-features .feature i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* --------------------------------------------------------------------------
   Featured Products Swiper
   -------------------------------------------------------------------------- */
.products-swiper-wrap {
    position: relative;
    padding: 0 50px;
}

.products-swiper {
    padding-bottom: 40px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.products-nav-next,
.products-nav-prev {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    position: absolute;
    top: 50%;
    margin-top: -40px;
    z-index: 10;
    cursor: pointer;
}

.products-nav-next:hover,
.products-nav-prev:hover {
    background: var(--primary-dark);
}

.products-nav-next::after {
    content: ">";
    font-size: 18px;
    font-weight: 700;
}

.products-nav-prev::after {
    content: "<";
    font-size: 18px;
    font-weight: 700;
}

.products-nav-next {
    right: 0;
}

.products-nav-prev {
    left: 0;
}

.products-swiper .swiper-pagination {
    bottom: 0;
}

.products-swiper .swiper-pagination-bullet-active {
    background: var(--dark-color);
}

/* --------------------------------------------------------------------------
   Product Cards
   -------------------------------------------------------------------------- */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    min-height: 220px;
    background: #e2e3e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.product-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.product-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 2.6em;
}

.product-info p {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.product-specs i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.product-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: auto;
}

/* --------------------------------------------------------------------------
   Related Products (Compact Cards)
   -------------------------------------------------------------------------- */
.related-products .product-image {
    height: 140px;
    min-height: 140px;
}

@media (min-width: 992px) {
    .related-products .related-product-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.product-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

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

.product-actions .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Service Cards
   -------------------------------------------------------------------------- */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.service-card-large {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.service-card-large:hover {
    box-shadow: var(--shadow-lg);
}

.service-card-large .service-icon {
    width: 100px;
    height: 100px;
}

.service-card-large .service-icon i {
    font-size: 2.5rem;
}

/* Postventa - Services Section (more compact) */
.aftersales-services {
    padding: 3rem 0;
}

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

.aftersales-services .service-card-large {
    padding: 1.5rem;
}

.aftersales-services .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.aftersales-services .service-icon i {
    font-size: 2rem;
}

.aftersales-services .col-lg-4,
.aftersales-services .col-md-6 {
    margin-bottom: 1rem !important;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
}

.cta-buttons .btn.btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
}

.cta-quote {
    background-color: var(--primary-color);
}

.cta-quote h2,
.cta-quote p {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
    background: var(--light-color);
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   MVV Section (Mission, Vision, Values)
   -------------------------------------------------------------------------- */
.mvv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Quality Section
   -------------------------------------------------------------------------- */
.quality-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.quality-list li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
}

.quality-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* --------------------------------------------------------------------------
   Brand Section
   -------------------------------------------------------------------------- */
.brand-section {
    background: var(--dark-color);
}

.brand-logo {
    max-height: 80px;
    margin: 1rem;
}

/* --------------------------------------------------------------------------
   Why Choose Section
   -------------------------------------------------------------------------- */
.why-card {
    text-align: center;
    padding: 2rem 1rem;
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h4 {
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Product Categories Page
   -------------------------------------------------------------------------- */
.category-card-large {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.category-card-large:hover {
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: var(--transition);
}

.category-card-large:hover .category-image img {
    transform: scale(1.05);
}

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

.product-count {
    color: var(--white);
    font-weight: 500;
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.category-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Horizontal Category Card */
.category-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.category-card-horizontal:hover {
    box-shadow: var(--shadow-lg);
}

.category-image-horizontal {
    position: relative;
    width: 40%;
    min-width: 200px;
    background: #e2e3e5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.category-image-horizontal img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.category-card-horizontal:hover .category-image-horizontal img {
    transform: scale(1.05);
}

.category-image-horizontal .product-count {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.category-info-horizontal {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-info-horizontal h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.category-info-horizontal p {
    color: var(--gray-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .category-card-horizontal {
        flex-direction: column;
    }
    .category-image-horizontal {
        width: 100%;
        min-height: 180px;
    }
}

/* --------------------------------------------------------------------------
   Feature Box
   -------------------------------------------------------------------------- */
.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-box h4 {
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Product Detail Page
   -------------------------------------------------------------------------- */
.product-gallery .main-image {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.product-gallery .main-image img {
    width: 100%;
}

.product-info-detail .product-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-info-detail h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.product-specifications {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.product-specifications h4 {
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
}

.specs-table tr td {
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr td:first-child {
    color: var(--gray-color);
}

.specs-table tr td:first-child i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.specs-table tr td:last-child {
    font-weight: 600;
    text-align: right;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h4 {
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.25rem 0;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.product-actions-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-support .support-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--gray-color);
}

.product-support .support-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   Other Categories Links
   -------------------------------------------------------------------------- */
.other-category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
    font-size: 0.85rem;
    transition: var(--transition);
    height: 100%;
    min-height: 130px;
    text-decoration: none;
}

.other-category-link img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.other-category-link span {
    line-height: 1.3;
    font-weight: 500;
}

.other-category-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.other-category-link:hover img {
    filter: brightness(0) invert(1);
}

/* --------------------------------------------------------------------------
   Aftersales Page
   -------------------------------------------------------------------------- */
.parts-benefits {
    list-style: none;
    padding: 0;
}

.parts-benefits li {
    padding: 0.25rem 0;
}

.parts-benefits li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.aftersales-intro .btn,
.parts-section .btn,
.develoncare-section .btn,
.mydevelon-section .btn,
.aftersales-contact .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
}

.aftersales-contact .btn.btn-lg {
    padding: 0.6rem 1.25rem;
    font-size: 0.8125rem;
}

.develoncare-features {
    margin: 2rem 0;
}

.develoncare-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}

.develoncare-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
}

.develoncare-logo {
    max-width: 300px;
}

.service-form-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.contact-info-box li {
    padding: 0.3rem 0;
}

.contact-info-box li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    width: 20px;
}

/* --------------------------------------------------------------------------
   News Page
   -------------------------------------------------------------------------- */
.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 0.75rem;
}

.news-date {
    color: var(--gray-color);
    font-size: 0.85rem;
}

.news-date i {
    margin-right: 0.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.news-content h3 a {
    color: var(--secondary-color);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-content p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   News Detail Page
   -------------------------------------------------------------------------- */
.article-detail {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-header {
    padding: 2rem;
}

.article-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-meta {
    color: var(--gray-color);
}

.article-date i {
    margin-right: 0.5rem;
}

.article-featured-image img {
    width: 100%;
}

.article-body {
    padding: 2rem;
}

.article-body p {
    margin-bottom: 1rem;
}

.article-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.35rem;
}

.article-share {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.related-article {
    margin-bottom: 1rem;
}

.related-article a {
    display: flex;
    gap: 1rem;
    color: var(--text-color);
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.related-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.related-info .date {
    font-size: 0.75rem;
    color: var(--gray-color);
}

.cta-widget {
    background: var(--primary-color);
    color: var(--white);
}

.cta-widget h4 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cta-widget p {
    opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Newsletter Section
   -------------------------------------------------------------------------- */
.newsletter-form .form-control {
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

/* --------------------------------------------------------------------------
   Locations Page
   -------------------------------------------------------------------------- */
.location-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.location-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.location-header i {
    font-size: 2rem;
    margin-right: 1rem;
}

.location-header h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.25rem;
}

.location-body {
    padding: 1.5rem;
}

.location-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.location-info li {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.location-info li:last-child {
    border-bottom: none;
}

.location-info li i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    margin-top: 0.25rem;
}

.location-info li a {
    color: var(--text-color);
}

.location-info li a:hover {
    color: var(--primary-color);
}

.locations-map {
    height: 400px;
    background: #e9ecef;
}

.service-available-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%;
}

.service-available-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-available-card h4 {
    margin-bottom: 0.5rem;
}

.service-available-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--gray-color);
}

.contact-text a {
    color: var(--gray-color);
}

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

.contact-social h4 {
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--secondary-color);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-form-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-map iframe {
    display: block;
}

.quick-contact-item {
    padding: 2rem 1rem;
}

.quick-contact-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-contact-item h4 {
    margin-bottom: 0.5rem;
}

.quick-contact-item p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.footer-contact li {
    display: flex;
    margin-bottom: 0.6rem;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: var(--dark-color);
    padding: 1rem 0;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* --------------------------------------------------------------------------
   WhatsApp Float Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128c7e;
    color: var(--white);
    transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   Responsive Styles
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-slide {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .top-bar {
        display: none;
    }

    .main-header .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: var(--shadow-lg);
    }

    .main-header .btn-contact {
        margin-left: 0;
        margin-top: 0.5rem;
        display: block;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .page-header {
        height: 200px;
    }

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

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .about-features .feature {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .product-actions-detail {
        flex-direction: column;
    }

    .product-actions-detail .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .category-card {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
