﻿:root {
    --primary-red: #2D548E;
    --secondary-blue: #86A5D1;
    --accent-lime: #BDD44E;
    --accent-violet: #A7A1CF;
    --primary-black: #1F3F6D;
    --dark-gray: #16365F;
    --light-gray: #F2F5FA;
    --border-color: #D4DCE8;
    --text-secondary: #5C6F8A;
}

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

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--primary-black);
    line-height: 1.6;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #86A5D1 0%, #2D548E 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide-content {
    color: #ffffff;
    padding: 40px 0;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 84, 142, 0.4);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 18px;
}

.slider-dots {
    display: flex;
    gap: 12px;
    padding: 0 15px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #ffffff;
    width: 16px;
    height: 16px;
    border-color: rgba(255, 255, 255, 0.3);
}

.play-pause-btn i {
    font-size: 16px;
}

/* Responsive Hero Slider */
@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 100vw;
        max-height: 600px;
    }

    .slide-content {
        /* Reserve space for bottom slider controls to avoid CTA overlap */
        padding: 24px 0 120px;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 10px;
        width: calc(100% - 32px);
        justify-content: center;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 16px;
    }
    
    .slider-dots {
        gap: 8px;
        padding: 0 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .dot.active {
        width: 14px;
        height: 14px;
    }
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-black);
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left {
    font-weight: 400;
}

.top-bar-left i {
    font-size: 18px;
    color: var(--accent-lime);
}

.top-bar .phone-number {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 12px;
    background-color: rgba(189, 212, 78, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.top-bar .phone-number:hover {
    background-color: var(--accent-lime);
    color: var(--primary-black);
}

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

.top-nav {
    display: flex;
    gap: 25px;
}

.top-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.top-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-blue);
    transition: width 0.3s ease;
}

.top-nav a:hover {
    color: var(--secondary-blue);
}

.top-nav a:hover::after {
    width: 100%;
}

/* Main Header Styles */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Search Bar Styles */
.search-bar {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(45, 84, 142, 0.15);
    outline: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
}

/* Header Actions */
.header-actions .btn-action {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-actions .btn-action i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-actions .btn-outline-dark {
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
}

.header-actions .btn-outline-dark:hover {
    background-color: var(--primary-black);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-actions .btn-primary {
    background-color: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: #ffffff;
}

.header-actions .btn-primary:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 84, 142, 0.3);
}

/* Navigation Bar Styles */
.main-nav {
    background-color: var(--light-gray);
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
}

.main-nav .container-fluid {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-dropdown {
    flex-shrink: 0;
}

.btn-category {
    background-color: var(--primary-red);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-category i {
    display: inline-flex;
    align-items: center;
}

.btn-category:hover,
.btn-category:focus {
    background-color: var(--primary-black);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.navbar-toggler {
    height: 48px;
    /* padding: 10px 14px; */
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: var(--primary-black);
    font-weight: 500;
    padding: 15px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Support Info */
.support-info {
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-icon {
    background-color: var(--primary-red);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.support-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.2;
}

.support-phone {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.support-phone:hover {
    color: var(--primary-red);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 280px;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--primary-black);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: var(--primary-red);
    color: #ffffff;
    padding-left: 25px;
}

.dropdown-item:active {
    background-color: var(--primary-red);
    color: #ffffff;
}

.dropdown-item i {
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.dropdown-divider {
    margin: 8px 0;
}

/* Multi-level Dropdown (Submenu) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle {
    cursor: pointer;
}

.dropdown-submenu .dropdown-toggle::after {
    content: "\f285";
    font-family: "bootstrap-icons";
    border: none;
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover .dropdown-toggle::after {
    transform: translateX(5px);
}

.dropdown-submenu .submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    margin-left: 0;
}

.dropdown-submenu:hover > .submenu {
    display: block;
}

.dropdown-submenu .submenu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
}

.dropdown-submenu .submenu .dropdown-item:hover {
    background-color: var(--primary-black);
    color: #ffffff;
}

/* Mobile Search */
.mobile-search {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding-top: 15px;
}

/* About Network Section */
.about-network-section {
    background-color: var(--light-gray);
    margin: 0 0;
    padding-bottom: 80px;
}

.network-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.network-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
}

.network-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 550px;
}

.btn-network {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-network:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 84, 142, 0.3);
}

.network-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.network-image img {
    height: 100%;
    object-fit: cover;
}

/* Stats Counter - Integrated within About Network */
.about-network-section .stats-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.stat-count {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-count::after {
    content: '+';
    margin-left: 3px;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 500;
}

/* Expert Section */
.expert-section {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.expert-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
    min-height: 600px;
    position: relative;
}

.expert-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.expert-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
}

.expert-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 20px;
}

.expert-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
}

.expert-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.benefit-card {
    text-align: left;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 28px;
    color: #ffffff;
    font-weight: bold;
}

.benefit-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Solutions Section (Inverted Expert Section) */
.solutions-section {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.solutions-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
    min-height: 600px;
    position: relative;
}

.solutions-content::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
}

