/* ========================================
   CUSTOM ROOT COLORS - BRAND THEME
======================================== */

:root {
    --primary-color: #daa522;
    --primary-hover: #c49420;
    --primary-light: #fef8e7;
    --secondary-color: #2e4519;
    --secondary-hover: #1f2f11;
    --secondary-light: #e8ede5;
}

/* ========================================
   TRENDING SECTION STYLES
======================================== */

/* Trending Section Background */
.bz-trending-2 {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.bz-trending-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.bz-trending-2 .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.trending-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.trending-section-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 400;
}

/* Trending Wrap - Flex Layout */
.bz-trending-wrap-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    padding: 0;
}

.bz-trending-wrap-2 > * {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

/* Trending Card */
.trending-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trending-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.bz-trending-item-img-2 {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.bz-trending-item-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trending-card:hover .bz-trending-item-img-2 img {
    transform: scale(1.15);
}

/* Overlay */
.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.trending-card:hover .trending-overlay {
    opacity: 0.8;
}

/* Product Count Badge */
.product-count-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.trending-card:hover .product-count-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-count-badge i {
    margin-right: 5px;
}

/* Content Area */
.bz-trending-item-content-2 {
    padding: 30px 25px;
    position: relative;
}

.category-number {
    position: absolute;
    top: -25px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    z-index: 0;
}

.bz-trending-item-content-2 .title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.bz-trending-item-content-2 .title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.bz-trending-item-content-2 .title a:hover {
    color: var(--primary-color);
}

.collection-text {
    font-weight: 400;
    font-size: 0.9em;
    color: #666;
}

.category-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* More Link */
.more-link-2 {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.more-link-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.more-link-2:hover::after {
    width: 100%;
}

.more-link-2 i {
    transition: transform 0.3s ease;
}

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

/* Item Specific Border Colors */
.bz-item-1 .trending-card {
    border-top: 4px solid var(--primary-color);
}

.bz-item-2 .trending-card {
    border-top: 4px solid var(--secondary-color);
}

.bz-item-3 .trending-card {
    border-top: 4px solid var(--primary-color);
}

.bz-item-4 .trending-card {
    border-top: 4px solid var(--secondary-color);
}

/* Trending Section Responsive */
@media (max-width: 768px) {
    .trending-section-title {
        font-size: 2rem;
    }
    
    .bz-trending-wrap-2 {
        gap: 20px;
    }
    
    .bz-trending-wrap-2 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .bz-trending-item-img-2 {
        height: 280px;
    }
    
    .bz-trending-item-content-2 .title {
        font-size: 1.4rem;
    }
    
    .category-number {
        font-size: 3rem;
        top: -20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bz-trending-wrap-2 > * {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 1025px) {
    .bz-trending-wrap-2 > * {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}


/* ========================================
   CATEGORY FILTER SECTION STYLES
======================================== */

.category-filter-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
}

/* Category Navigation Pills */
.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: #f0f0f0;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.nav-pills .nav-link .badge {
    font-size: 0.75rem;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.card-img-wrapper {
    height: 250px;
    background: #f5f5f5;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-img-wrapper .badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.card-title a {
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.card-title a:hover {
    color: var(--primary-color) !important;
}

/* Custom Button */
.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(218, 165, 34, 0.3);
}

/* Category Filter Section Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .card-img-wrapper {
        height: 200px;
    }
    
    .nav-pills .nav-link {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}


/* ========================================
   E-CATALOGUE SECTION STYLES
======================================== */

.ecatalogue-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Background Patterns */
.bg-pattern-left,
.bg-pattern-right {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.bg-pattern-left {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.bg-pattern-right {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
}

/* Image Section */
.ecatalogue-image-wrapper {
    position: relative;
    padding: 20px;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    transform: rotate(-3deg);
    opacity: 0.2;
    z-index: 0;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: transform 0.4s ease;
}

.image-container:hover {
    transform: translateY(-10px);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-badge i {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Decorative Circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
}

/* Content Section */
.ecatalogue-content {
    padding: 0 20px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ecatalogue-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.2;
    z-index: -1;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 25px;
}

.ecatalogue-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

/* Features List */
.features-list {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.feature-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* E-Catalogue Button */
.btn-ecatalogue {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(218, 165, 34, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-ecatalogue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-ecatalogue:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ecatalogue:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218, 165, 34, 0.4);
}

.btn-ecatalogue span {
    position: relative;
    z-index: 1;
}

.btn-ecatalogue i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-ecatalogue:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .ecatalogue-title {
        font-size: 2.5rem;
    }
    
    .ecatalogue-content {
        padding: 0;
        margin-top: 30px;
    }
    
    .ecatalogue-image-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .ecatalogue-section {
        padding: 60px 0;
    }
    
    .ecatalogue-title {
        font-size: 2rem;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .btn-ecatalogue {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ecatalogue-title {
        font-size: 1.75rem;
    }
    
    .features-list {
        margin-bottom: 25px;
    }
    
    .feature-item {
        gap: 15px;
    }
}



/* ========================================
   NEW ARRIVAL SECTION - MODERN DESIGN
======================================== */

.bz-new-arrival-area-2 {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Section Header */
.arrival-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.arrival-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.title-decoration .line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.title-decoration .dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.arrival-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Product Card */
.arrival-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Image Wrapper */
.arrival-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.arrival-slider {
    width: 100%;
    height: 100%;
}

.arrival-img-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.arrival-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.arrival-product-card:hover .arrival-img-container img {
    transform: scale(1.1);
}

/* New Badge */
.arrival-new-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.arrival-new-badge i {
    margin-right: 5px;
}

/* Overlay */
.arrival-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

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

.arrival-quick-view {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.arrival-product-card:hover .arrival-quick-view {
    transform: translateY(0);
}

.arrival-quick-view:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-5px);
}

/* Slider Navigation */
.arrival-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 8;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.arrival-product-card:hover .arrival-slider-nav {
    opacity: 1;
}

.arrival-prev,
.arrival-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.arrival-prev:hover,
.arrival-next:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.arrival-prev i,
.arrival-next i {
    font-size: 0.9rem;
}

/* Pagination */
.arrival-pagination {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 8;
}

.arrival-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.arrival-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-color);
}

/* Product Content */
.arrival-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.arrival-product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 56px;
}

.arrival-product-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.arrival-product-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    min-height: 72px;
}

/* Footer */
.arrival-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.arrival-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.arrival-view-btn:hover {
    color: var(--primary-hover);
}

.arrival-view-btn i {
    transition: transform 0.3s ease;
}

.arrival-view-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .arrival-img-container {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .arrival-main-title {
        font-size: 2.5rem;
    }
    
    .arrival-img-container {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .arrival-main-title {
        font-size: 2rem;
    }
    
    .arrival-img-container {
        height: 300px;
    }
    
    .arrival-product-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .arrival-product-desc {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .arrival-slider-nav {
        opacity: 1;
    }
    
    .arrival-overlay {
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .arrival-quick-view {
        transform: translateY(0);
        padding: 12px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .arrival-main-title {
        font-size: 1.75rem;
    }
    
    .arrival-img-container {
        height: 280px;
    }
    
    .arrival-label {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
    
    .title-decoration .line {
        width: 40px;
    }
}



/* ========================================
   FEATURES SECTION - MODERN DESIGN
======================================== */

.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.features-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -80px;
    left: -80px;
}

/* Section Header */
.features-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.features-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.features-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.features-decoration .deco-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.features-decoration .deco-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Feature Card */
.feature-card {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Icon Wrapper */
.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(360deg);
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Icon Colors */
.icon-support .icon-bg {
    background: var(--secondary-color);
}

.icon-support i {
    color: var(--secondary-color);
}

.icon-quality .icon-bg {
    background: var(--primary-color);
}

.icon-quality i {
    color: var(--primary-color);
}

.icon-price .icon-bg {
    background: var(--primary-color);
}

.icon-price i {
    color: var(--primary-color);
}

.feature-card:hover .icon-bg {
    transform: scale(1.2);
    opacity: 0.25;
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.1);
}

/* Feature Number */
.feature-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-number {
    color: rgba(0, 0, 0, 0.06);
    transform: scale(1.1);
}

/* Feature Title */
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

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

/* Feature Description */
.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .features-main-title {
        font-size: 2.5rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .features-main-title {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .feature-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }
    
    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 25px;
    }
    
    .feature-icon-wrapper i {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .features-main-title {
        font-size: 1.75rem;
    }
    
    .features-badge {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
    
    .features-decoration .deco-line {
        width: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}


/* ========================================
   HERO SLIDER - SIMPLE & CLEAN
======================================== */

.bz-slider-area-2 {
    position: relative;
    overflow: hidden;
}

.bz-slider-active-2 {
    width: 100%;
    height: 600px;
}

.bz-single-slider-2 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Overlay */
.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Pagination */
.slider-swiper-pagination-2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-swiper-pagination-2 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-swiper-pagination-2 .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .bz-slider-active-2 {
        height: 550px;
    }
}

@media (max-width: 991px) {
    .bz-slider-active-2 {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .bz-slider-active-2 {
        height: 450px;
    }
    
    .slider-swiper-pagination-2 {
        bottom: 20px;
    }
}

@media (max-width: 575px) {
    .bz-slider-active-2 {
        height: 400px;
    }
}

@media (max-width: 400px) {
    .bz-slider-active-2 {
        height: 350px;
    }
}


/* ========================================
   ABOUT US PAGE STYLES
======================================== */

/* Page Header */
.page-header-section {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('https://www.rudrramoverseas.com/new/wp-content/uploads/2026/01/headerbanner.png');
	z-index: 1;
	background-repeat: no-repeat;
	background-size: 100%;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.6);
    margin-right: 15px;
}

/* Header Shapes */
.header-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
}

/* About Content Section */
.about-content-section {
    background: #f8f9fa;
}

/* Section Labels & Titles */
.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.title-decoration {
    display: flex;
    align-items: center;
    gap: 10px;
}

.title-decoration .line {
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.title-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

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

.about-image-wrapper img {
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.about-badge i {
    font-size: 2rem;
}

/* About Text */
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Feature Cards */
.about-feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.about-feature-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.about-feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Detail Box */
.about-detail-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.detail-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Mission Section */
.mission-image-wrapper {
    position: relative;
}

.mission-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-image-wrapper:hover .mission-overlay {
    opacity: 0.9;
}

.mission-overlay i {
    font-size: 3rem;
    color: #fff;
}

.mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.mission-points {
    margin-top: 30px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.mission-point i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Commitment Box */
.commitment-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
}

.commitment-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.commitment-icon i {
    font-size: 4rem;
}

.commitment-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.commitment-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: #fff;
}

.stat-card {
    padding: 30px;
    background: var(--primary-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-detail-box {
        padding: 30px;
    }
    
    .commitment-box {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .about-detail-box {
        padding: 25px;
    }
    
    .detail-title {
        font-size: 1.5rem;
    }
    
    .commitment-box {
        padding: 30px 20px;
    }
    
    .commitment-title {
        font-size: 1.5rem;
    }
}


/* ========================================
   E-CATALOGUE PAGE STYLES
======================================== */

/* E-Catalogue Section */
.ecatalogue-page-section {
    background: #f8f9fa;
}

/* Section Header */
.catalogue-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.catalogue-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.catalogue-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.catalogue-decoration .deco-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.catalogue-decoration .deco-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.catalogue-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Catalogue Card */
.catalogue-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.catalogue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Catalogue Image */
.catalogue-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f5f5f5;
}

.catalogue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalogue-card:hover .catalogue-image {
    transform: scale(1.1);
}

/* Overlay */
.catalogue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.catalogue-overlay i {
    font-size: 3rem;
    color: #fff;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.catalogue-card:hover .catalogue-overlay i {
    transform: scale(1);
}

/* Size Badge */
.catalogue-size-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Catalogue Content */
.catalogue-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalogue-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.catalogue-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Download Button */
.catalogue-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.catalogue-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.catalogue-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.catalogue-download-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.catalogue-download-btn span,
.catalogue-download-btn i {
    position: relative;
    z-index: 1;
}

.catalogue-download-btn i {
    transition: transform 0.3s ease;
}

.catalogue-download-btn:hover i {
    transform: translateY(3px);
}

/* Decorative Corner */
.catalogue-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.1;
}

/* Info Box */
.catalogue-info-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
}

.info-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.info-icon i {
    font-size: 3rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 25px;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.info-btn i {
    transition: transform 0.3s ease;
}

.info-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .catalogue-main-title {
        font-size: 2.5rem;
    }
    
    .catalogue-image-wrapper {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .catalogue-main-title {
        font-size: 2rem;
    }
    
    .catalogue-image-wrapper {
        height: 300px;
    }
    
    .catalogue-content {
        padding: 25px;
    }
    
    .catalogue-title {
        font-size: 1.2rem;
    }
    
    .catalogue-info-box {
        padding: 40px 30px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .catalogue-main-title {
        font-size: 1.75rem;
    }
    
    .catalogue-image-wrapper {
        height: 280px;
    }
    
    .catalogue-download-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .catalogue-info-box {
        padding: 30px 20px;
    }
} 



/* ========================================
   FAQ PAGE STYLES
======================================== */

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

/* Section Header */
.faq-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.faq-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.faq-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-decoration .deco-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.faq-decoration .deco-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* FAQ Accordion */
.faq-accordion {
    border: none;
}

.faq-item {
    background: #fff;
    border: none;
    border-radius: 15px !important;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* FAQ Button */
.faq-button {
    background: #fff;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-color);
}

.faq-button:focus {
    box-shadow: none;
    border: none;
}

.faq-button::after {
    display: none;
}

/* FAQ Number */
.faq-number {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-button:not(.collapsed) .faq-number {
    background: var(--primary-color);
    color: #fff;
}

/* FAQ Question */
.faq-question {
    flex: 1;
    text-align: left;
}

/* FAQ Icon */
.faq-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-button.collapsed .faq-icon {
    transform: rotate(0deg);
}

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 30px 25px 95px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

/* Contact Box */
.faq-contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon i {
    font-size: 2.5rem;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 1.05rem;
    opacity: 0.95;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .faq-main-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .faq-main-title {
        font-size: 2rem;
    }
    
    .faq-button {
        padding: 20px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .faq-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px 75px;
        font-size: 1rem;
    }
    
    .faq-contact-box {
        padding: 30px 25px;
        text-align: center;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .faq-main-title {
        font-size: 1.75rem;
    }
    
    .faq-button {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}


/* ========================================
   CONTACT PAGE STYLES
======================================== */

/* Contact Info Section */
.contact-info-section {
    background: #f8f9fa;
}

/* Section Header */
.contact-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-decoration .deco-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.contact-decoration .deco-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.phone-icon {
    background: var(--secondary-light);
    color: var(--secondary-color);
}

.email-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.address-icon {
    background: var(--primary-light);
    color: var(--primary-color);
}

.contact-info-card:hover .info-icon {
    transform: rotateY(360deg);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.info-text {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.info-text a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.info-label {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
}

.contact-form-wrapper,
.map-wrapper {
    height: 100%;
}

.form-header,
.map-header {
    margin-bottom: 30px;
}

.form-title,
.map-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-subtitle,
.map-subtitle {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
}

/* Contact Form 7 Styling */
.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(218, 165, 34, 0.1);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CF7 Validation Messages */
.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.wpcf7-validation-errors {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.wpcf7-mail-sent-ng {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.wpcf7-spam-blocked {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Spinner */
.wpcf7-spinner {
    margin-left: 10px;
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* CTA Section */
.contact-cta-section {
    background: #f8f9fa;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 50px;
    border-radius: 20px;
    color: #fff;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.05rem;
    opacity: 0.95;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .form-title,
    .map-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .page-header-section {
        height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-cta-box {
        padding: 40px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .contact-main-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 350px;
    }
}





/* ========================================
   SEARCH RESULTS PAGE STYLES
======================================== */

.search-results-section {
    background: #f8f9fa;
}

/* Search Info Box */
.search-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.search-info-meta {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
}

/* Search Result Card */
.search-result-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.result-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.search-result-card:hover .result-image {
    transform: scale(1.1);
}

.result-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.result-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.result-meta {
    margin-bottom: 12px;
}

.result-date {
    font-size: 0.9rem;
    color: #999;
}

.result-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.result-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: var(--primary-color);
}

.result-excerpt {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.result-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.result-read-more:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* No Results */
.no-results-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.no-results-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.no-results-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-results-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
}

/* Pagination */
.search-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-pagination a,
.search-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    color: #666;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-pagination a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.search-pagination .current {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .search-info-box {
        padding: 20px;
    }
    
    .search-info-title {
        font-size: 1.5rem;
    }
    
    .result-image-wrapper {
        height: 220px;
    }
}


/* ========================================
   HEADER SEARCH - MODERN DESIGN
======================================== */

.header-search-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

/* Category Dropdown */
.category-dropdown-wrapper {
    position: relative;
    flex-shrink: 0
    
}

.category-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.category-dropdown-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.dropdown-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.dropdown-text {
    flex: 1;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-arrow {
    font-size: 0.9rem;
    color: #666;
    transition: transform 0.3s ease;
}

.category-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.category-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 350px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 450px;
    display: flex;
    flex-direction: column;
}

.category-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.category-dropdown-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.dropdown-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-close:hover {
    background: #e0e0e0;
    color: var(--primary-color);
}

.category-dropdown-list {
    overflow-y: auto;
    padding: 10px;
}

.category-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.category-dropdown-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.category-dropdown-list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Category Item */
.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-item:hover {
    background: #f8f9fa;
}

.category-item.active {
    background: var(--primary-light);
}

.category-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item.active .category-icon {
    background: var(--primary-color);
    color: #fff;
}

.category-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.category-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-item.active .category-icon i {
    color: #fff;
}

.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.category-count {
    font-size: 0.85rem;
    color: #999;
}

.category-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.category-item.active .category-check {
    opacity: 1;
    transform: scale(1);
}

/* Search Form */
.search-form-wrapper {
    flex: 1;
}

.header-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.search-icon {
    position: absolute;
    left: 20px;
    font-size: 1.1rem;
    color: #999;
    pointer-events: none;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px 12px 50px;
    font-size: 1rem;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background: var(--primary-hover);
}

.search-submit-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.search-submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1199px) {
    .category-dropdown-btn {
        min-width: 160px;
        padding: 10px 15px;
    }
    
    .dropdown-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .header-search-wrapper {
        display: none;
    }
}



/* ========================================
   POST LIST PAGE STYLES
======================================== */

.posts-list-section {
    background: #f8f9fa;
    min-height: 70vh;
}

/* ========================================
   SIDEBAR STYLES
======================================== */

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

.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Search Widget */
.search-input-group {
    position: relative;
    display: flex;
}

.sidebar-search-input {
	flex: 1;
	padding: 12px 0px 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.sidebar-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.sidebar-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search-btn:hover {
    background: var(--primary-hover);
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

.category-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cat-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.category-link.active .cat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cat-name {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.category-link.active .cat-name {
    color: #fff;
}

.cat-count {
    background: #e0e0e0;
    color: #666;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-link.active .cat-count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Sort Widget */
.sort-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sort-option:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.sort-option.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.sort-option i {
    font-size: 1.1rem;
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.recent-post-item:hover {
    background: #f8f9fa;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumb {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.5rem;
}

.recent-post-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-date {
    font-size: 0.8rem;
    color: #999;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    padding: 8px 15px;
    background: #f8f9fa;
    color: #666;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.tag-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ========================================
   MAIN CONTENT STYLES
======================================== */

/* Filter Bar */
.posts-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.results-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.clear-filters-btn {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    color: #666;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-image {
    transform: scale(1.1);
}

.post-no-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 2;
}

.post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.post-date,
.post-comments {
    font-size: 0.85rem;
    color: #999;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.post-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-read-more:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Pagination */
.posts-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.posts-pagination a,
.posts-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    color: #666;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.posts-pagination a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.posts-pagination .current {
    background: var(--primary-color);
    color: #fff;
}

/* No Posts */
.no-posts-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.no-posts-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.no-posts-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-posts-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .posts-filter-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}


/* Category Description */
.category-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* No Posts Actions */
.no-posts-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}



/* ========================================
   PRODUCT DETAIL PAGE STYLES
======================================== */

.product-detail-section {
    background: #f8f9fa;
}

/* ========================================
   PRODUCT GALLERY - FIXED
======================================== */

.product-gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.main-product-slider {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    width: 100%;
    max-width: 100%;
}

.main-product-slider .swiper-wrapper {
    width: 100%;
    max-width: 100%;
}

.main-product-slider .swiper-slide {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
}

.main-product-image {
    width: 100%;
    max-width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.main-product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-next,
.main-prev {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
}

.main-next::after,
.main-prev::after {
    font-size: 1.2rem;
}

/* Thumbnail Slider - FULLY FIXED */
.thumb-product-slider {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
}

.thumb-product-slider .swiper-wrapper {
    width: 100%;
    max-width: 100%;
}

.thumb-product-slider .swiper-slide {
    width: calc(25% - 7.5px) !important;
    flex-shrink: 0;
}

.thumb-product-image {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.thumb-product-slider .swiper-slide-thumb-active .thumb-product-image {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.thumb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-product-image {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #ccc;
}

.no-product-image i {
    font-size: 5rem;
    margin-bottom: 20px;
}

/* ========================================
   PRODUCT INFO
======================================== */

.product-info-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
}

.product-short-desc {
    margin-bottom: 30px;
}

.product-short-desc p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Product Specifications */
.product-specifications {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

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

.spec-label {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.spec-value {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.email-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
}

.email-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.call-btn {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
}

.call-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.enquiry-btn {
    background: var(--primary-color);
    color: #fff;
}

.enquiry-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   TABS SECTION
======================================== */

.product-tabs-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.product-tabs-nav {
    border-bottom: 2px solid #e0e0e0;
    padding: 0 30px;
}

.product-tabs-nav .nav-link {
    padding: 20px 30px;
    font-weight: 600;
    color: #666;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
}

.product-tabs-nav .nav-link:hover {
    color: var(--primary-color);
}

.product-tabs-nav .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: transparent;
}

.product-tabs-content {
    padding: 40px;
}

/* Description Content */
.description-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #666;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4 {
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.description-content p {
    margin-bottom: 20px;
}

.description-content ul,
.description-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.description-content li {
    margin-bottom: 10px;
}

/* Features Table */
.features-table-wrapper {
    overflow-x: auto;
}

.features-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.features-table tr {
    border-bottom: 1px solid #e0e0e0;
}

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

.features-table td {
    padding: 20px;
    vertical-align: top;
}

.feature-name {
    width: 40%;
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.feature-value {
    width: 60%;
    color: #666;
}

/* ========================================
   RELATED PRODUCTS - FIXED
======================================== */

.related-products-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.related-products-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.related-products-slider .swiper-wrapper {
    display: flex;
    width: 100%;
}

.related-products-slider .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

.related-product-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.related-product-image .no-thumb {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.related-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.related-product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.related-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
    flex-grow: 1;
}

.related-product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.related-view-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.related-view-btn:hover {
    transform: translateX(5px);
}

.related-next,
.related-prev {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
}

.related-next::after,
.related-prev::after {
    font-size: 1rem;
}

/* ========================================
   ENQUIRY MODAL
======================================== */

.enquiry-form-wrapper {
    padding: 20px 0;
}

#enquiryModal .modal-content {
    border-radius: 20px;
    border: none;
}

#enquiryModal .modal-header {
    background: var(--primary-light);
    border-bottom: none;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
}

#enquiryModal .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

#enquiryModal .modal-body {
    padding: 30px;
}

#enquiryModal .btn-close {
    background-size: 20px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .product-title {
        font-size: 2rem;
    }
    
    .main-product-image {
        height: 400px;
    }
    
    .product-info-wrapper {
        padding: 30px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        min-width: auto;
    }
    
    .thumb-product-slider .swiper-slide {
        width: calc(33.33% - 6.67px) !important;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 1.75rem;
    }
    
    .main-product-image {
        height: 350px;
    }
    
    .product-info-wrapper {
        padding: 25px;
    }
    
    .product-tabs-nav {
        padding: 0 15px;
    }
    
    .product-tabs-nav .nav-link {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .product-tabs-content {
        padding: 25px;
    }
    
    .related-products-section {
        padding: 30px 20px;
    }
    
    .related-title {
        font-size: 1.5rem;
    }
    
    .related-next,
    .related-prev {
        width: 35px;
        height: 35px;
    }
    
    .features-table td {
        padding: 15px;
        display: block;
        width: 100% !important;
    }
    
    .feature-name {
        border-bottom: none;
    }
    
    .thumb-product-slider .swiper-slide {
        width: calc(33.33% - 6.67px) !important;
    }
}

@media (max-width: 575px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-meta {
        gap: 15px;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
    
    .main-product-image {
        height: 300px;
        padding: 15px;
    }
    
    .thumb-product-image {
        height: 80px;
    }
    
    .thumb-product-slider .swiper-slide {
        width: calc(33.33% - 6.67px) !important;
    }
}




/* ========================================
   VIEW MORE BUTTONS
======================================== */

.view-more-wrapper {
    margin-top: 40px;
}

/* Standard View More Button */
.view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.view-more-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

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

/* Large View More Button */
.view-more-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.view-more-btn-large:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.view-more-btn-large i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.view-more-btn-large:hover i {
    transform: translateX(8px);
}

/* Outline View More Button */
.view-more-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.view-more-btn-outline i {
    transition: transform 0.3s ease;
}

.view-more-btn-outline:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 767px) {
    .view-more-wrapper {
        margin-top: 30px;
    }
    
    .view-more-btn,
    .view-more-btn-outline {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .view-more-btn-large {
        padding: 15px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .view-more-btn,
    .view-more-btn-outline,
    .view-more-btn-large {
        width: 100%;
        max-width: 300px;
    }
}


/* ========================================
   TOP HEADER BAR
======================================== */

.top-header-bar {
    background: var(--primary-color);
    padding: 10px 0;
    color: #fff;
}

.top-header-left,
.top-header-right {
    display: flex;
    align-items: center;
}

.top-header-right {
    justify-content: flex-end;
}

.top-header-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.top-header-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.top-header-item i {
    font-size: 1rem;
}

.top-header-center {
    text-align: center;
}

.welcome-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.welcome-text i {
    animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

/* ========================================
   MOBILE SEARCH & CATEGORIES
======================================== */

.mobile-search-wrapper {
    padding: 0 20px;
}

.mobile-search-form {
    width: 100%;
}

.mobile-search-input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.mobile-search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.95rem;
    background: transparent;
}

.mobile-search-input:focus {
    outline: none;
}

.mobile-search-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-search-btn:hover {
    background: var(--primary-hover);
}

/* Mobile Categories */
.mobile-categories-wrapper {
    padding: 0 20px;
}

.mobile-categories-header {
    padding: 15px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 15px;
}

.mobile-categories-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
}

.mobile-categories-list {
    max-height: 300px;
    overflow-y: auto;
}

.mobile-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-category-item:hover {
    background: var(--primary-light);
}

.mobile-cat-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mobile-cat-name {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.mobile-cat-count {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.mobile-categories-list::-webkit-scrollbar {
    width: 5px;
}

.mobile-categories-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.mobile-categories-list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* ========================================
   MOBILE SIDEBAR
======================================== */

.side-info {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: all 0.4s ease;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.side-info.info-open {
    left: 0;
}

.bz-sidebar-logo-wrapper {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.bz-sidebar-logo img {
    max-width: 150px;
}

.bz-sidebar-close {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bz-sidebar-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Styling - FIXED */
.bz-sidebar-menu-wrapper {
    padding: 20px;
}

.bz-mobile-menu {
    background: #fff;
}

.bz-mobile-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.bz-mobile-menu li {
    border-bottom: 1px solid #eee !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bz-mobile-menu li:last-child {
    border-bottom: none !important;
}

.bz-mobile-menu a {
    display: block !important;
    padding: 15px 20px !important;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.bz-mobile-menu a:hover {
    background: #f8f9fa !important;
    color: var(--primary-color) !important;
    padding-left: 25px !important;
}

.bz-mobile-menu .sub-menu {
    padding-left: 20px !important;
    background: #f8f9fa !important;
    display: none !important;
}

.bz-mobile-menu .sub-menu.active {
    display: block !important;
}

.bz-mobile-menu .sub-menu a {
    font-size: 0.9rem !important;
    padding: 12px 20px !important;
}

.mobile-arrow {
    float: right;
    transition: transform 0.3s ease;
}

.mobile-arrow.rotated {
    transform: rotate(180deg);
}

/* ========================================
   HEADER BAR - MOBILE TOGGLE
======================================== */

.bz-header-bar {
    display: flex;
    align-items: center;
}

.bz-header-bar .side-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bz-header-bar .side-toggle:hover {
    background: var(--primary-color);
    color: #fff;
}

.bz-header-bar .side-toggle i {
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 767px) {
    .top-header-bar {
        padding: 8px 0;
    }
    
    .top-header-item {
        font-size: 0.85rem;
    }
    
    .top-header-item span {
        display: none;
    }
    
    .top-header-item i {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .top-header-item {
        font-size: 0.8rem;
    }
    
    .side-info {
        width: 280px;
        left: -280px;
    }
}

/* Mobile menu full width */
@media (max-width: 991px) {
    #mycustomMmenu {
        width: 100%;
    }

    #mycustomMmenu ul {
        padding: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }

    #mycustomMmenu ul li {
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    #mycustomMmenu ul li a {
        display: block;
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
        line-height: 1.4;
        text-decoration: none;
    }

    #mycustomMmenu ul li:last-child {
        border-bottom: none;
    }
}



/* ========================================
   DESKTOP MENU FIX - CORRECT COLORS
======================================== */

.bz-header-menu {
    display: flex;
    align-items: center;
    background: transparent;
}

.bz-header-menu nav {
    width: 100%;
    background: transparent;
}

.bz-header-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    background: transparent;
}

.bz-header-menu nav ul li {
    position: relative;
    display: inline-block;
    background: transparent;
}

.bz-header-menu nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 5px;
    display: block;
    transition: color 0.3s ease;
    background: transparent;
}

.bz-header-menu nav ul li a:hover {
    color: var(--primary-color);
}

/* Submenu if exists */
.bz-header-menu nav ul li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 999;
    list-style: none;
    border-radius: 10px;
}

.bz-header-menu nav ul li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.bz-header-menu nav ul li .sub-menu li {
    display: block;
    width: 100%;
    background: transparent;
}

.bz-header-menu nav ul li .sub-menu li a {
    padding: 10px 20px;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    background: transparent;
    color: #333;
}

.bz-header-menu nav ul li .sub-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

/* Desktop only - hide mobile styles */
@media (min-width: 992px) {
    .bz-header-menu nav ul {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        background: transparent !important;
    }
    
    .bz-header-menu nav ul li {
        display: inline-block !important;
        width: auto !important;
        border-bottom: none !important;
        background: transparent !important;
    }
    
    .bz-header-menu nav ul li a {
        padding: 10px 5px !important;
        border-bottom: none !important;
        background: transparent !important;
        color: #fff !important;
    }
    
    .bz-header-menu nav ul li a:hover {
        color: #fff!important;
        background: transparent !important;
    }
}