/*
Theme Name: Cluer
Theme URI: https://cluer.com/
Author: Cluer Team
Author URI: https://cluer.com/
Description: A modern IoT product theme for Cluer - Make Sensing Matter
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cluer
Tags: responsive-layout, custom-menu, custom-post-types, featured-images, blog, e-commerce
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00A86B;
    --primary-dark: #008A5A;
    --secondary-color: #1A1A1A;
    --accent-color: #00D4AA;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}
ul{list-style: none;padding: 0;margin: 0;}
li{list-style: none;padding: 0;margin: 0;}
a{text-decoration: none;}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 70px;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo a img {    
    height: 3rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    padding: 0;
    pointer-events: none;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hover bridge - transparent area to connect navbar and dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    height: 18px;
    background: transparent;
    pointer-events: auto;
}

/* Mega Dropdown Menu */
.dropdown-mega {
    min-width:auto;
    width: max-content;
    padding: 1.5rem;
    padding-top: calc(1.5rem + 8px);
    display: flex;
    gap: 2rem;
    left: 0;
    right: auto;
    transform: translate(-30%);
    min-height: 450px;
}



.dropdown-left {
    width: 220px;
    min-width: 220px;
    padding-right: 1rem;
    border-right: 1px solid var(--border-color);
    flex-shrink: 0;
}

.dropdown-left h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.dropdown-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-left ul li {
    margin-bottom: 0.5rem;
}

.dropdown-left ul li a {
    display: block;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 6px;
}

.dropdown-left ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 177, 79, 0.08);
}

.dropdown-left ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(0, 177, 79, 0.08);
}

.dropdown-left ul li a.active::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.dropdown-right {
    flex: 1;
    padding-left: 1rem;
    min-width: 950px;
    flex-shrink: 0;
    min-height: 380px;
}

.dropdown-right h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.featured-products {
    display: flex;
    gap: 1rem;
}

.featured-products-group {
    display: none;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}
.featured-products > :first-child {
    display: flex;
}
.featured-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    width: 100%;
    height: 144px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.card-content h5{
     font-size: 1rem;
    font-weight: normal;
    color: var(--text-primary);
    margin-bottom: 0rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-align: left;
    min-height: 3rem;
}
.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

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

.card-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.card-link:hover {
    gap: 0.5rem;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.featured-item:hover {
    background: rgba(0, 168, 107, 0.05);
}

.featured-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-info {
    display: flex;
    flex-direction: column;
}

.featured-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.featured-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}