.solutions-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 20px;
}

.solutions-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
}

.solutions-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Categories Carousel Section */
.categories-carousel-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.categories-header {
    margin-bottom: 60px;
}

.categories-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 0;
}

.categories-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.categories-carousel {
    display: flex;
    gap: 30px;
    animation: smoothScroll 30s linear infinite;
    width: max-content;
}

.categories-carousel:hover {
    animation-play-state: paused;
}

@keyframes smoothScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.category-card {
    flex: 0 0 320px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-black);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-name {
    padding: 25px 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 0;
}

.btn-shop-now {
    display: none;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 60px;
}

.testimonials-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 0;
}

.testimonials-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-scroll-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, var(--light-gray) 0%, rgba(248, 249, 250, 0.8) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.testimonials-scroll-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to left, var(--light-gray) 0%, rgba(248, 249, 250, 0.8) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: calc((100vw - 1140px) / 2);
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 450px;
    background: #ffffff;
    border-radius: 15px;
    padding: 45px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: color-mix(in srgb, var(--primary-red) 10%, transparent);
    line-height: 1;
    font-weight: bold;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.author-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 500;
}

/* Mobile Search Button */
.btn-search-mobile {
    background-color: transparent;
    border: 2px solid var(--primary-black);
    color: var(--primary-black);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.btn-search-mobile:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

.btn-search-mobile i {
    font-size: 18px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
}

.search-modal-header h5 {
    font-weight: 600;
    color: var(--primary-black);
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--primary-black);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background-color: var(--light-gray);
    color: var(--primary-red);
}

.search-modal-body {
    padding: 30px 25px;
}

.search-input-modal {
    padding: 15px 60px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.search-input-modal:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(45, 84, 142, 0.15);
    outline: none;
}

.search-btn-modal {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-red);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn-modal:hover {
    background-color: var(--primary-black);
    transform: translateY(-50%) scale(1.05);
}

.search-btn-modal i {
    font-size: 18px;
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-black);
    color: #ffffff;
    margin-top: 50px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
    z-index: 1100;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-whatsapp i {
    font-size: 1.9rem;
    line-height: 1;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    background: #128C7E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 140, 126, 0.45);
}

