/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700&display=swap');

:root {
    /* Light Theme */
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --bg-color: #ffffff;
    --card-bg-color: #ffffff;
    --secondary-bg-color: #f8f9fa;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --heading-color: #1a2533;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --card-bg-color-alpha: rgba(255, 255, 255, 0.92);
}

[data-theme="dark"] {
    /* Improved Dark Theme */
    --primary-color: #36a3ff;
    --primary-hover: #5badff;
    --bg-color: #0d1117;
    --card-bg-color: #161b22;
    --card-bg-color-alpha: rgba(22, 27, 34, 0.92);
    --secondary-bg-color: #1c2128;
    --text-color: #c9d1d9;
    --text-muted-color: #8b949e;
    --heading-color: #f0f6fc;
    --border-color: #30363d;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    padding-top: 80px;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* General Elements */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.containers {
    width: 90%;
    max-width: 1690px;
    margin: 0 auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
.site-header {
    background: var(--card-bg-color-alpha);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-header .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--primary-color);
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.theme-toggle-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted-color);
    transition: color 0.2s;
}
.theme-toggle-btn:hover {
    color: var(--primary-color);
}

.btn {
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Vazirmatn', sans-serif;
    transition: background-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-contact-header {
    background-color: var(--primary-color);
    color: #fff;
}
.btn-contact-header:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

/* Mobile Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--heading-color);
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    position: relative;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--card-bg-color-alpha);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.active {
    transform: translateX(0);
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
    width: 100%;
    padding: 2rem;
}
.mobile-menu ul li {
    margin: 1.5rem 0;
    text-align: center;
}
.mobile-menu ul li a {
    color: var(--heading-color);
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0.5rem 2rem;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.mobile-menu ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-10px);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: transform 0.3s;
}
.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-menu-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
}

.mobile-contact-link {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mobile-contact-link:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.mobile-menu .theme-toggle-btn {
    font-size: 1.5rem;
}

/* Hero Section */
#hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: -80px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
}
.slide.active { opacity: 1; }
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}
.slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem 1rem;
    margin: 0 auto;
    text-align: center;
}
.slide h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.slide p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #f0f6fc;
}
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 500;
}
.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* Metrics Section */
/* Services & Trust Combined Section */
.services-trust-section {
    background-color: var(--secondary-bg-color);
    padding: 4rem 0;
}

.services-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.section-title-small {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--heading-color);
    text-align: center;
}

.services-block,
.trust-block {
    background: var(--card-bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-block:hover,
.trust-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--secondary-bg-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    margin: 0;
    color: var(--text-muted-color);
    font-size: 0.95rem;
}

.metrics-section {
    background-color: var(--secondary-bg-color);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg-color);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 35px -20px rgba(0,0,0,0.3);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
}