.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(0, 168, 107, 0.05);
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: rgba(0, 168, 107, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.section-header .view-all {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.products-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.products .product-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.products .product-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.product-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}
.product-icon-box img{
    width: 50px;
    height: 50px;
    margin: 5px;
    object-fit: cover;
    border-radius: 12px;
}
.products .product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    height: 3rem;
    color: var(--text-primary);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 4rem 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
	  padding-bottom:1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    width: 3rem;
    height: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
}
.footer-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
	.nav-logo a img {    
		height: 2rem;
	}
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        transition: left 0.3s ease;
        z-index: 2000;
    }

    .nav-menu.active {
        left: 0;
        z-index: 9999;
    }

    .nav-menu.active .nav-dropdown {
        width: 100%;
    }

    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;
        border-top: none;
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active .dropdown-mega {
        min-width: 100%;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu.active .dropdown-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .nav-menu.active .dropdown-right {
        padding-left: 0;
        display: none;
    }

    .nav-menu.active .dropdown-menu a {
        padding: 0.75rem 1.5rem;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 1000px;
        transform: translateY(0);
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-top: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Dropdown Menu Mobile */
    .dropdown-mega {
        width: 100%;
        min-width: auto;
        min-height: unset;
        height: auto;
    }
    
    .dropdown-content {
        flex-direction: column;
    }
    
    .dropdown-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .dropdown-right {
        width: 100%;
        min-width: auto;
        min-height: auto;
    }
    
    .featured-products {
        flex-direction: column;
    }
    
    .featured-products-group {
        flex-direction: column;
    }
    
    .featured-card {
        min-width: 100%;
        max-width: 100%;
    }
    
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-main {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-form-section>p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.contact-item i {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

.address-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.address-item {
    display: flex;
    gap: 1rem;
}

.address-item i {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.address-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.address-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.qr-card {
    text-align: center;
}

.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.qr-code p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.services-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.services-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 107, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.target-clients {
    max-width: 1440px;
    margin: 4rem auto 0;
    text-align: center;
}

.target-clients h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: rgba(0, 168, 107, 0.05);
}

.client-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.client-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}


.faq-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-toggle:hover {
    background: rgba(0, 168, 107, 0.05);
}

.faq-toggle i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-content p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.working-hours {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.working-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.working-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.working-info i {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 168, 107, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.working-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.working-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.working-note {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.social-links h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: right;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 168, 107, 0.3);
    color: var(--accent-color);
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
	.footer-content {
    grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .working-container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links h3 {
        text-align: center;
    }
    
    .exhibition-items {
        flex-direction: column;
        align-items: center;
    }
}

.rank-math-breadcrumb-box{
	max-width: 1440px;
    margin: 0 auto;
    padding:0rem 2rem;
}
.rank-math-breadcrumb{
		padding:0.5rem 0;
		width:100%;
    display: flex;
    justify-content: flex-start;border-bottom:1px solid rgba(0, 0, 0, 0.05);font-size:0.9rem;}
.rank-math-breadcrumb a {
    color: #222;
    text-decoration: none;
}
.rank-math-breadcrumb p{margin-left:2rem;}
.rank-math-breadcrumb a:hover {
    color: var(--primary-color)
}
/* 分隔符间距 */
.rank-math-breadcrumb .separator {
    margin: 0 8px;
}
/* 当前页面文字 */
.rank-math-breadcrumb span {
    color: #999;
}

/*page-about-us*/

.about-us-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

.about-us-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elementor-section {
    margin-bottom: 60px;
}

.elementor-section:last-child {
    margin-bottom: 0;
}

.elementor-container {
    padding: 0;
}

.elementor-row {
    display: flex;
    flex-wrap: wrap;
}

.elementor-column {
    width: 100%;
}

.elementor-column h2 {
    font-size: 1.5rem;
    color: #00A86B;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00A86B;
    display: inline-block;
}

.elementor-column p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.elementor-column p:last-child {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00A86B;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

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

.timeline-year {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #00A86B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00A86B, #00D4AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.value-item h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.value-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.certifications-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.certifications-section h2 {
    color: #00A86B;
}

@media (max-width: 768px) {
    .about-us-page {
        padding-top: 90px;
    }
    
    .elementor-column h2 {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .certifications-section {
        padding: 20px;
    }
}

/*page-how-we-help*/
.how-we-help-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

.how-we-help-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 0;
}

.section h2 {
    font-size: 1.5rem;
    color: #00A86B;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00A86B;
    display: inline-block;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.section-text {
    padding: 10px 0;
}

.section-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    text-align: justify;
}

.section-text p:last-child {
    margin-bottom: 0;
}

.section-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.certificates-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.certificate-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,168,107,0.15);
}

.certificate-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

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

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

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,168,107,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

.certificate-overlay span {
    font-size: 0.85rem;
    color: #fff;
}

.certificate-item h3 {
    font-size: 0.95rem;
    color: #1a1a1a;
    margin: 0;
}

.certificate-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.certificate-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 85%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.4);
}

#lightboxImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.gallery-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,168,107,0.9);
    color: #fff;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .how-we-help-page {
        padding-top: 90px;
    }
    
    .section h2 {
        font-size: 1.3rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-image img {
        height: 200px;
    }
    
    .gallery-section {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        height: 150px;
    }
}


/*page-shop-by-brand*/
.shop-by-brand-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

.brand-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1rem;
    color: #666;
}

.brand-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.category-item:hover {
    border-color: #00A86B;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00A86B, #00D4AA);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.category-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.category-info h2 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.category-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 15px 0;
}

.category-brands ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.category-brands li {
    margin: 0;
}

.category-brands a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    display: inline-block;
    transition: color 0.2s ease;
}

.category-brands a:hover {
    color: #00A86B;
}

.brand-support {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.brand-support p {
    color: #666;
    font-size: 0.95rem;
}

.brand-support a {
    color: #00A86B;
    text-decoration: none;
    font-weight: 500;
}

.brand-support a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .shop-by-brand-page {
        padding-top: 90px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .brand-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        padding: 20px;
    }
    
    .category-brands ul {
        grid-template-columns: repeat(2, 1fr);
    }
}