.floating-whatsapp:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp i {
        font-size: 1.75rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .top-bar {
        font-size: 12px;
    }
    
    .top-nav {
        gap: 15px;
    }
    
    .header-actions .btn-action span {
        display: none;
    }
    
    .header-actions .btn-action {
        padding: 12px;
        width: 44px;
        height: 44px;
    }
    
    .header-actions .btn-action i {
        font-size: 18px;
        margin: 0 !important;
    }
    
    .btn-search-mobile {
        width: 44px;
        height: 44px;
    }
    
    .main-nav .container-fluid {
        flex-wrap: wrap;
    }
    
    .navbar-toggler {
        order: 3;
    }
    
    .main-nav .navbar-collapse {
        background-color: #ffffff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        flex-basis: 100%;
        order: 4;
    }
    
    /* Remove active border on mobile */
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    
    .support-info {
        margin-top: 20px;
        justify-content: center;
    }
    
    /* Mobile submenu behavior */
    .dropdown-submenu .submenu {
        position: static;
        display: none;
        margin-left: 15px;
        box-shadow: none;
        border-left: 3px solid var(--primary-red);
        padding-left: 15px;
        margin-top: 8px;
        margin-bottom: 8px;
        background-color: #F2F5FA;
        border-radius: 0 8px 8px 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .dropdown-submenu .submenu .dropdown-item {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .dropdown-submenu .dropdown-toggle {
        position: relative;
        padding-right: 45px;
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        content: "\f282";
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu.show .dropdown-toggle {
        background-color: var(--primary-red);
        color: #ffffff;
    }
    
    .dropdown-submenu.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-submenu.show .submenu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 300px;
        }
    }
    
    /* Prevent hover on mobile */
    .dropdown-submenu:hover .submenu {
        display: none;
    }
    
    .dropdown-submenu.show:hover .submenu {
        display: block;
    }
    
    .dropdown-submenu:hover .dropdown-toggle::after {
        transform: none;
    }
    
    /* Expert Section Tablet */
    .expert-content {
        padding: 60px 50px;
        min-height: 550px;
    }
    
    .expert-title {
        font-size: 2.1rem;
    }
    
    .expert-description {
        font-size: 1.05rem;
    }
    
    .expert-image {
        min-height: 550px;
    }
    
    /* Benefits Section Tablet */
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-title {
        font-size: 1.6rem;
    }
    
    /* Solutions Section Tablet */
    .solutions-content {
        padding: 60px 50px;
        min-height: 550px;
    }
    
    .solutions-title {
        font-size: 2.1rem;
    }
    
    .solutions-description {
        font-size: 1.05rem;
    }
    
    .solutions-image {
        min-height: 550px;
    }
    
    /* Categories Carousel Section Tablet */
    .categories-carousel-section {
        padding: 60px 0;
    }
    
    .categories-header {
        margin-bottom: 50px;
    }
    
    .categories-title {
        font-size: 2.1rem;
    }
    
    .category-card {
        flex: 0 0 300px;
    }
    
    .category-image {
        height: 260px;
    }
    
    .category-name {
        font-size: 1.3rem;
    }
    
    /* Testimonials Section Tablet */
    .testimonials-section {
        padding: 60px 0 80px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        font-size: 2.1rem;
    }
    
    .testimonials-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .testimonial-card {
        flex: 0 0 400px;
    }
}

@media (max-width: 767px) {
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        text-align: center;
    }
    
    .top-bar .row > div {
        margin-bottom: 5px;
    }
    
    .header-actions {
        justify-content: flex-end !important;
        gap: 8px !important;
    }
    
    .main-nav {
        padding: 12px 0;
    }
    
    .main-nav .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .btn-category {
        font-size: 13px;
        padding: 10px 14px;
        white-space: nowrap;
        height: 44px;
    }
    
    .btn-category i {
        font-size: 14px;
    }
    
    /* About Network Mobile */
    .about-network-section {
        margin: 0 0;
        padding-bottom: 40px;
    }
    
    .network-content {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .network-title {
        font-size: 1.75rem;
    }
    
    .network-description {
        font-size: 1rem;
    }
    
    .network-image {
        min-height: 400px;
    }
    
    /* Stats Counter Mobile */
    .about-network-section .stats-wrapper {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .stat-card:not(:last-child)::after {
        display: none;
    }
    
    .stat-count {
        font-size: 2.75rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
    
    /* Expert Section Mobile */
    .expert-content {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .expert-content::before {
        width: 3px;
    }
    
    .expert-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .expert-title::after {
        width: 60px;
        height: 3px;
        margin-top: 15px;
    }
    
    .expert-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .expert-image {
        min-height: 400px;
    }
    
    /* Benefits Section Mobile */
    .benefits-section {
        padding: 50px 0;
    }
    
    .benefit-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .benefit-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    /* Solutions Section Mobile */
    .solutions-content {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .solutions-content::after {
        width: 3px;
    }
    
    .solutions-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .solutions-title::after {
        width: 60px;
        height: 3px;
        margin-top: 15px;
    }
    
    .solutions-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .solutions-image {
        min-height: 400px;
    }
    
    /* Categories Carousel Section Mobile */
    .categories-carousel-section {
        padding: 50px 0;
    }
    
    .categories-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .categories-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        flex: 0 0 280px;
    }
    
    .category-image {
        height: 240px;
    }
    
    .category-name {
        font-size: 1.2rem;
        padding: 20px 15px;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        top: 12px;
        left: 12px;
    }
    
    .btn-shop-now {
        padding: 14px 45px;
        font-size: 0.9rem;
    }
    
    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 50px 0 60px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-scroll {
        padding-left: 20px;
        padding-right: 20px;
        gap: 20px;
    }
    
    .testimonials-scroll-wrapper::before,
    .testimonials-scroll-wrapper::after {
        width: 80px;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
        padding: 35px 30px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 20px;
        left: 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
}

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

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 100px 0 80px;
    position: relative;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.about-hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

/* Our Story Section */
.about-story-section {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.story-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
    min-height: 650px;
    position: relative;
}

.story-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 20px;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

.story-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--primary-black);
    font-weight: 500;
}

.story-feature-item i {
    font-size: 22px;
    color: var(--primary-red);
    flex-shrink: 0;
}

.story-image {
    position: relative;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 20px;
}

.mission-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background-color: var(--primary-black);
    transform: scale(1.1);
}

.mission-icon i {
    font-size: 36px;
    color: #ffffff;
}

.vision-icon {
    background-color: var(--primary-black);
}

.mission-card:hover .vision-icon {
    background-color: var(--primary-red);
}

.mission-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.mission-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    /* margin: 15px auto 0; */
}

.choose-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #244676 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
    background: linear-gradient(135deg, var(--primary-black) 0%, #333333 100%);
    transform: rotateY(180deg);
}

.choose-icon i {
    font-size: 32px;
    color: #ffffff;
}

.choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.choose-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Our Values Section */
.values-section {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.values-image {
    position: relative;
    height: 100%;
    min-height: 700px;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.values-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
    min-height: 700px;
    position: relative;
}

.values-content::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #D4DCE8;
}

.value-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.value-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.value-item-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0;
}

.value-item-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    padding-left: 70px;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    margin-bottom: 0;
}

.about-cta-content {
    padding: 60px 50px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.btn-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--primary-red);
    color: #ffffff;
    border: 2px solid var(--primary-red);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-cta:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 84, 142, 0.3);
}

