/* ============================================
   郑州鸿月钻业有限公司 - 主样式表
   SEO/GEO优化 - 2024
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #1a3a5c;
    --primary-light: #234b75;
    --primary-dark: #0f2440;
    --accent: #c41230;
    --accent-hover: #a00e28;
    --spri: #2d6db5;
    --gold: #d4a843;
    --gold-light: #f0d078;
    --bg-light: #f7f8fa;
    --bg-gray: #eef0f4;
    --text-dark: #1a1a2e;
    --text-body: #3a3a4a;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border: #e2e4e9;
	--spri:#2f2f2f;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 0px;
    --radius-lg: 0px;
    --transition: 0.3s ease;
    --max-width: 1600px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-heading: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
}

/* ===== Global: No borders, no rounded corners ===== */
*,
*::before,
*::after {
    border-radius: 0 !important;
}

.btn, .btn-primary, .btn-outline, .btn-white, .btn-gold, .btn-lg,
.product-card, .news-card, .why-us-card, .team-card, .testimonial-card,
.cert-card, .app-card, .factory-card, .team-member-row, .history-process-item,
.contact-form, .quote-form-wrapper, .form-control, .timeline-card,
.showroom-bottombar, .showroom-bottom-btn, .showroom-nav-arrow,
.floating-contact a, .back-to-top, .filter-btn, .product-tag,
.news-card .news-date, .footer-qr img, .scene-item, .feature-icon,
.why-icon, .contact-info-item .contact-icon, .stat-item, .team-member-photo,
.team-photo-item, .factory-card-icon, .about-home .about-image,
.about-home .about-image::after, .product-image, .showroom-preview,
.video-wrapper, input, textarea, select, button, a, img,
[class*="rounded"], [class*="radius"], [style*="border-radius"],
.hotspot-dot, .hotspot-pulse {
    border-radius: 0 !important;
}

/* ===== Global: No borders ===== */
.product-card, .news-card, .why-us-card, .team-card, .testimonial-card,
.cert-card, .app-card, .factory-card, .team-member-row, .history-process-item,
.contact-form, .quote-form-wrapper,  .timeline-card, .scene-item,
.showroom-bottombar, .showroom-bottom-btn, .showroom-nav-arrow,
.floating-contact a, .filter-btn, .factory-card-icon, .team-member-photo {
    border: none !important;
}

.filter-btn {
    border: none !important;
    border-radius: 0 !important;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.75;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.35;
    font-weight: 700;
}

h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2.25rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.35rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.25rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-title .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--spri);
    margin: 1rem auto 0;
}

.section-title.light h2 {
    color: var(--white);
}

.section-title.light .subtitle {
    color: rgba(255,255,255,0.8);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 18, 48, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: #c49635;
    border-color: #c49635;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ===== Header / Top Bar ===== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 0.875rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar .contact-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .contact-info i,
.top-bar .contact-info .icon-svg {
    width: 14px;
    height: 14px;
    fill:#fff;
}

.top-bar .social-links {
    display: flex;
    gap: 16px;
}

.top-bar .social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--gold);
}

.top-bar .lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-bar .lang-switch a {
    color: rgba(255,255,255,0.7);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.top-bar .lang-switch a.active,
.top-bar .lang-switch a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

/* ===== Main Header / Navigation ===== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .logo img {
    height: 48px;
    width: auto;
}

.main-header .logo .company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.main-header .logo .company-name small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Search Toggle */
.nav-group {
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-body);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 8px;
    margin-left: 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.search-toggle:hover {
    color: var(--accent);
}

/* Search Bar */
.search-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.search-bar.active {
    max-height: 100px;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 14px 0;
}

.search-input {
    flex: 0 1 300px;
    width: auto;
    border: 1px solid var(--border);
    padding: 10px 16px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--accent);
}

.search-submit {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.search-submit:hover {
    background: var(--accent-hover);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
}

.search-close:hover {
    color: var(--text-body);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: block;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
    color: var(--accent);
    background: rgba(196, 18, 48, 0.05);
}

.main-nav > li > a i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform var(--transition);
}

.main-nav > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.main-nav li:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-body);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.main-nav .dropdown li a:hover {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 24px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Factory Showcase ===== */
.factory-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.factory-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.factory-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.factory-card-img {
    height: 220px;
    overflow: hidden;
}

.factory-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.factory-card:hover .factory-card-img img {
    transform: scale(1.08);
}

.factory-card-body {
    padding: 24px;
    text-align: center;
}

.factory-card-icon {
    width: 56px;
    height: 56px;
    margin: -44px auto 16px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(196, 18, 48, 0.3);
    position: relative;
    z-index: 2;
}

.factory-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.factory-card p {
    font-size:1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 1320px) {
    .main-nav > li > a {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    .main-nav .dropdown li a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1130px) {
    .main-nav > li > a {
        font-size: 0.85rem;
        padding: 10px 8px;
    }
    .main-nav .dropdown li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .factory-showcase {
        grid-template-columns: 1fr;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 600px;
    height: auto;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero .swiper {
    height: 100%;
}

.hero .swiper-slide {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 15%;
}

.hero .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .slide-overlay {
    display: none;
}

.hero .slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width:800px;
    padding: 0;
    margin-left: 10vw;
    color: var(--white);
}

.hero .slide-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero .slide-content h1 .highlight {
    color: var(--gold-light);
}

.hero .slide-content .hero-tagline {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 0.5rem;
    line-height:2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero .slide-content .hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero .slide-content .hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size:1.2rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    max-width: 200px;
    line-height: 1.8;
}

.hero .slide-content .hero-feature .feat-icon {
    color: var(--gold-light);
    font-size: 0.8rem;
    flex-shrink: 0;
    line-height: 1;
    position: relative;
    top: -1px;
}

.hero .slide-content .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .slide-content .btn-group .btn {
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero .slide-content .btn-group .btn-gold {
    background: #111;
    color: #fff;
    border-color: #111;
}

.hero .slide-content .btn-group .btn-gold:hover {
    background: #c41230;
    color: #fff;
    border-color: #c41230;
}

.hero .slide-content .btn-group .btn-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.hero .slide-content .btn-group .btn-white:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* Slide 2 — dark text */
.hero .slide-dark-text .slide-content h1,
.hero .slide-dark-text .slide-content .hero-tagline,
.hero .slide-dark-text .slide-content .hero-feature {
    color: #1a1a2e;
    text-shadow: none;
}

.hero .slide-dark-text .slide-content .hero-feature .feat-icon {
    color: #c41230;
}

.hero .slide-dark-text .btn-group .btn-gold {
    background: #111;
    color: #fff;
    border-color: #111;
}

.hero .slide-dark-text .btn-group .btn-white {
    color: #111;
    border-color: #111;
}

.hero .slide-dark-text .btn-group .btn-white:hover {
    background: #111;
    color: #fff;
}

.hero .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero .swiper-pagination-bullet-active {
    background: var(--gold);
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
    top: auto;
    bottom: 5%;
    margin-top: 0;
}

.hero .swiper-button-next {
    right: 5%;
}
.hero .swiper-button-prev {
    right: calc(5% + 58px);
    left: auto;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}
.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 1.2rem;
}

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--accent);
    padding: 40px 0;
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-bar .stat-item {
    color: var(--white);
}

.stats-bar .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-bar .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.stats-bar .stat-number .counter-plus {
    color: var(--gold-light);
}

/* ===== Section Spacing ===== */
.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--bg-light);
}