/* Services Section */
.service-section {
    background-color: var(--bg-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0.5rem 0 0.75rem 0;
}

.service-card p {
    color: var(--text-muted-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card ul {
    margin: 1rem 0 0;
    padding: 0 1rem 0 0;
    list-style: none;
    color: var(--text-muted-color);
}

.service-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Hybrid Section */
.hybrid-section {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(0,0,0,0));
    padding: 5rem 0;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.hybrid-card {
    background: var(--card-bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px -20px rgba(0,0,0,0.35);
}

.hybrid-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.hybrid-card ul li {
    margin-bottom: 0.75rem;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-muted-color);
}

.hybrid-card ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.hybrid-card.highlight {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}

.hybrid-card.highlight p,
.hybrid-card.highlight li {
    color: #f5fbff;
}

.hybrid-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hybrid-actions .btn {
    flex: 1;
    min-width: 160px;
}

/* SEO Section */
.seo-section {
    background-color: var(--secondary-bg-color);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.seo-content-grid article {
    background: var(--card-bg-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 20px -15px rgba(0,0,0,0.4);
}

.seo-content-grid article h3 {
    margin-top: 0;
    color: var(--heading-color);
}

.faq-section {
    background-color: var(--bg-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-list details {
    background: var(--card-bg-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -15px rgba(0,0,0,0.5);
}

.faq-list summary {
    font-weight: 600;
    color: var(--heading-color);
}

.faq-list p {
    margin: 0.75rem 0 0;
    color: var(--text-muted-color);
    line-height: 1.7;
}
/* Sections & Titles */
section {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--heading-color);
}

/* Products Section */
#products {
    padding: 5rem 2rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Category intro shown above product grid */
.category-intro {
    margin: 0 0 1rem 0;
}
.category-intro-text {
    background: var(--secondary-bg-color);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    color: var(--text-muted-color);
    line-height: 1.7;
}

.category-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem;
    margin-bottom: 2.5rem;
    scrollbar-width: thin;
    border-radius: 20px;
}

.category-btn {
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.category-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Product Search */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 2rem;
}

#product-search {
    width: 100%;
    background: var(--card-bg-color);
    border: 1px solid var(--border-color);
    padding: 0.8rem 3rem 0.8rem 1.5rem;
    border-radius: 30px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

#product-search:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25), 0 4px 16px rgba(0,0,0,0.1);
}

.search-container .fa-search {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: var(--text-muted-color);
}

.product-grid {
    display: grid;
    gap: 1.5rem;
    padding: 1.5rem 0;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
}

/* Homepage Products - Horizontal Scroll */
.products-section {
    padding: 4rem 0;
    background: var(--secondary-bg-color);
}

.homepage-products-wrapper {
    position: relative;
    margin: 2rem 0;
}

.products-horizontal-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-bg-color);
    -webkit-overflow-scrolling: touch;
}

.products-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-horizontal-scroll::-webkit-scrollbar-track {
    background: var(--secondary-bg-color);
    border-radius: 10px;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.products-horizontal-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.homepage-product-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.homepage-product-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .homepage-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-horizontal-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
    .homepage-product-card {
        min-width: 240px;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .products-horizontal-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .homepage-product-card {
        min-width: 200px;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .products-horizontal-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0.5rem 0.25rem;
    }
    .homepage-product-card {
        min-width: 160px;
        max-width: 180px;
    }
    .product-card-content h4 {
        font-size: 0.95rem;
    }
    .product-card-description {
        display: none;
    }
}

.view-all-products-container {
    text-align: center;
    margin-top: 2.5rem;
}

.skeleton-card {
    height: 300px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 12px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes card-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    animation: card-fade-in 0.5s ease-out forwards;
    background: var(--card-bg-color);
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px var(--shadow-color), 0 2px 4px -2px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -4px var(--shadow-color);
}

.product-card-image-container {
    width: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: right;
}

.product-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.product-status-badge.in-stock {
    background: rgba(40, 167, 69, 0.15);
    color: #1f8d43;
}

.product-status-badge.low-stock {
    background: rgba(255, 193, 7, 0.15);
    color: #a77206;
}

.product-status-badge.out-stock {
    background: rgba(220, 53, 69, 0.15);
    color: #85202e;
}

.product-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--heading-color);
}

.product-card-description {
    font-size: 0.875rem;
    color: var(--text-muted-color);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-card-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card-actions {
    margin-top: auto; /* Pushes the button to the bottom */
    padding-top: 1rem; /* Adds space above the button */
    display: flex;
}

.product-card-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Features Section */
#features {
    position: relative;
    background-color: var(--secondary-bg-color);
    padding: 10rem 0;
    overflow: hidden;
}

#features .container {
    position: relative;
    z-index: 1;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
.feature-item {
    background-color: var(--card-bg-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}
.feature-item p {
    color: var(--text-muted-color);
    line-height: 1.6;
}

/* Technology Section */
#technology {
    background-color: var(--bg-color);
    padding: 10rem 0;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.technology-item {
    background-color: var(--card-bg-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.technology-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.technology-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.technology-item h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.technology-item p {
    color: var(--text-muted-color);
    line-height: 1.6;
}

#about {
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
    background-color: var(--secondary-bg-color);
    /* clip-path: ellipse(85% 100% at 50% 100%); */
}
#about .container {
    position: relative;
    z-index: 1;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .features-redesigned-layout {
        grid-template-columns: 1fr;
    }
    .hybrid-actions {
        flex-direction: column;
    }
    .stats-grid, .service-grid, .seo-content-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Contact Section */
.cta-contact-section {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.cta-contact-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-contact-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* New Testimonials Section Styles */
.overflow-x-auto {
  overflow-x: auto;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex {
  display: flex;
}

.gap-6 {
  gap: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.testimonial-card-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  transition: box-shadow .5s;
  background-color: var(--card-bg-color);
  border-radius: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
  width: 350px;
  direction: rtl;
}

.testimonial-card-new:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}

@media (min-width: 768px) {
  .testimonial-card-new {
    width: 400px;
  }
}

.testimonial-card-content {
  padding: 2rem;
}

.testimonial-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.testimonial-icon-container {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(11, 116, 218, 0.1), rgba(30, 207, 208, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}

.testimonial-card-new:hover .testimonial-icon-container {
  transform: scale(1.1);
}

.testimonial-icon-container svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #0B74DA;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #FF7A3D;
  color: #FF7A3D;
}

.testimonial-body {
  position: relative;
  margin-bottom: 1.5rem;
  min-height: 120px;
}

.testimonial-body .quote-icon {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    color: #1ECFD0;
    opacity: 0.2;
}

.testimonial-body p {
  color: var(--text-muted-color);
  line-height: 1.75;
  position: relative;
  z-index: 10;
}

.testimonial-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-details h4 {
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.author-details .company {
  font-size: 0.875rem;
  color: #0B74DA;
  margin-bottom: 0.25rem;
}

.author-details .location {
  font-size: 0.75rem;
  color: var(--text-muted-color);
}

.testimonial-timestamp {
  font-size: 0.75rem;
  color: var(--text-muted-color);
}
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Testimonials */
#testimonials {
    overflow: hidden;
    padding: 5rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.testimonial-card {
    flex-shrink: 0;
    width: calc(100% / var(--visible-cards, 3) - 2rem);
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-avatar i {
    color: #fff;
    font-size: 3.5rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 0.5rem 0 0.25rem 0;
}

.rating {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.rating .fa-star-half-alt {
    color: #f39c12;
}

.rating .far {
    color: var(--border-color);
}

.testimonial-card {
    height: 380px; /* Give cards a fixed height */
}

.testimonial-author,
.testimonial-card p {
    width: 100%;
}

.testimonial-card p {
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted-color);
}

@media (max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: calc(100% - 2rem);
    }
}

/* Footer */
.site-footer {
    background-color: var(--secondary-bg-color);
    color: var(--text-muted-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-grid h3 {
    color: var(--heading-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-about {
    grid-column: span 1;
}

.footer-about h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem 0;
}

.footer-about p {
    color: var(--text-muted-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links ul,
.footer-contact p {
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-trust-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-trust h3,
.footer-social h3 {
    margin-bottom: 1rem;
}

.enamad-badge {
    width: 125px;
    height: 136px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--card-bg-color);
    transition: transform 0.3s ease;
}

.enamad-badge:hover {
    transform: scale(1.05);
}

.enamad-badge img {
    max-width: 100%;
    height: auto;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid ul li {
    margin-bottom: 0.6rem;
}
.social-media a {
    color: var(--text-muted-color);
    font-size: 1.5rem;
    margin-inline-end: 1rem;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.product-gallery .main-image-container img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product-gallery .thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 1rem;
}
.product-gallery .gallery-thumbnail {
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.product-gallery .gallery-thumbnail:hover {
    border-color: var(--primary-color);
}
.product-detail-info h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-top: 0;
}
.stock {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.in-stock { color: #28a745; }
.out-of-stock { color: #dc3545; }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
}
.specs-table th, .specs-table td {
    padding: 0.8rem;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
}
.specs-table th {
    background-color: var(--secondary-bg-color);
    width: 40%;
}

#contact {
    padding: 6rem 2rem;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
    text-align: right;
    margin-top: 2rem;
}

.contact-info, .map-container {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    background: var(--card-bg-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.contact-info p {
    margin: 0.5rem 0;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 350px;
    border: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail-info h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

.search-container {
    margin-bottom: 2rem;
    text-align: center;
}

#search-box {
    width: 50%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
}

/* Products Page Layout */
.products-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-area {
    width: 100%;
}

/* Category Sections with Horizontal Scroll */
#category-sections-container {
    margin-top: 2rem;
}

.category-products-section {
    margin-bottom: 4rem;
}

.category-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
    border-right: 4px solid var(--primary-color);
}

.category-products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-bg-color);
    -webkit-overflow-scrolling: touch;
}

.category-products-scroll::-webkit-scrollbar {
    height: 8px;
}

.category-products-scroll::-webkit-scrollbar-track {
    background: var(--secondary-bg-color);
    border-radius: 10px;
}

.category-products-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.category-products-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.category-product-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
}

.page-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.products-controls-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.products-controls-bar .search-container {
    flex: 1;
    min-width: 250px;
    max-width: 500px;
    margin: 0;
    display: flex;
    align-items: center;
}

.search-logo {
    flex-shrink: 0;
    border-radius: 8px;
}

.category-filter-container {
    min-width: 200px;
}

.category-filter-container select {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: var(--card-bg-color);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.category-filter-container select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25), 0 4px 16px rgba(0,0,0,0.1);
}

.products-info-bar {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--secondary-bg-color);
    border-radius: 8px;
    text-align: center;
}

.products-info-bar p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.products-info-bar strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Pagination */
.products-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--card-bg-color);
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Vazirmatn', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0.6rem 0.5rem;
    color: var(--text-muted-color);
}

.modern-mobile-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
}

@media (max-width: 1200px) {
    .modern-mobile-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .modern-mobile-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .products-controls-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-controls-bar .search-container {
        width: 100%;
        max-width: 100%;
    }
    
    .search-logo {
        height: 28px !important;
        margin-left: 8px !important;
    }
    
    .category-section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-products-scroll {
        gap: 1rem;
        padding: 0.5rem 0.25rem;
    }
    
    .category-product-card {
        min-width: 200px;
        max-width: 240px;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .category-section-title {
        font-size: 1.3rem;
    }
    
    .category-products-scroll {
        gap: 0.75rem;
    }
    
    .category-product-card {
        min-width: 160px;
        max-width: 180px;
    }
    
    .product-card-content h4 {
        font-size: 0.9rem;
    }
    
    .product-card-description {
        display: none;
    }
    
    .product-card-actions .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
    }
}

.no-products-found {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-muted-color);
}

@media (max-width: 480px) {
    .specs-table, .specs-table tbody, .specs-table tr, .specs-table td {
        display: block;
        width: 100%;
    }

    .specs-table tr {
        border-bottom: 2px solid var(--primary-color);
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .specs-table td {
        border: none;
        text-align: left;
        padding-left: 0;
    }

    .specs-table th {
        display: none;
    }

    .specs-table td::before {
        content: attr(data-label);
        float: right;
        font-weight: bold;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }
    #products, #contact {
        padding: 3rem 1rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    .contact-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: right;
        margin-bottom: 2rem;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-links,
    .footer-contact {
        grid-column: span 1;
    }
    
    .footer-trust-social {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-trust,
    .footer-social {
        flex: 1;
    }
    
    .social-media {
        display: flex;
        gap: 1rem;
    }
    
    .social-media a {
        margin: 0;
        font-size: 1.3rem;
    }
    
    /* Services & Trust - Mobile */
    .services-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .services-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title-small {
        font-size: 1.5rem;
    }
    .btn-contact-header span {
        display: none;
    }
    .site-header .logo {
        font-size: 1.2rem;
    }
    
    .site-header .logo img {
        height: 30px;
    }
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }
    .desktop-theme-toggle {
        display: none;
    }
    .mobile-menu-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    .site-header {
        padding: 0.5rem 0;
    }
    .container {
        width: 95%;
    }
    section {
        padding: 2rem 0.5rem;
    }
    #products, #contact {
        padding: 2rem 0.5rem;
    }
    .product-card {
        max-width: 100%;
    }
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: right;
        margin-bottom: 1.5rem;
    }
    
    .footer-about {
        grid-column: span 2;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .footer-links,
    .footer-contact {
        grid-column: span 1;
        text-align: right;
    }
    
    .footer-trust-social {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        gap: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .footer-trust,
    .footer-social {
        flex: 0 0 auto;
        text-align: center;
    }
    
    .enamad-badge {
        margin: 0 auto;
        width: 100px;
        height: 110px;
    }
    
    .social-media {
        justify-content: center;
        display: flex;
        gap: 1rem;
    }
    
    .social-media a {
        margin: 0;
        font-size: 1.3rem;
    }
    
    .footer-grid h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-about h4 {
        font-size: 0.9rem;
        margin: 0.4rem 0 0.75rem 0;
    }
    
    .footer-about p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-contact p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-links ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section Mobile */
    #hero-slider {
        height: 70vh;
        min-height: 400px;
        max-height: 600px;
    }
    
    .slide .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .slide h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .slide p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Services & Trust Mobile */
    .services-trust-section {
        padding: 2rem 0;
    }
    
    .services-block,
    .trust-block {
        padding: 1.25rem;
    }
    
    .section-title-small {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-card p {
        font-size: 0.85rem;
    }
    
    /* Services & Trust - Small Mobile */
    .services-trust-section {
        padding: 2.5rem 0;
    }
    
    .services-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .services-block,
    .trust-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
    }
    .cta-contact-section {
        padding: 3rem 1rem;
    }
    .cta-contact-section h2 {
        font-size: 1.5rem;
    }
    .view-all-products-container {
        margin-top: 2rem;
    }
    .view-all-products-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .search-container input {
        font-size: 0.9rem;
        padding: 0.6rem 2.5rem 0.6rem 0.75rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .product-detail-info {
        padding: 1.25rem;
    }
    
    .product-gallery .thumbnail-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