.btn-cta-outline {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-cta-outline:hover {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for About Us Page */
@media (max-width: 991px) {
    /* About Hero */
    .about-hero-section {
        padding: 70px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
    }
    
    /* Story Section */
    .story-content {
        padding: 60px 50px;
        min-height: 550px;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .story-image {
        min-height: 500px;
    }
    
    /* Mission & Vision */
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .section-title-center {
        font-size: 2.1rem;
    }
    
    .mission-card {
        padding: 40px 30px;
    }
    
    /* Why Choose */
    .why-choose-section {
        padding: 60px 0;
    }
    
    .choose-card {
        padding: 35px 25px;
    }
    
    /* Values Section */
    .values-content {
        padding: 60px 50px;
        min-height: 600px;
    }
    
    .values-title {
        font-size: 2.1rem;
    }
    
    .values-image {
        min-height: 500px;
    }
    
    /* CTA Section */
    .about-cta-section {
        padding: 60px 0;
        margin-bottom: 0;
    }
    
    .about-cta-content {
        padding: 50px 40px;
    }
    
    .cta-title {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    /* About Hero */
    .about-hero-section {
        padding: 50px 0 40px;
    }
    
    .about-hero-title {
        font-size: 1.9rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    /* Story Section */
    .story-content {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        margin-top: 15px;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .story-features {
        margin-top: 25px;
        gap: 12px;
    }
    
    .story-feature-item {
        font-size: 0.95rem;
    }
    
    .story-feature-item i {
        font-size: 18px;
    }
    
    .story-image {
        min-height: 400px;
    }
    
    /* Mission & Vision */
    .mission-vision-section {
        padding: 40px 0;
    }
    
    .section-title-center {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .mission-card {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .mission-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .mission-icon i {
        font-size: 28px;
    }
    
    .mission-card-title {
        font-size: 1.6rem;
    }
    
    .mission-card-text {
        font-size: 1rem;
    }
    
    /* Why Choose */
    .why-choose-section {
        padding: 40px 0;
    }
    
    .choose-card {
        padding: 30px 20px;
    }
    
    .choose-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .choose-icon i {
        font-size: 26px;
    }
    
    .choose-title {
        font-size: 1.3rem;
    }
    
    .choose-description {
        font-size: 0.95rem;
    }
    
    /* Values Section */
    .values-content {
        padding: 40px 30px;
        min-height: auto;
    }
    
    .values-title {
        font-size: 1.75rem;
    }
    
    .value-item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .value-item-header {
        gap: 15px;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .value-item-title {
        font-size: 1.3rem;
    }
    
    .value-item-text {
        font-size: 0.95rem;
        padding-left: 0;
        margin-top: 10px;
    }
    
    .values-image {
        min-height: 400px;
    }
    
    /* CTA Section */
    .about-cta-section {
        padding: 40px 0;
        margin-bottom: 0;
    }
    
    .about-cta-content {
        padding: 35px 25px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn-cta {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
        margin-top: 0;
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    animation: fadeIn 0.3s ease;
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Mobile Search Modal Responsive */
@media (max-width: 576px) {
    .search-modal {
        padding-top: 20px;
    }
    
    .search-modal-content {
        width: 95%;
        border-radius: 8px;
    }
    
    .search-modal-header {
        padding: 15px 20px;
    }
    
    .search-modal-header h5 {
        font-size: 1.1rem;
    }
    
    .search-modal-body {
        padding: 20px;
    }
    
    .search-input-modal {
        padding: 12px 55px 12px 18px;
        font-size: 15px;
    }
    
    .search-btn-modal {
        width: 42px;
        height: 42px;
    }
    
    .search-btn-modal i {
        font-size: 16px;
    }
}

/* ========================================
   CATEGORY PAGE STYLES
   ======================================== */

/* Category Hero Section */
.category-hero-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 60px 0 50px;
    position: relative;
}

.category-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-black) 100%);
}

.category-hero-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.category-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.category-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

/* Sub-Categories Bubbles Section */
.subcategories-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    margin-bottom: 15px;
}

.section-description-center {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
}

.subcategories-bubbles {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--light-gray);
    -webkit-overflow-scrolling: touch;
}

.subcategories-bubbles::-webkit-scrollbar {
    height: 8px;
}

.subcategories-bubbles::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.subcategories-bubbles::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.subcategories-bubbles::-webkit-scrollbar-thumb:hover {
    background: var(--primary-black);
}

.subcategory-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 140px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-black);
    transition: all 0.3s ease;
    text-align: center;
}

.subcategory-bubble:hover {
    background: linear-gradient(135deg, var(--primary-red) 0%, #4E6EA4 100%);
    border-color: var(--primary-red);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 84, 142, 0.3);
}

.bubble-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

/* Products Grid Section */
.products-grid-section {
    padding: 50px 0;
    background-color: var(--light-gray);
}

.products-grid-section .row.g-4 {
    row-gap: 24px !important;
}

@media (max-width: 575px) {
    .products-grid-section .row.g-4 {
        row-gap: 16px !important;
        column-gap: 16px !important;
    }
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: var(--light-gray);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
    line-height: 1.3;
    /* Single line truncation for desktop */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-word;
}

.product-category {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    margin-top: auto;
}

.product-actions .btn-outline-primary {
    flex: 1;
    border-color: var(--primary-red);
    color: var(--primary-red);
    font-weight: 500;
}

.product-actions .btn-outline-primary:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #ffffff;
}

/* Pagination */
.pagination {
    margin: 0;
}

.pagination .page-link {
    color: var(--primary-black);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 5px;
    font-weight: 500;
}

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

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

.pagination .page-item.disabled .page-link {
    background-color: var(--light-gray);
    color: var(--text-secondary);
}

/* Category Bottom Section */
.category-bottom-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.bottom-content {
    text-align: left;
}

/* Responsive Styles for Category Page */
@media (max-width: 1199px) {
    .subcategory-bubble {
        min-width: 130px;
        padding: 12px 20px;
    }

    .bubble-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 991px) {
    .category-hero-title {
        font-size: 2.5rem;
    }

    .category-hero-description {
        font-size: 1.1rem;
    }

    .section-title-center {
        font-size: 2rem;
    }

    .subcategory-bubble {
        min-width: 120px;
        padding: 10px 18px;
    }

    .bubble-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .category-hero-section {
        padding: 40px 0 30px;
    }

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

    .category-hero-description {
        font-size: 0.95rem;
    }

    .subcategories-section {
        padding: 30px 0;
    }

    .section-title-center {
        font-size: 1.75rem;
    }

    .subcategory-bubble {
        min-width: 110px;
        padding: 10px 15px;
    }

    .bubble-text {
        font-size: 0.8rem;
    }

    .products-grid-section {
        padding: 30px 0;
    }

    .products-grid-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .products-grid-section .text-muted {
        font-size: 0.85rem;
    }

    .product-card {
        margin-bottom: 0;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-category {
        font-size: 0.8rem;
    }

    .product-actions .btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .category-bottom-section {
        padding: 30px 0;
    }

    .category-bottom-section .section-title-center {
        font-size: 1.5rem;
    }

    .category-bottom-section .section-description {
        font-size: 0.9rem;
    }

    .subcategories-bubbles {
        padding: 15px 0;
    }
}

@media (max-width: 575px) {
    .category-hero-title {
        font-size: 1.5rem;
    }

    .category-hero-label {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .category-hero-description {
        font-size: 0.9rem;
    }

    .subcategory-bubble {
        min-width: 120px;
        padding: 10px 18px;
    }

    .bubble-text {
        font-size: 0.75rem;
    }

    .section-title-center {
        font-size: 1.5rem;
    }

    .products-grid-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .products-grid-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .products-grid-section .row {
        margin-left: -8px;
        margin-right: -8px;
    }

    .products-grid-section .row > [class*='col-'] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 0.95rem;
        /* Two line truncation for mobile */
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-category {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .product-actions .btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .product-actions .btn i {
        font-size: 0.85rem;
    }

    .pagination .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        margin: 0 2px;
    }

    .category-bottom-section .section-title-center {
        font-size: 1.35rem;
    }

    .category-bottom-section .section-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Ensure 2 products per row on mobile */
    .products-grid-section .col-sm-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .products-grid-section .col-6 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Better mobile card appearance */
    .product-card {
        border-radius: 6px;
    }

    .product-image {
        padding-top: 100%;
    }
}

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

/* Breadcrumb */
.breadcrumb-section {
    background-color: #F2F5FA;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-red);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    aspect-ratio: 1;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-controls {
    opacity: 1;
}

.image-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.image-nav-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.image-nav-btn i {
    font-size: 1.2rem;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 15px;
}

.thumbnails-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
}

.thumbnails-wrapper::-webkit-scrollbar {
    height: 5px;
}

.thumbnails-wrapper::-webkit-scrollbar-track {
    background: #E8EDF6;
    border-radius: 10px;
}

.thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(45, 84, 142, 0.3);
}

/* Product Info Detail */
.product-info-detail {
    padding-left: 20px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.product-short-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.product-meta .label {
    font-weight: 600;
    color: var(--primary-black);
    margin-right: 8px;
}

.product-meta .value {
    color: var(--text-secondary);
}

/* Product Attributes */
.product-attributes {
    margin-top: 30px;
}

.attribute-group {
    margin-bottom: 20px;
}

.attribute-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-black);
    margin-bottom: 12px;
    display: block;
}

.attribute-select {
    max-width: 400px;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.attribute-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(45, 84, 142, 0.15);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-black);
}

.quantity-input-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: 140px;
}