.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== About Section (Homepage) ===== */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-home .about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-home .about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}



.about-home .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-home .about-content .highlight-text {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-home .about-content p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.about-home .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 1.5rem;
}

.about-home .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-home .feature-item .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 18, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.product-card .product-image {
    position: relative;
    padding-top: 75%;
    background: var(--white);
    overflow: hidden;
}

.product-card .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-link {
    font-size: 0.9rem;
    font-weight: 600;
    color:#222;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.product-card .product-link:hover {
    gap: 10px;
}

/* Product image and title link wrappers */
.product-img-link {
    display: block;
}

.product-img-link img {
    display: block;
    width: 100%;
}

.product-name-link {
    color: var(--text-dark);
    text-decoration: none;
}

.product-name-link:hover {
    color: var(--accent);
    text-decoration: none;
}

/* Product Filter */
.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.product-filter .filter-btn {
    padding: 6px 22px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.product-filter .filter-btn:hover,
.product-filter .filter-btn.active {
    background: var(--spri);
    color: var(--white);
    border-color: var(--spri);
}
.product_con h3,.product_con p{margin-top:0.5em; margin-bottom:0.5em; line-height: 1.8em;}
.product_con table{margin-top:1em; margin-bottom: 1em;}
.product_con th{background-color:#eee!important;}
.product_con table,
.product_con th,
.product_con td {
    border: 1px solid #ccc !important;
    border-collapse: collapse; /* 合并相邻边框，避免双线 */
	padding: 10px!important;
}
.product-name a{color: var(--primary-dark)}

/* ===== Why Choose Us ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-us-card .why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.why-us-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-us-card p {
    font-size:1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Why-us cards on dark background */
.section-dark-why .why-us-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}
.section-dark-why .why-us-card:hover {
    background: rgba(255,255,255,0.15);
}
.section-dark-why .why-us-card h3 {
    color: #fff;
}
.section-dark-why .why-us-card p {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .why-us-card {
        padding:20px 10px;
    }
	.product-filter{gap:0px;}
	.product-filter .filter-btn{font-size:1.1rem;}
	
}

/* FAQ */
.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    max-width:1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform var(--transition);
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-question h3{font-size:1.2rem;}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

/* ===== Digital Showroom ===== */
.showroom-section {
    background: linear-gradient(135deg, #0f2440 0%, #1a3a5c 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.showroom-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/banners/banner_1.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.showroom-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showroom-info h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.showroom-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.showroom-info .showroom-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2rem;
}

.showroom-info .showroom-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}

.showroom-info .showroom-features li .check-icon {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.showroom-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    min-height: 300px;
    background: #1a2a40;
}

.showroom-preview canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: #1a2a40;
}

.showroom-preview .showroom-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(15,36,64,0.9);
    color: var(--white);
    z-index: 2;
}

.showroom-preview .showroom-hotspots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.showroom-preview .hotspot {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
    z-index: 3;
}

.showroom-preview .hotspot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: pulse-ring 2s infinite;
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.showroom-preview .hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    pointer-events: none;
}

.showroom-preview .hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Full Digital Showroom Page ===== */
.showroom-full {
    min-height: 80vh;
    position: relative;
    background: #0a1a2e;
}

.showroom-full #showroom-3d {
    width: 100%;
    height: 70vh;
}

.showroom-full .showroom-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.showroom-full .showroom-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.showroom-full .showroom-controls button:hover {
    background: rgba(255,255,255,0.3);
}

.showroom-full .showroom-info-panel {
    position: absolute;
    bottom: 100px;
    left: 24px;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    max-width: 300px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.showroom-full .showroom-info-panel h3 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 8px;
}

.showroom-full .showroom-info-panel p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== News Section ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-card .news-image {
    position: relative;
    padding-top: 60%;
    background: var(--bg-light);
    overflow: hidden;
}

.news-card .news-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-card .news-date {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--spri);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    z-index: 2;
}

.news-card .news-info {
    padding: 20px;
}

.news-card .news-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card .news-title a{ color: var(--text-dark);}
.news-info .product-link{font-size:14px;color:#666;}

.news-card .news-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-bottom: 10px;
}