.qty-btn {
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

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

.qty-input {
    border: none;
    text-align: center;
    width: 60px;
    height: 45px;
    font-weight: 600;
    font-size: 1rem;
}

.qty-input:focus {
    outline: none;
    box-shadow: none;
}

/* Remove number input arrows */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

/* Action Buttons */
.action-buttons {
    margin-top: 25px;
}

.btn-add-quote {
    background: var(--primary-red);
    color: white;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-add-quote:hover {
    background: #244676;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 84, 142, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 14px 20px;
    font-size: 1.3rem;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Product Contact Info */
.product-contact-info {
    border-left: 4px solid var(--primary-red);
    margin-top: 30px;
}

.product-contact-info a {
    text-decoration: none;
    font-weight: 600;
}

.product-contact-info a:hover {
    text-decoration: underline;
}

/* Product Tabs */
.product-tabs-section {
    background: #F2F5FA;
}

.product-tabs {
    border: none;
    border-bottom: 2px solid var(--border-color);
    gap: 5px;
    flex-wrap: wrap;
}

.product-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.product-tabs .nav-link:hover {
    color: var(--primary-red);
    background: rgba(45, 84, 142, 0.05);
}

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

.product-tab-content {
    background: white;
    padding: 40px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.7;
    color: var(--text-secondary);
    border-bottom: 1px solid #E1E8F2;
}

.feature-list li:before {
    content: "âœ“";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Optional Colors Section */
.optional-colors-section h5 {
    font-weight: 700;
    color: var(--primary-black);
}

.color-box {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.color-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.color-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.color-box[style*="#f5f5f5"] .color-name,
.color-box[style*="#ffffff"] .color-name {
    color: var(--primary-black);
    text-shadow: none;
}

/* Description Image */
.description-image-wrapper {
    position: relative;
}

.description-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
}

.highlight-box {
    border-left: 4px solid var(--primary-red);
}

/* Optional Features Cards */
.optional-feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.optional-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #244676);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.optional-feature-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 8px;
}

.optional-feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Video Wrapper */
.video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-description h4 {
    font-weight: 700;
    color: var(--primary-black);
}

.video-description p {
    color: var(--text-secondary);
}

/* Dimensions Table */
.dimensions-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.dimensions-table {
    margin-bottom: 0;
}

.dimensions-table thead th {
    padding: 15px;
    font-weight: 600;
}

.dimensions-table tbody td {
    padding: 12px 15px;
}

.dimensions-table tbody tr:hover {
    background: rgba(45, 84, 142, 0.03);
}

.dimension-diagram img {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-content .btn-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
    margin-top: auto;
}

.blog-content .btn-link:hover {
    text-decoration: underline;
}

/* Related Products Section */
.related-products-section {
    background: white;
}

.section-header {
    text-align: left;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
    margin-top: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Responsive Design for Product Detail */
@media (max-width: 991px) {
    .product-info-detail {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-tab-content {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .product-title {
        font-size: 1.6rem;
    }

    .product-short-desc {
        font-size: 1rem;
    }

    .product-meta {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .product-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .product-tabs .nav-link {
        padding: 12px 18px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .product-tab-content {
        padding: 20px 15px;
    }

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

    .relatedProductsSwiper {
        padding: 10px 0 40px;
    }

    .thumbnail-item {
        flex: 0 0 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .main-image-container {
        aspect-ratio: 4/3;
    }

    .image-nav-btn {
        width: 35px;
        height: 35px;
    }

    .image-nav-btn i {
        font-size: 1rem;
    }

    .thumbnail-item {
        flex: 0 0 60px;
        height: 60px;
    }
}

/* ========================================
   CATEGORY + PRODUCT DETAIL REVAMP (SCOPED)
   ======================================== */

.category-page,
.product-detail-page {
    font-family: 'Manrope', 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.category-page .category-hero-title,
.category-page .section-title,
.category-page .section-title-center,
.product-detail-page .product-title,
.product-detail-page .section-title,
.product-detail-page h3,
.product-detail-page h4,
.product-detail-page h5 {
    font-family: 'Plus Jakarta Sans', 'Manrope', 'Roboto', sans-serif;
    letter-spacing: -0.01em;
}

.category-page .category-hero-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(134, 165, 209, 0.25) 0%, transparent 36%),
        radial-gradient(circle at 88% 86%, rgba(189, 212, 78, 0.22) 0%, transparent 40%),
        linear-gradient(135deg, #f8fbff 0%, #eef4fd 100%);
    padding: 82px 0 62px;
}

.category-page .category-hero-kicker {
    margin-bottom: 14px;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.category-page .category-hero-title {
    font-size: clamp(2rem, 4.1vw, 3.4rem);
    margin-bottom: 14px;
}

.category-page .category-hero-description {
    max-width: 820px;
    margin-bottom: 22px;
}

.category-page .category-hero-metrics {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.category-page .hero-metric-item {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(45, 84, 142, 0.18);
    border-radius: 14px;
    min-width: 170px;
    padding: 12px 16px;
    text-align: left;
    box-shadow: 0 10px 28px rgba(31, 63, 109, 0.08);
}

.category-page .metric-value {
    display: block;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.1;
}

.category-page .metric-label {
    display: block;
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.category-page .subcategories-section {
    border-top: 1px solid rgba(45, 84, 142, 0.08);
}

.category-page .subcategory-bubble {
    background: #ffffff;
    border-color: rgba(45, 84, 142, 0.2);
    font-weight: 600;
}

.category-page .subcategory-bubble:hover {
    transform: translateY(-4px) scale(1.01);
}

.category-page .products-grid-section {
    background:
        linear-gradient(180deg, #f6f9fe 0%, #f0f5fc 100%);
    padding-top: 64px;
}

.category-page .catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(45, 84, 142, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(4px);
}

.category-page .catalog-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-page .toolbar-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.category-page .catalog-sort {
    min-width: 170px;
    border-color: rgba(45, 84, 142, 0.25);
}

.category-page .product-card {
    border-radius: 14px;
    border: 1px solid rgba(45, 84, 142, 0.16);
    box-shadow: 0 10px 28px rgba(31, 63, 109, 0.06);
}

.category-page .product-card:hover {
    box-shadow: 0 18px 36px rgba(31, 63, 109, 0.14);
}

.category-page .product-image {
    background: linear-gradient(180deg, #eff4fb 0%, #f9fbff 100%);
}

.category-page .product-actions .btn-outline-primary {
    border-radius: 10px;
}

.category-page .pagination .page-link {
    border-radius: 10px;
}

.category-page .category-bottom-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.category-page .bottom-content {
    background: #ffffff;
    border: 1px solid rgba(45, 84, 142, 0.13);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 24px rgba(31, 63, 109, 0.05);
}

.product-detail-page .breadcrumb-section {
    background:
        linear-gradient(90deg, #f4f8ff 0%, #ecf3fd 100%);
}

.product-detail-page .product-detail-section {
    background:
        radial-gradient(circle at 88% 10%, rgba(167, 161, 207, 0.15) 0%, transparent 28%),
        #ffffff;
}

.product-detail-page .main-image-container {
    border: 1px solid rgba(45, 84, 142, 0.14);
    border-radius: 16px;
}

.product-detail-page .product-info-detail {
    padding-left: 28px;
}

.product-detail-page .product-title-kicker {
    color: var(--primary-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 9px;
}

.product-detail-page .product-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.product-detail-page .product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-detail-page .product-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: rgba(45, 84, 142, 0.07);
    border: 1px solid rgba(45, 84, 142, 0.16);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--primary-black);
    font-weight: 600;
}

.product-detail-page .product-meta {
    background: #f8fbff;
    border: 1px solid rgba(45, 84, 142, 0.16);
    border-radius: 12px;
    padding: 16px;
}

.product-detail-page .attribute-select,
.product-detail-page .qty-input,
.product-detail-page .quantity-input-group {
    border-radius: 10px;
}

.product-detail-page .btn-add-quote {
    border-radius: 11px;
}

.product-detail-page .btn-whatsapp {
    border-radius: 11px;
}

.product-detail-page .spec-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-detail-page .spec-glance-card {
    padding: 12px;
    border-radius: 11px;
    background: #f7faff;
    border: 1px solid rgba(45, 84, 142, 0.15);
}

.product-detail-page .spec-glance-card h6 {
    font-size: 0.74rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

.product-detail-page .spec-glance-card p {
    margin-bottom: 0;
    color: var(--primary-black);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 600;
}

.product-detail-page .product-contact-info {
    border-left-width: 0;
    border: 1px solid rgba(45, 84, 142, 0.15);
    background: linear-gradient(135deg, #f7fbff 0%, #eff5fd 100%) !important;
}

.product-detail-page .product-tabs .nav-link {
    border-radius: 8px 8px 0 0;
}

.product-detail-page .product-tab-content {
    border: 1px solid rgba(45, 84, 142, 0.12);
    box-shadow: 0 18px 34px rgba(31, 63, 109, 0.07);
}

.product-detail-page .feature-list li:before {
    content: "\2713";
}

.product-detail-page .assurance-panel {
    background: linear-gradient(135deg, #f6faff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 84, 142, 0.16);
    padding: 18px;
}

.product-detail-page .assurance-panel h5 {
    margin-bottom: 10px;
    color: var(--primary-black);
}

.product-detail-page .assurance-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
}

.product-detail-page .assurance-panel li {
    margin-bottom: 8px;
}

.product-detail-page .assurance-panel li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .category-page .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-page .product-info-detail {
        padding-left: 0;
    }

    .product-detail-page .spec-glance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .category-page .category-hero-section {
        padding: 56px 0 42px;
    }

    .category-page .hero-metric-item {
        min-width: 100%;
        text-align: center;
    }

    .category-page .catalog-toolbar-right {
        width: 100%;
    }

    .category-page .catalog-sort {
        width: 100%;
    }

    .category-page .bottom-content {
        padding: 22px;
    }
}

/* ========================================
   CONTACT + QUOTE LIST PAGE STYLES
   ======================================== */

/* Shared page header style for contact and quote list pages */
.contact-page .page-header,
.quote-list-page .page-header {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 100%);
    color: white;
    margin-bottom: 0;
}

.contact-page .page-header h1,
.quote-list-page .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-page .page-header .breadcrumb,
.quote-list-page .page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

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

.contact-page .page-header .breadcrumb-item.active,
.quote-list-page .page-header .breadcrumb-item.active {
    color: white;
}

.contact-page .page-header .breadcrumb-item a,
.quote-list-page .page-header .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.contact-page .page-header .breadcrumb-item + .breadcrumb-item::before,
.quote-list-page .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact page */
.contact-page .trust-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.contact-page .trust-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-red);
}

.contact-page .trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-page .trust-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-black) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.contact-page .trust-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.contact-page .trust-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.contact-page .contact-info-section {
    padding: 60px 0;
    background: white;
}

.contact-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.contact-page .section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-page .contact-info-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-page .contact-info-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(45, 84, 142, 0.1) 0%, rgba(36, 70, 118, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-red);
}

.contact-page .contact-info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.contact-page .contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-page .contact-info-card a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-page .contact-info-card a:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

.contact-page .contact-form-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.contact-page .form-container {
    background: white;
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .form-container h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.contact-page .form-container .subtitle {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.contact-page .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.contact-page .form-control,
.contact-page .form-select {
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-page .form-control:focus,
.contact-page .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(45, 84, 142, 0.15);
}

.contact-page .btn-submit {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.contact-page .btn-submit:hover {
    background-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 84, 142, 0.3);
}

.contact-page .why-choose-section {
    padding: 60px 0;
    background: white;
}

.contact-page .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-page .feature-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.contact-page .feature-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.contact-page .feature-item .content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.contact-page .feature-item .content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-page .success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.contact-page .success-message.show {
    display: block;
    animation: contactSlideDown 0.3s ease;
}

@keyframes contactSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quote list page */
.quote-list-page .quote-list-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.quote-list-page .quote-item-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-list-page .quote-item-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.quote-list-page .quote-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--light-gray);
}

.quote-list-page .quote-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-list-page .quote-item-details {
    flex-grow: 1;
}

.quote-list-page .quote-item-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.quote-list-page .quote-item-details .category {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.quote-list-page .quote-item-details .description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.quote-list-page .quote-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-list-page .quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.quote-list-page .quantity-control button {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--primary-black);
    transition: background-color 0.3s ease;
}

.quote-list-page .quantity-control button:hover {
    background-color: var(--light-gray);
}

.quote-list-page .quantity-control input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 8px;
    font-weight: 500;
}

.quote-list-page .quantity-control input:focus {
    outline: none;
}

.quote-list-page .btn-remove-item {
    background-color: var(--accent-violet);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quote-list-page .btn-remove-item:hover {
    background-color: var(--secondary-blue);
    transform: scale(1.05);
}

.quote-list-page .enquiry-form-section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.quote-list-page .enquiry-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.quote-list-page .enquiry-form-section .subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.quote-list-page .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-black);
}

.quote-list-page .form-control,
.quote-list-page .form-select {
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 0.95rem;
}

.quote-list-page .form-control:focus,
.quote-list-page .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(45, 84, 142, 0.15);
}

.quote-list-page .btn-submit-quote {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.quote-list-page .btn-submit-quote:hover {
    background-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(45, 84, 142, 0.3);
}

.quote-list-page .empty-quote {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
}

.quote-list-page .empty-quote i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.quote-list-page .empty-quote h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.quote-list-page .empty-quote p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.quote-list-page .quote-summary {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-red);
}

.quote-list-page .quote-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.quote-list-page .quote-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary);
}

.quote-list-page .quote-summary .summary-item.total {
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
}

@media (max-width: 992px) {
    .contact-page .form-container {
        padding: 40px 30px;
    }

    .contact-page .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page .page-header h1,
    .quote-list-page .page-header h1 {
        font-size: 1.8rem;
    }

    .contact-page .trust-section,
    .contact-page .contact-info-section,
    .contact-page .contact-form-section,
    .contact-page .why-choose-section {
        padding: 40px 0;
    }

    .contact-page .trust-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .contact-page .contact-info-card {
        margin-bottom: 20px;
    }

    .contact-page .form-container {
        padding: 30px 20px;
    }

    .contact-page .form-container h3 {
        font-size: 1.6rem;
    }

    .contact-page .section-title h2 {
        font-size: 1.8rem;
    }

    .contact-page .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-page .feature-item:hover {
        transform: translateY(-5px);
    }

    .quote-list-page .quote-item-card {
        flex-direction: column;
        text-align: center;
    }

    .quote-list-page .quote-item-image {
        width: 100%;
        height: 200px;
    }

    .quote-list-page .quote-item-actions {
        flex-direction: column;
        width: 100%;
    }

    .quote-list-page .quantity-control {
        width: 100%;
        justify-content: center;
    }

    .quote-list-page .btn-remove-item {
        width: 100%;
    }

    .quote-list-page .enquiry-form-section {
        padding: 25px 20px;
    }

    .quote-list-page .enquiry-form-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-page .page-header,
    .quote-list-page .page-header {
        padding: 30px 0;
    }

    .contact-page .trust-card .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-page .trust-card h3 {
        font-size: 1.2rem;
    }

    .quote-list-page .quote-list-section {
        padding: 40px 0;
    }

    .quote-list-page .quote-summary {
        padding: 20px 15px;
    }
}