/* ===== Team Member Rows (Reference style) ===== */
.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member-row {
    display: flex;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.team-member-row.team-member-reverse {
    flex-direction: row-reverse;
}

.team-member-photo {
    width: 45%;
    min-width: 45%;
    background: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.team-member-photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

.team-member-info {
    flex: 1;
    padding: 100px 50px 50px 50px;
    position: relative;
}

.team-member-info::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 40px;
    font-size: 4rem;
    color: #d0d0d0;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top:20px;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.team-member-name span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-body);
    margin-top: 4px;
}

.team-member-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .team-member-row,
    .team-member-row.team-member-reverse {
        flex-direction: column;
    }
    .team-member-photo {
        width: 100%;
        min-width: 100%;
        height: 280px;
    }
    .team-member-photo img {
        max-height: 280px;
    }
    .team-member-info {
        padding: 30px 24px;
    }
    .team-member-info::before {
        top: 10px;
        left: 20px;
        font-size: 3rem;
    }
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    overflow: hidden;
}

.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card .team-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item .contact-icon {
    width: 48px;
    height: 48px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--spri);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color var(--transition);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,18,48,0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* About Page Content */

/* History Cards */
.history-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.history-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 180px;
    line-height: 1.2;
    padding-top: 4px;
}

.history-body {
    flex: 1;
}

.history-body p {
    line-height: 1.9;
    color: var(--text-body);
    font-size: 1rem;
}

/* Team Photos Full-Width */
.team-photos-fullwidth {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.team-photos-fullwidth .team-photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

.team-photos-fullwidth .team-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-photos-fullwidth .team-photo-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .team-photos-fullwidth {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-photos-fullwidth {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Team Photos Grid */
.team-photos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.team-photo-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .team-photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .history-card {
        flex-direction: column;
        gap: 12px;
    }
    .history-year {
        font-size: 1.6rem;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .team-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== About Page ===== */
.page-header {
    background: var(--primary-dark);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/banners/banner_1.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.page-header .breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb a:hover {
    color: var(--gold);
}

.page-header .breadcrumb .separator {
    color: rgba(255,255,255,0.4);
}

/* About Page Content */
.about-timeline {
    position: relative;
    padding: 40px 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-item .timeline-year {
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 60px;
    padding-right: 0;
}

.timeline-year .year {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.timeline-year .event-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 8px;
}

.timeline-content {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -20px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: auto;
    right: -20px;
}

.timeline-content .timeline-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ===== History 3-Column Grid ===== */
.history-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.history-process-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.history-process-item p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .history-process-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== About Video ===== */
.about-video-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    background: #000;
}

.about-video-poster {
    width: 100%;
    display: block;
}

.about-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.about-video-play:hover {
    background: rgba(0,0,0,0.5);
}

.play-icon-triangle {
    display: block;
    width: 0;
    height: 0;
    border-left: 40px solid #fff;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    transition: transform 0.3s;
}

.about-video-play:hover .play-icon-triangle {
    transform: scale(1.15);
}

/* ===== Team Photos Swiper (Reference style) ===== */
.team-photos-swiper {
    max-width: 1260px;
    margin: 0 auto;
}

.team-photos-swiper .team-swiper {
    padding-bottom: 0;
}

.team-photos-swiper .team-swiper .swiper-wrapper {
    height: auto;
}

.team-photos-swiper .team-swiper .swiper-slide {
    overflow: hidden;
    background: #fff;
}

.team-photos-swiper .team-swiper .swiper-slide img {
    width: 100%;
    display: block;
}

.team-photos-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
    padding: 0 4px;
}

.team-photos-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.team-photos-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 20%;
    background: #333;
    transition: width 0.4s ease;
}

.team-photos-arrows {
    margin-left: auto;
    display: flex;
    gap: 16px;
}

.team-photo-prev,
.team-photo-next {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    padding: 0;
}

.team-photo-prev .icon {
    transform: rotate(180deg);
}

.team-photo-prev:hover,
.team-photo-next:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .team-photos-line {
        flex: 0 0 60px;
    }
}

/* ===== Certificate Display Grid ===== */
.cert-display-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-display-item {
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.cert-display-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}

.cert-name {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding:1rem 8px;
    margin: 0;
    font-weight:bold;
}

@media (max-width: 768px) {
    .cert-display-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Certificate Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.cert-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent), #8b0e24);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Appointment/Quote Form ===== */
.quote-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.quote-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.quote-form-wrapper h2 {
    text-align: center;
    margin-bottom: 8px;
}

.quote-form-wrapper .form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.main-footer {
    background:#222222;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact li i,
.footer-contact li .icon {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Toast Notification */
#toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.95);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 9999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    max-width: 90vw;
    text-align: center;
    line-height: 1.6;
    display: none;
}

#toast-notification strong {
    color: var(--gold-light);
}

/* Showroom canvas sizing */
#showroom-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-qr {
    padding: 10px 0;
    margin: 0;
}

.footer-qr img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.2);
}

.footer-qr p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ===== Back to Top ===== */
.back-to-top {
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: rgba(255,255,255,0.1);
}

/* ===== Floating Contact ===== */
.floating-contact {
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.45);
    border-radius: 32px;
    padding: 6px 0;
    width: 50px;
    align-items: center;
	transition: all 0.3s;
}

.fc-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    position: relative;
    transition: background 0.2s;
    text-decoration: none;
	transition: all 0.3s;
}

.fc-item:hover {
    background:#000;
}
.floating-contact a:hover{color:#fff;}

.fc-tooltip {
    position: absolute;
    right: calc(100%);
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.fc-item:hover .fc-tooltip,
.fc-tooltip:hover {
    opacity: 1;
    visibility: visible;
    right: calc(100%);
}

.fc-qr-tooltip {
    padding: 10px;
    text-align: center;
}
.fc-qr-img {
    width: 150px;
    display: block;
    object-fit: contain;
}
.fc-qr-text {
    font-size: 0.75rem;
    margin-top: 6px;
    display: block;
    text-align: center;
}

/* ===== Product Detail Page ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-detail .product-gallery {
    position: sticky;
    top: 100px;
}

.product-detail .product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 16px;
}

.product-detail .product-gallery .main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 30px;
}

.product-detail .product-thumbs {
    display: flex;
    gap: 10px;
}

.product-detail .product-thumbs .thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    border: 2px solid var(--border);
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--transition);
}

.product-detail .product-thumbs .thumb:hover,
.product-detail .product-thumbs .thumb.active {
    border-color: var(--accent);
}

.product-detail .product-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.product-info-detail{padding-top:3rem;}
.product-info-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-info-detail .product-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-info-detail .product-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.product-info-detail .product-description {
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-info-detail .product-specs {
    margin-bottom: 24px;
}

.product-info-detail .product-specs h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.product-info-detail .specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-info-detail .specs-table tr {
    border-bottom: 1px solid var(--border);
}

.product-info-detail .specs-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.product-info-detail .specs-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 35%;
}

.product-info-detail .product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Testimonials ===== */
.testimonials-swiper {
    overflow: hidden;
    position: relative;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-pagination {
    text-align: right;
    margin-top: 20px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
    display: inline-block;
    margin: 0 4px;
    border-radius: 50%;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: rgba(196, 18, 48, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-card .author-info .country {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-card .rating {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* ===== Process/Workflow ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    border-top: 2px dashed var(--border);
    z-index: 0;
}
.index-process-grid .process-step::after{width:0px;}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom:12px;
}

.process-step p {
    font-size:1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== OEM Timeline ===== */
.oem-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    padding: 24px 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.timeline-step:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.timeline-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    color: #fff;
}

.timeline-body h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.timeline-body p {
    font-size:1rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.step-num {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .oem-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
	.product-info-detail h1{font-size:1.5rem;}
}

@media (max-width: 480px) {
    .oem-timeline {
        grid-template-columns: 1fr;
    }
}

/* Industry Applications */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.app-card .app-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(26, 58, 92, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.app-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.app-card p {
    font-size:1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* App cards on dark background */
.section-dark-app .app-card {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}
.section-dark-app .app-card:hover {
    background: rgba(255,255,255,0.15);
}
.section-dark-app .app-card h3 {
    color: #fff;
}
.section-dark-app .app-card p {
    color: rgba(255,255,255,0.7);
}

.section-dark-app .app-card .app-icon {
    background: rgba(255,255,255,0.12);
    width: 64px;
    height: 64px;
}

.section-dark-app .app-card .app-icon i {
    color: var(--gold-light);
    font-size: 2rem;
}

/* ===== SEO Content Area ===== */
.seo-content {
    background: var(--bg-light);
    padding: 60px 0;
}

.seo-content .content-block {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content .content-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.seo-content .content-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary);
}

.seo-content .content-block p {
    margin-bottom: 1rem;
    line-height: 1.9;
    color: var(--text-body);
}

.seo-content .content-block ul {
    margin: 1rem 0;
    padding-left: 20px;
}

.seo-content .content-block ul li {
    list-style: disc;
    margin-bottom: 8px;
    line-height: 1.7;
}

.seo-content .keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.seo-content .keyword-tags span {
    background: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ===== Breadcrumb ===== */
.breadcrumb-nav {
    padding: 16px 0;
    background: var(--bg-light);
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--text-muted);
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav .current {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: var(--border);
}

/* ===== Alert / Message ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Map Section ===== */
.map-section {
    height: 400px;
    background: var(--bg-light);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Partners ===== */
.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.partner-item {
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-item img {
    height: 50px;
    width: auto;
}

/* ===== Video Section ===== */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper .video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: background var(--transition);
}

.video-wrapper .video-play-btn:hover {
    background: rgba(0,0,0,0.5);
}

.video-wrapper .play-icon {
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: transform var(--transition);
}

.video-wrapper:hover .play-icon {
    transform: scale(1.1);
}

/* ===== Single News Page ===== */
.news-detail {
    max-width: 800px;
    margin: 0 auto;
}

.news-detail .news-header {
    margin-bottom: 30px;
}

.news-detail .news-header h1 {
    font-size: 1.8rem;
}

.news-detail .news-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-detail .news-body {
    line-height: 2;
    font-size: 1.05rem;
}

.news-detail .news-body p {
    margin-bottom: 1.2rem;
}

.news-detail .news-body img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.news-detail .news-body h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.news-detail .news-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
}

.news-detail .news-body ul,
.news-detail .news-body ol {
    margin: 1rem 0;
    padding-left: 24px;
}

.news-detail .news-body ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.news-detail .news-body ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

.news-related {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* ===== Success Message ===== */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message .success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #28a745;
}

.success-message h3 {
    margin-bottom: 8px;
    color: #28a745;
}

/* ===== Print Styles ===== */
@media print {
    .main-header, .top-bar, .main-footer, .floating-contact,
    .back-to-top, .cta-section, .mobile-toggle {
        display: none !important;
    }
    body { font-size: 12pt; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }

    .about-home {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-detail .product-gallery {
        position: static;
    }

    .showroom-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {
    .main-header .container {
        justify-content: flex-start;
        gap: 10px;
    }
    .main-header .logo {
        order: 0;
    }
    .nav-group {
        order: 1;
        margin-left: auto;
    }
    .mobile-toggle {
        display: block;
        order: 2;
        margin-left: 0;
    }
    .main-nav .nav-close {
        display: flex;
    }
    .top-bar .contact-info {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 60px 0 20px;
        overflow-y: auto;
        z-index: 1000;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .main-nav.active {
        left: 0;
    }
    .main-nav > li {
        width: 100%;
        border-bottom: 1px solid #34344d;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .main-nav.active > li {
        opacity: 1;
        transform: translateX(0);
    }
    .main-nav.active > li:nth-child(1) { transition-delay: 0.05s; }
    .main-nav.active > li:nth-child(2) { transition-delay: 0.1s; }
    .main-nav.active > li:nth-child(3) { transition-delay: 0.15s; }
    .main-nav.active > li:nth-child(4) { transition-delay: 0.2s; }
    .main-nav.active > li:nth-child(5) { transition-delay: 0.25s; }
    .main-nav.active > li:nth-child(6) { transition-delay: 0.3s; }
    .main-nav.active > li:nth-child(7) { transition-delay: 0.35s; }
    .main-nav.active > li:nth-child(8) { transition-delay: 0.4s; }
    .main-nav.active > li:nth-child(9) { transition-delay: 0.45s; }
    .main-nav.active > li:nth-child(10) { transition-delay: 0.5s; }
    .main-nav.active > li:nth-child(11) { transition-delay: 0.55s; }
    .main-nav.active > li:nth-child(12) { transition-delay: 0.6s; }
    .main-nav > li > a {
        padding: 14px 24px;
        font-size: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .main-nav > li > a .nav-arrow {
        display: inline-block;
    }
    .main-nav .dropdown {
        position: static;
        box-shadow: none;
        background: var(--bg-light);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .main-nav li.sub-open > .dropdown {
        max-height: 500px;
        padding: 4px 0;
    }
    .main-nav .dropdown li a {
        padding: 10px 36px;
        font-size: 0.9rem;
    }
    .nav-group {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
}

/* Mobile (768px and below) */
.main-nav .nav-close {
    display: none;
}

@media (max-width: 768px) {
    .main-nav .nav-close {
        display: flex;
    }


    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .container {
        padding: 0 10px;
    }

    .top-bar .contact-info {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .menu-open .menu-overlay {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        padding: 50px 28px 30px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }

    .main-nav .nav-close {
        position: absolute;
        top: 14px;
        right: 18px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: rgba(255,255,255,0.5);
        font-size: 1.4rem;
        z-index: 2;
        border-bottom: none;
        margin-bottom: 0;
        padding: 0;
    }

    .main-nav .nav-close:hover {
        color: var(--gold);
    }

    .main-nav > li {
        width: 100%;
    }

    .main-nav > li:first-child {
        padding-top: 0;
    }

    .main-nav.active {
        right: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .main-nav > li > a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.85) !important;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .main-nav > li > a .nav-arrow {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.4);
        font-size: 0.7rem;
        flex-shrink: 0;
    }

    .main-nav > li > a:hover,
    .main-nav > li.active > a {
        color: var(--gold) !important;
        background: none !important;
    }

    .main-nav .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 12px;
        background: none;
        min-width: auto;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav li.sub-open > .dropdown {
        max-height: 300px;
    }

    .main-nav .dropdown li a {
        padding: 10px 12px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.55) !important;
    }

    .main-nav .dropdown li a:hover {
        background: none;
        color: var(--gold) !important;
        padding-left: 16px;
    }

    .hero {
        min-height: auto;
        height: auto;
        aspect-ratio: auto;
    }

    .hero .swiper-wrapper,
    .hero .swiper-slide {
        height: auto;
    }

    .hero .swiper-slide {
        padding-top: 20%;
        min-height: 300px;
    }

    .hero .slide-content {
        margin-left: 8vw;
        padding: 0 16px;
    }

    .hero .slide-content h1 {
        font-size: 1.8rem;
    }

    .hero .slide-content .hero-tagline {
        font-size: 0.95rem;
    }

    .hero .slide-content .hero-features {
        gap: 16px;
    }

    .hero .slide-content .hero-feature {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
		gap:10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }
	.stats-bar{padding:20px 0px;}
    .stats-bar .stat-number { font-size: 1.8rem; }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .container {
        padding: 0 10px;
    }

    .quote-form-wrapper {
        padding: 28px;
    }

    .hero .slide-content .btn-group {
        flex-direction: row;
        align-items: center;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: flex;
        width: 36px;
        height: 36px;
    }

    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {
        font-size: 0.9rem;
    }

    .main-header .logo .company-name {
        font-size: 1rem;
    }

    .main-header .logo img {
        height: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 24px;
        padding: 14px 0;
        gap: 6px;
    }

    .back-to-top,
    .floating-contact {
        right: 16px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-card .product-info {
        padding: 12px;
    }

    .product-card .product-image img {
        padding: 0;
    }

    .product-card .product-name {
        font-size: 0.9rem;
    }

    .hero {
        min-height: auto;
        height: auto;
        aspect-ratio: auto;
    }

    .hero .swiper-wrapper,
    .hero .swiper-slide {
        height: auto;
    }

    .hero .swiper-slide {
        padding-top: 24%;
        min-height: 280px;
    }

    .hero .slide-content {
        margin-left: 6vw;
        padding: 0 12px;
    }

    .hero .slide-content h1 {
        font-size: 1.4rem;
    }

    .hero .slide-content .hero-tagline {
        font-size: 0.85rem;
    }

    .hero .slide-content .hero-features {
        display: none;
    }

    .hero .slide-content .btn-group .btn {
        padding: 6px 12px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .hero .slide-content .btn-group {
        gap: 8px;
        flex-wrap: nowrap;
    }

    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: flex;
        width: 32px;
        height: 32px;
    }

    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {
        font-size: 0.8rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ===== Pagination ===== */
.pagination { display:flex; justify-content:center; gap:8px; margin-top:48px; }
.pagination .page-num, .pagination .page-next { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border:1px solid var(--border); color:var(--text-body); text-decoration:none; font-size:0.95rem; transition:all var(--transition); }
.pagination .page-next { width:auto; padding:0 16px; }
.pagination .page-num:hover, .pagination .page-next:hover { border-color:var(--spri); color:var(--spri); }

/* ===== News List (Horizontal) ===== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-row {
    display: grid;
    grid-template-columns: 180px 340px 1fr;
    align-items: stretch;
    background: var(--white);
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    padding: 24px 0;
}

.news-row-body-full {
    grid-column: 2 / -1;
}

.news-row:hover {
    background: #3d3d3d;
    box-shadow: var(--shadow-lg);
}

.news-row:hover .news-row-date *,
.news-row:hover .news-row-title,
.news-row:hover .news-row-title a,
.news-row:hover .news-row-excerpt,
.news-row:hover .news-row-more {
    color: #fff;
}

.news-row:hover .news-row-image img {
    opacity: 0.85;
}

.news-row-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 16px;
}

.news-row-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    transition: color var(--transition);
}

.news-row-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin: 6px 0 4px;
    transition: color var(--transition);
}

.news-row-day {
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
    transition: color var(--transition);
}

.news-row-image {
    overflow: hidden;
    background: var(--bg-light);
    min-height: 220px;
}

.news-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}

.news-row-body {
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-row-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.news-title-link {
    color: var(--spri);
    text-decoration: none;
}

.news-title-link:hover {
    color: #fff;
}

.news-row-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition);
}

.news-row-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--spri);
    text-decoration: none;
    transition: color var(--transition);
    align-self: flex-start;
}

.news-row-more:hover {
    color: var(--accent-hover);
    text-decoration: none;
}

@media (max-width: 768px) {
    .news-row {
        grid-template-columns: 110px 1fr;
    }
    .news-row-image {
        display: none;
    }
    .news-row-year {
        font-size: 1.5rem;
    }
    .news-row-body {
        padding: 16px;
    }
}


/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #eee;
}

.faq-item.active {
    border-color: #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq-header {
    cursor: pointer;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    transition: background 0.2s;
}

.faq-header:hover {
    background: rgba(0,0,0,0.015);
}

.faq-q-icon {
    color: var(--spri);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-toggle {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(0deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-body {
    max-height: 500px;
}

.faq-body p {
    padding: 0 24px 20px 56px;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin: 0;
}

.faq-body a {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .faq-header {
        padding: 16px 16px;
    }
    .faq-body p {
        padding: 0 16px 16px 52px;
    }
}
.pagination .page-num-current { background:var(--spri); color:#fff; border-color:var(--spri); }

/* ===== Mobile Bottom Nav & Call ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    padding: 6px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-bottom-nav .bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 4px 8px;
    transition: color 0.2s;
}

.mobile-bottom-nav a i {
    font-size: 1.1rem;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--spri);
}

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    z-index: 998;
    box-shadow: 0 4px 16px rgba(196,18,48,0.4);
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-call-btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-contact {
        display: none !important;
    }
    .back-to-top {
        bottom: 100px !important;
    }
    .mobile-bottom-nav {
        display: block;
    }
    .mobile-call-btn {
        display: flex;
    }
    body {
        padding-bottom:55px;
    }
}
.product_detail{overflow: hidden;}
/* ===== Product Detail ===== */
.product-gallery {
    position: sticky;
    top: 100px;
    max-width: 700px;
    overflow: hidden;
}

.product-gallery .pd-swiper-main {
    overflow: hidden;
}

.pd-swiper-main {
    margin-bottom: 12px;
    background: var(--bg-light);
}

.pd-swiper-main .swiper-slide {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.image-zoom {
    cursor: crosshair;
    overflow: hidden;
}

.pd-zoom-lens { display: none; }

.pd-zoom-result {
    position: absolute;
    top: 0;
    right: -330px;
    width: 320px;
    height: 320px;
    border: 1px solid var(--border);
    background-repeat: no-repeat;
    background-size: 300%;
    display: none;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

.pd-swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.pd-swiper-main .swiper-slide.image-zoom {
    cursor: crosshair;
}

.pd-swiper-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.pd-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--accent);
}

.pd-swiper-thumbs .swiper-slide img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    padding: 4px;
    background: var(--bg-light);
}

.pd-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pd-thumbs-wrap .pd-swiper-thumbs {
    flex: 1;
    min-width: 0;
}

.pd-thumb-prev,
.pd-thumb-next {
    width: 28px;
    height: 48px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.pd-thumb-prev:hover,
.pd-thumb-next:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.product-detail-cat {
    display: inline-block;
    font-size: 0.9rem;
    color:#666;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-detail-title {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-detail-desc {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pd-meta-item {
    font-size: 0.95rem;
    color: var(--text-body);
}

.pd-meta-item i {
    color: var(--text-muted);
    width: 20px;
    text-align: center;
}

.pd-download {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 20px;
    background: var(--bg-light);
    border-radius: 4px;
}

.pd-download-icon {
    font-size: 1.8rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.pd-download-text {
    flex: 1;
}

.pd-download-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pd-download-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pd-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s;
}

.pd-nav-link:hover { color: var(--accent); }

.pd-nav-link span {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pd-next { text-align: right; }
.pd-prev { text-align: left; }

@media (max-width: 768px) {
    .product-gallery { position: static; max-width: 100%; }
    .product-detail-title { font-size: 1.5rem; }
    .product-detail-nav { flex-direction: column; gap: 16px; }
    .product-info-detail{padding-top:0px;}
    .product-detail-actions { flex-wrap: nowrap; gap: 8px; }
    .product-detail-actions .btn { flex: 1; text-align: center; padding: 11px 8px; font-size: 0.85rem; }
}

/* ===== News Detail ===== */
.news-article-cat {
    display: inline-block;
    background: rgba(196,18,48,0.1);
    color: var(--accent);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-article-title {
    font-size: 2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-article-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.news-article-meta span {
    display: flex;
    align-items: center;
    gap:3px;
}

/* ===== News Detail Sidebar ===== */
.news-detail-layout {
    display: flex;
    gap: 40px;
}

.news-detail-main {
    flex: 1;
    min-width: 0;
}

.news-detail-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.nds-box {
    margin-bottom: 28px;
}

.nds-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.nds-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nds-cat-list li {
    border-bottom: 1px solid var(--border);
}

.nds-cat-list li a {
    display: block;
    padding: 10px 12px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nds-cat-list li a i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    margin-right: 4px;
}

.nds-cat-list li a:hover,
.nds-cat-list li.active a {
    color: var(--accent);
    background: rgba(196,18,48,0.03);
    padding-left: 16px;
}
.nds-cat-list li a:hover i,
.nds-cat-list li.active a i {
    color: var(--accent);
}

.nds-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nds-news-list li {
    margin-bottom: 8px;
}

.nds-news-list li a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px 10px 22px;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 4px;
    transition: all 0.2s;
    position: relative;
}

.nds-news-list li a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.nds-news-list li a span {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

.nds-news-list li a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.nds-contact-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
}

.nds-contact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.nds-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nds-contact-info a i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.nds-contact-info a:hover {
    color: var(--accent);
}

.nds-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.9rem;
}

.nds-contact-info span i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .news-detail-layout {
        flex-direction: column;
        gap: 24px;
    }
    .news-detail-sidebar {
        width: 100%;
    }
}

.news-article-image {
    margin-bottom: 32px;
}

.news-article-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.news-article-body {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-body);
    margin-top: 2.5rem;
}

.news-article-body h1,
.news-article-body h2,
.news-article-body h3 {
    margin: 1em 0;
}

.news-article-body h1 {
    font-size: 1.7rem;
}

.news-article-body h2 {
    font-size: 1.3rem;
    padding-bottom: 8px;
}

.news-article-body h3 {
    font-size: 1.1rem;
}

.news-article-body p {
    line-height: 1.8em;
    margin: 1em 0;
}

.news-article-body img {
    margin: 1em 0;
}

.news-article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .news-article-title { font-size: 1.4rem; }
    .news-article-body { font-size: 1rem; }
    .news-article-nav {
        flex-direction: column;
        gap: 10px;
    }
    .news-article-nav .pd-nav-link {
        width: 100%;
        padding: 14px 18px;
        background: var(--bg-light);
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    .news-article-nav .pd-next {
        text-align: right;
        justify-content: flex-end;
    }
    .news-article-nav .pd-nav-link span {
        flex: 1;
    }
    .news-article-nav .btn {
        margin: 6px 0;
    }
}

/* ===== Service Page ===== */
#service-cta h2{ color:#ffffff;}
.service-hero {
    padding: 32px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-hero-text {
    flex: 1;
}

.service-hero-img {
    flex: 0 0 700px;
}

.service-hero-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .service-hero {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .service-hero-img {
        flex: 0 0 auto;
        max-width: 100%;
        margin: 0 auto;
    }
}

.service-bg-section {
    background: url('../images/1.webp') center/cover no-repeat fixed;
}

.service-bg-section .section-header h2,
.service-bg-section .section-header p,
.service-bg-section .section-subtitle,
.service-bg-section .section-title h2,
.service-bg-section .section-title .subtitle {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.service-hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 24px;
    transition: all 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
	margin-top:10px;
}

.service-card-list li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-card-list li::before {
    content: '✓ ';
    color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 6px;
}

.process-steps {
    display: flex;
    gap: 0;
    margin: 40px 0;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.process-step-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.process-step-content p {
    font-size:0.95rem;
    color: var(--text-muted);
}

.cta-inline {
    background: linear-gradient(135deg, var(--accent), #8b0e24);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-inline .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== Cases Page ===== */
.case-card {
    margin-bottom: 48px;
}

.case-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(196,18,48,0.05), rgba(196,18,48,0.02));
    border-radius: 4px;
    margin-bottom: 24px;
}

.case-hero .case-icon {
    font-size: 2rem;
    color: var(--accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.case-hero .case-number {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-hero h2 {
    font-size: 1.3rem;
    margin: 4px 0 0;
	line-height: 1.5em;
}

.stats-highlight {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.stats-highlight .stat-badge {
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.client-quote {
    background: var(--bg-light);
    padding: 16px 20px;
    border-left: 3px solid var(--accent);
    font-style: italic;
    margin: 24px 0;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-hero-desc {
        font-size: 0.95rem;
    }
    .process-steps {
        flex-direction: column;
        gap: 16px;
    }
    .process-step::after {
        display: none;
    }
    .case-hero {
        flex-direction: column;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .faq-question {
        font-size: 1rem;
        padding: 14px 16px;
    }
    .faq-answer {
        padding: 0 16px;
    }
    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }
	.faq-question h3{font-size:1rem;}
	.faq-q{display:none;}
}

/* ============================================
   Cases Page - Extracted from inline styles
   ============================================ */

/* Section modifiers */
.cases-section-no-pb {
    padding-bottom: 0;
}
.cases-section-bg {
    background: var(--bg-light);
}

/* Intro */
.cases-intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.cases-intro-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.cases-accent-text {
    color:#222;
	font-weight:bold;
}

/* Case Hero Container */
.cases-hero-container {
    border-radius: 12px !important;
    padding: 60px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.cases-hero-theme-1 {
    background: linear-gradient(135deg, rgba(26,58,92,0.90) 0%, rgba(45,106,159,0.90) 100%), url('../images/ca1.jpg') center/cover no-repeat;
}
.cases-hero-theme-2 {
    background: linear-gradient(135deg, rgba(45,106,79,0.90) 0%, rgba(64,145,108,0.90) 100%), url('../images/ca2.jpg') center/cover no-repeat;
}
.cases-hero-theme-3 {
    background: linear-gradient(135deg, rgba(90,62,43,0.90) 0%, rgba(139,105,20,0.90) 100%), url('../images/ca3.jpg') center/cover no-repeat;
}
.cases-hero-theme-4 {
    background: linear-gradient(135deg, rgba(2,62,138,0.90) 0%, rgba(0,119,182,0.90) 100%), url('../images/ca4.jpg') center/cover no-repeat;
}
.cases-hero-theme-5 {
    background: linear-gradient(135deg, rgba(43,43,43,0.90) 0%, rgba(74,74,74,0.90) 100%), url('../images/ca5.jpg') center/cover no-repeat;
}
.cases-hero-theme-6 {
    background: linear-gradient(135deg, rgba(123,44,0,0.90) 0%, rgba(184,92,18,0.90) 100%), url('../images/ca6.jpg') center/cover no-repeat;
}

.cases-hero-watermark {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 160px;
    opacity: 0.08;
    color: #fff;
}
.cases-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.cases-hero-icon-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cases-hero-icon {
    font-size: 36px;
    color: #fff;
}
.cases-hero-info {
    color: #fff;
}
.cases-badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px !important;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.cases-hero-title {
    color: #fff;
    margin: 8px 0 4px;
    font-size: 1.8rem;
}
.cases-hero-location {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
	margin-top:5px;
}
.cases-icon-mr {
    margin-right: 6px;
}
.cases-content-grid-left{padding-left:10px;}

/* Content Grid */
.cases-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Text Content */
.cases-section-title {
    color: var(--text-dark);
    margin-top: 0;
}
.cases-section-title-mt {
    color: var(--text-dark);
    margin-top: 24px;
}
.cases-title-icon {
    margin-right: 8px;
    color:var(--primary);
}
.cases-body-text {
    color: var(--text-muted);
    line-height: 1.8;
}
.cases-list {
    color: var(--text-muted);
    line-height: 2;
}

/* Stats Box */
.cases-stats-box {
    background: #fff;
    border-radius: 12px !important;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.cases-stats-title {
    margin: 0 0 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}
.cases-stats-grid {
    display: grid;
    gap: 16px;
}

/* Stat Items - base */
.cases-stat-item {
    border-radius: 8px !important;
    padding: 18px;
    text-align: center;
    border-left-width: 4px;
    border-left-style: solid;
}
.cases-stat-value {
    font-size: 2rem;
    font-weight: 800;
}
.cases-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Stat color themes */
.cases-stat-blue {
    background: linear-gradient(135deg, #e8f4fd, #f0f7ff);
    border-left-color: var(--accent);
}
.cases-stat-blue .cases-stat-value {
    color: var(--accent);
}

.cases-stat-green {
    background: linear-gradient(135deg, #e8f8e8, #f0fff0);
    border-left-color: #40916c;
}
.cases-stat-green .cases-stat-value {
    color: #40916c;
}

.cases-stat-amber {
    background: linear-gradient(135deg, #fdf4e8, #fff8f0);
    border-left-color: #8b6914;
}
.cases-stat-amber .cases-stat-value {
    color: #8b6914;
}

.cases-stat-sky {
    background: linear-gradient(135deg, #e8f0fe, #f0f6ff);
    border-left-color: #0077b6;
}
.cases-stat-sky .cases-stat-value {
    color: #0077b6;
}

.cases-stat-purple {
    background: linear-gradient(135deg, #f5f0fb, #faf7ff);
    border-left-color: #6b3fa0;
}
.cases-stat-purple .cases-stat-value {
    color: #6b3fa0;
}

.cases-stat-orange {
    background: linear-gradient(135deg, #fef3e8, #fff8f0);
    border-left-color: #b85c12;
}
.cases-stat-orange .cases-stat-value {
    color: #b85c12;
}

/* Client Quote */
.cases-quote-wrapper {
    margin-top: 24px;
    background: var(--bg-light);
    border-radius: 12px !important;
    padding: 24px;
    border-left: 4px solid var(--accent);
}
.cases-quote-icon {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 8px;
    display: block;
}
.cases-quote-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}
.cases-quote-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 10px 0 0;
}

/* ============================================
   Cases Page - Mobile Responsive
   ============================================ */

@media (max-width: 768px) {
    .cases-hero-container {
        padding: 24px;
        margin-bottom: 28px;
    }
    .case-card {
        margin-bottom: 0;
    }
    .cases-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cases-hero-title {
        font-size: 1.3rem;
    }
    .cases-hero-icon-circle {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }
    .cases-hero-icon {
        font-size: 24px;
    }
    .cases-hero-watermark {
        font-size: 100px;
        top: -20px;
        right: -20px;
    }
    .cases-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cases-stats-box {
        padding: 20px;
    }
    .cases-stats-title {
        margin: 10px 0;
    }
    .cases-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
		margin-bottom:10px;
    }
    .cases-stat-item {
        padding: 14px;
    }
    .cases-stat-value {
        font-size: 1.5rem;
    }
    .cases-quote-wrapper {
        padding: 16px;
        margin-top: 16px;
    }
    .cases-section-title-mt {
        margin-top: 16px;
    }
    .cases-intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cases-hero-container {
        padding: 16px;
        margin-bottom: 20px;
    }
    .cases-hero-title {
        font-size: 1.1rem;
    }
    .cases-hero-content {
        gap: 12px;
    }
    .cases-stats-box {
        padding: 14px;
    }
    .cases-stats-grid {
        gap: 8px;
		
    }
    .cases-stat-item {
        padding: 10px 6px;
    }
    .cases-stat-value {
        font-size: 1.3rem;
    }
}
