/* SANY Global Website - Official Style */

:root {
    --sany-red: #c9a96e;
    --sany-red-dark: #a08050;
    --sany-black: #2c2c2c;
    --sany-dark: #333;
    --sany-gray: #666;
    --sany-light-gray: #999;
    --sany-bg: #faf8f5;
    --sany-white: #fff;
    --sany-border: #e5e5e5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    background: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sany-black);
    background: var(--sany-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Black/Gold/Gray Theme */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-red:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-white:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-outline:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-outline-sm:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

/* Header */
/* Top Bar - Contact Info */
.top-bar {
    background: rgba(26, 26, 26, 0.95);
    padding: 8px 0;
    position: relative;
    width: 100%;
    transition: background 0.3s ease;
}

.home .top-bar {
    background: transparent;
}

.top-bar.scrolled {
    background: rgba(26, 26, 26, 0.95);
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.top-bar-left {
    flex-shrink: 0;
    margin-right: auto;
    margin-left: -60px;
}

.company-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-name {
    font-family: 'Arial Black', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: #2c2c2c;
}

.top-bar-item i {
    font-size: 14px;
    color: var(--sany-red);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

.header-top {
    background: transparent;
    padding: 8px 0;
    border-bottom: none;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-top-links a {
    color: rgba(0,0,0,0.7);
    font-size: 12px;
    transition: var(--transition);
}

.header-top-links a:hover {
    color: var(--sany-white);
}

.header-top-right {
    display: flex;
    gap: 20px;
}

.header-top-right a {
    color: rgba(0,0,0,0.7);
    font-size: 13px;
    transition: var(--transition);
}

.header-top-right a:hover {
    color: var(--sany-white);
}

.header-main {
    background: rgba(26, 26, 26, 0.95);
    padding: 0;
    position: relative;
    transition: background 0.3s ease;
}

.home .header-main {
    background: transparent;
}

.header-main.scrolled {
    background: rgba(26, 26, 26, 0.95);
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

/* Left: Logo */
.logo {
    flex-shrink: 0;
}

/* Center: Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Right: Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    
    .process-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 0px;
    cursor: pointer;
    background: #faf8f5;
    border: 1px solid #333;
}

.header-action-btn:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.header-action-btn i {
    font-size: 14px;
}

.btn-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: gold;
    color: #faf8f5;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0px;
    transition: var(--transition);
    margin-left: 8px;
    border: 1px solid gold;
}

.btn-inquiry:hover {
    background: #fff;
    border-color: #2c2c2c;
    color: #faf8f5;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-w {
    height: 60px;
    width: auto;
    display: block;
}

.logo-divider {
    width: 2px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.logo-main {
    font-size: 22px;
    font-weight: 900;
    color: var(--sany-white);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-pro {
    color: gold;
    font-weight: 900;
}

.logo-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.2;
}



.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--sany-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.main-nav a:hover {
    background: var(--sany-white);
    color: var(--sany-red);
}

.main-nav a:hover,
.main-nav li.active > a {
    opacity: 0.9;
}

.main-nav i {
    font-size: 11px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--sany-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    border-radius: 0px;
    transition: var(--transition);
    z-index: 9999;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--sany-gray);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    color: var(--sany-dark);
    background: gold;
}

/* ASGCO Style Dropdown */
.dropdown-menu.asgco-style {
    min-width: 280px;
    background: #faf8f5;
    padding: 0;
    border-radius: 0px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.dropdown-menu.asgco-style .dropdown-brand {
    background: #2a2a2a;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 2px solid gold;
}

.dropdown-menu.asgco-style .brand-name {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: gold;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.dropdown-menu.asgco-style .brand-tagline {
    display: block;
    font-size: 11px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dropdown-menu.asgco-style .dropdown-category {
    background: #faf8f5;
    color: gold;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 20px 8px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.dropdown-menu.asgco-style .dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important;
}

.dropdown-menu.asgco-style .dropdown-list li {
    margin: 0;
    border-bottom: 1px solid #333;
    display: block !important;
    width: 100% !important;
}

.dropdown-menu.asgco-style .dropdown-list li:last-child {
    border-bottom: none;
}

.dropdown-menu.asgco-style .dropdown-list li a {
    display: block;
    padding: 12px 20px;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.4;
    transition: all 0.2s ease;
    background: transparent;
}

.dropdown-menu.asgco-style .dropdown-list li a:hover {
    background: gold;
    color: #faf8f5;
}

/* Two Column Dropdown for Solutions - now single column */
.dropdown-menu.two-column {
    min-width: 280px;
    display: block;
    padding: 8px 0;
}

.dropdown-menu.two-column li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu.two-column li a {
    white-space: nowrap;
    padding: 10px 24px;
    line-height: 1.5;
    font-size: 14px;
}

/* Products dropdown specific - single column */
.dropdown-menu.products-two-column {
    min-width: 280px;
    display: block;
    padding: 8px 0;
}

.dropdown-menu.products-two-column li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu.products-two-column li a {
    white-space: nowrap;
    padding: 10px 24px;
    line-height: 1.5;
    font-size: 14px;
}

/* Mega Menu - Full Width Bar */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
    background: #f8f8f8;
    border-top: 3px solid var(--sany-red);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-grid {
    display: flex;
    justify-content: center;
    gap: 0;
}

.mega-col {
    flex: 1;
    max-width: 200px;
    padding: 25px 30px;
    border-right: 1px solid #e0e0e0;
    text-align: left;
}

.mega-col:last-child {
    border-right: none;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--sany-black);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sany-red);
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-col ul li a {
    color: #555;
    font-size: 14px;
    display: block;
    transition: var(--transition);
}

.mega-col ul li a:hover {
    color: var(--sany-red);
    padding-left: 5px;
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid #e5e5e5;
}

.btn-quote:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--sany-white);
}

/* Hero Banner - Carousel */
/* Hero Content Section - SEO Optimized */
.hero-content-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 60px 0 40px;
    margin-top: -1px;
}

.hero-text-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-intro {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.hero-intro strong {
    color: #c9a96e;
    font-weight: 600;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.keyword-tag {
    background: rgba(201, 169, 110, 0.2);
    color: #c9a96e;
    padding: 8px 16px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 110, 0.4);
}

.hero-banner {
    position: relative;
    height: 550px !important;
    overflow: hidden;
    margin-top: -110px;
    background: #faf8f5;
    z-index: 0;
}

/* Subpage hero banner - adds spacing for fixed header */
.subpage .hero-banner,
body:not(.home) .hero-banner {
    margin-top: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    flex: 0 0 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    flex: 0 0 100%;
}

.carousel-item .carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.carousel-item .carousel-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-item.active .carousel-bg {
    transform: scale(1);
}

.carousel-item .carousel-info {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    text-align: center;
    width: 100%;
    color: var(--sany-white);
    padding-top: 60px;
}

/* Carousel label for non-active items */
.carousel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 5;
    opacity: 1;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    pointer-events: none;
}

.carousel-item.active .carousel-label {
    opacity: 0;
}

.nav-arrow {
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.5);
    color: #2c2c2c;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    pointer-events: auto;
    outline: none;
}

.nav-arrow:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}



/* Darken effect on non-active items */
.carousel-item:not(.active) .carousel-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: background 0.3s ease;
}

.carousel-item:not(.active):hover .carousel-bg::after {
    background: rgba(0,0,0,0.7);
}

/* Darken active slide as well */
.carousel-item.active .carousel-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.carousel-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.carousel-info {
    text-align: center;
}

.slide-num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--sany-red);
    margin-bottom: 10px;
}

.carousel-info h1,
.carousel-info h2,
.carousel-info .hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
    white-space: normal;
    text-align: center;
    color: var(--sany-white);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-see-more:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.btn-see-more i {
    font-size: 12px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header.center {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--sany-black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--sany-gray);
    font-size: 18px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sany-red);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.view-all:hover {
    gap: 12px;
    color: var(--sany-red-dark);
}

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

.view-all:hover i {
    transform: translateX(4px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #c9a96e;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #c9a96e;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #a08050;
    border-color: #a08050;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 110, 0.3);
}

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

.btn-primary:hover i {
    transform: translateX(4px);
}

/* Products Section */
.section-products {
    padding: 60px 0;
    background: var(--sany-white);
}

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

/* Product Section - Single Product Showcase */
.section-product {
    padding: 60px 0;
    background: var(--sany-white);
    scroll-margin-top: 80px;
    margin-top: 0;
}

.section-header-main {
    text-align: center;
    margin-bottom: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sany-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header-main h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--sany-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-intro {
    font-size: 18px;
    color: var(--sany-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Navigation Tabs Wrapper */
.product-nav-tabs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.product-nav-tabs-wrapper .page-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border: 2px solid rgba(0,0,0,0.3);
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    flex-shrink: 0;
}

.product-nav-tabs-wrapper .page-nav-btn:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.product-nav-tabs-wrapper .page-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(0,0,0,0.3);
    border-color: rgba(0,0,0,0.2);
    color: #666;
}

/* Product Navigation with Arrows */
.product-nav-with-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.product-nav-with-arrows .page-nav-btn {
    padding: 12px 16px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Navigation Tabs */
.product-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-tab {
    padding: 14px 28px;
    background: #faf8f5;
    border: 2px solid #e5e5e5;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0px;
    white-space: nowrap;
}

.product-tab:hover {
    border-color: gold;
    color: gold;
}

.product-tab.active {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

/* Product Pages Container */
.product-pages-container {
    position: relative;
    overflow: hidden;
}

.product-page {
    display: none;
    animation: fadeIn 0.5s ease;
}

.product-page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Page Navigation */
.product-page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    padding: 20px 0;
}

.page-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #faf8f5;
    border: 2px solid #e5e5e5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-nav-btn:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

.page-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #333;
    border-color: #444;
    color: #666;
}

.page-indicators {
    display: flex;
    gap: 12px;
}

.page-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #555;
}

.page-dot:hover {
    background: #555;
    border-color: gold;
}

.page-dot.active {
    background: gold;
    border-color: gold;
    transform: scale(1.2);
}

/* Product Title Hierarchy */
.product-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sany-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-content .section-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sany-dark);
    margin: 0;
}

/* Hero Description - Key Selling Point */
.product-hero-text {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    padding: 25px 30px;
    border-radius: 0px;
    margin-bottom: 30px;
    border-left: 4px solid var(--sany-red);
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    color: var(--sany-dark);
    line-height: 1.6;
    margin: 0;
}

.hero-description .highlight {
    color: var(--sany-red);
    font-weight: 700;
    font-size: 22px;
}

/* Specs - Visual Hierarchy */
.spec-item.spec-highlight {
    background: linear-gradient(135deg, #c9a96e 0%, #a08050 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.spec-item.spec-highlight .spec-label,
.spec-item.spec-highlight .spec-value {
    color: white;
}

.spec-item.spec-highlight .spec-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Benefits List - Clean Hierarchy */
.product-benefits {
    margin: 30px 0;
}

.product-benefits h4,
.product-applications h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--sany-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.benefit-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--sany-red);
    background: rgba(201, 169, 110, 0.1);
    padding: 4px 8px;
    border-radius: 0px;
    min-width: 28px;
    text-align: center;
}

.benefit-text {
    font-size: 14px;
    color: var(--sany-gray);
    font-weight: 500;
}

/* Product Meta - Subtle */
.product-meta {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    opacity: 0.8;
}

.product-meta span {
    font-size: 13px;
    color: #718096;
}

.product-desc-detailed {
    margin-bottom: 25px;
}

.product-desc-detailed p {
    font-size: 15px;
    color: var(--sany-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.product-desc-detailed strong {
    color: var(--sany-dark);
    font-weight: 600;
}

.product-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-dark);
    margin: 25px 0 15px;
}

.product-applications {
    margin: 20px 0;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-tag {
    background: #f0f4f8;
    color: var(--sany-dark);
    padding: 6px 14px;
    border-radius: 0px;
    font-size: 13px;
    font-weight: 500;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-content {
    flex: 1;
}

.product-details {
    margin-top: 20px;
    padding-bottom: 40px;
}

.product-content .section-header {
    margin-bottom: 30px;
}

.product-content .section-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--sany-black);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 15px;
}

.product-content .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--sany-red);
}

.product-badge {
    display: inline-block;
    background: var(--sany-red);
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.product-icon {
    font-size: 48px;
    color: var(--sany-red);
    margin-bottom: 10px;
}

.product-details h3 {
    font-size: 28px;
    color: var(--sany-black);
    margin-bottom: 15px;
}

.product-title-bordered {
    border: 2px solid var(--sany-red);
    padding: 10px 15px;
    display: inline-block;
    border-radius: 0px;
}

.product-specs {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 0px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.spec-icon {
    font-size: 24px;
    color: var(--sany-red);
    margin-bottom: 5px;
}

.spec-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--sany-black);
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #666;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta i {
    color: var(--sany-red);
}

.product-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.product-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: var(--sany-black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--sany-red);
}

.product-image-card {
    flex: 1;
    border-radius: 0px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-image-card > .zoom-container {
    width: 100%;
    height: 350px;
    border-radius: 0px;
    margin-bottom: 10px;
}

.product-gallery {
    width: 100%;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: visible;
    border-radius: 0px;
    margin-bottom: 10px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #faf8f5;
    border: 2px solid #e5e5e5;
    border-radius: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    color: #2c2c2c;
}

.gallery-nav:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-nav i {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Structure Image (without magnifier) */
.product-structure-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

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

.gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumb-item {
    width: 80px;
    height: 60px;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumb-item:hover {
    opacity: 1;
    border-color: #ddd;
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--sany-red);
}

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

.product-item {
    position: relative;
    background: var(--sany-white);
    border: 1px solid var(--sany-border);
    overflow: hidden;
    transition: var(--transition);
}

.product-item:hover {
    border-color: var(--sany-red);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-img {
    height: 120px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sany-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .arrow {
    width: 40px;
    height: 40px;
    background: var(--sany-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sany-red);
    transition: var(--transition);
}

.product-item:hover .arrow {
    background: var(--sany-red);
    color: var(--sany-white);
}

/* Solutions Section */
.section-solutions {
    padding: 0;
    background: var(--sany-bg);
}

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

.solution-item {
    background: var(--sany-white);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--sany-border);
    transition: var(--transition);
    border-radius: 8px;
    text-decoration: none;
    display: block;
}

.solution-item:hover {
    border-color: var(--sany-red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.solution-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sany-dark);
}

.solution-item p {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.5;
}

.solution-card {
    background: var(--sany-white);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid var(--sany-border);
    transition: var(--transition);
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--sany-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.solution-icon i {
    font-size: 32px;
    color: var(--sany-red);
}

.solution-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

.solution-card:hover .solution-icon {
    background: var(--sany-red);
}

.solution-card:hover .solution-icon i {
    color: var(--sany-white);
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-card p {
    color: var(--sany-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Stats Banner */
.stats-banner {
    padding: 20px 0;
    background: #faf8f5;
    color: #2c2c2c;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.stat-box {
    color: #2c2c2c;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.stat-num {
    display: block;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #c9a96e;
}

.stat-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.stat-desc {
    display: block;
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(0,0,0,0.5);
}

/* News Section */
.section-news {
    padding: 40px 0;
    background: var(--sany-white);
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}

.news-card {
    position: relative;
    overflow: hidden;
}

.news-card.featured {
    grid-row: span 2;
}

.news-img {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.news-card.featured .news-img {
    min-height: 100%;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    color: var(--sany-white);
}

.news-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sany-red);
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card.featured .news-content h3 {
    font-size: 28px;
}

.news-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sany-white);
    transition: var(--transition);
}

.read-more:hover {
    color: var(--sany-red);
    gap: 12px;
}

/* CTA Section */
.section-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.site-footer {
    background: #faf8f5;
    color: #2c2c2c;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 900;
    color: #2c2c2c;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    font-size: 16px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--sany-red);
    color: #2c2c2c;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--sany-red);
}

.footer-col.contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(0,0,0,0.6);
    font-size: 14px;
}

.footer-col.contact i {
    color: var(--sany-red);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(0,0,0,0.5);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(0,0,0,0.5);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #2c2c2c;
}

/* Page Header */
.page-header {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 110px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    height: calc(100% + 110px);
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    height: calc(100% + 110px);
    background: rgba(0,0,0,0.6);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 900;
    color: var(--sany-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(0,0,0,0.7);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(0,0,0,0.7);
}

.breadcrumb a:hover {
    color: var(--sany-white);
}

.breadcrumb .sep {
    font-size: 11px;
}

.breadcrumb .current {
    color: var(--sany-red);
}

/* Product Category Nav */
.product-cat-nav {
    background: var(--sany-white);
    border-bottom: 1px solid var(--sany-border);
    padding: 20px 0;
    position: sticky;
    top: 104px;
    z-index: 100;
}

.cat-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cat-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: var(--sany-bg);
    color: var(--sany-gray);
    transition: var(--transition);
    min-width: 100px;
}

.cat-tab i {
    font-size: 24px;
}

.cat-tab span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--sany-red);
    color: var(--sany-white);
}

/* Product Category Section */
.product-category-section {
    padding: 80px 0;
}

.product-category-section.bg-light {
    background: var(--sany-bg);
}

.cat-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-description {
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 0px;
    margin-bottom: 40px;
    border-left: 4px solid var(--sany-red);
}

.cat-description p {
    font-size: 15px;
    color: var(--sany-gray);
    line-height: 1.8;
    margin: 0;
}

.cat-description strong {
    color: var(--sany-dark);
    font-weight: 600;
}

.product-features-list {
    margin: 15px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 0px;
}

.product-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    font-size: 13px;
    color: var(--sany-gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-list li i {
    color: var(--sany-red);
    font-size: 12px;
}

.cat-nav-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--sany-dark);
    margin-bottom: 30px;
}

.page-header-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.page-header-desc strong {
    color: #FFD700;
    font-weight: 600;
}

.page-header-desc {
    margin-bottom: 50px;
}

.cat-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cat-title i {
    width: 70px;
    height: 70px;
    background: var(--sany-red);
    color: var(--sany-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cat-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.cat-title p {
    color: var(--sany-gray);
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--sany-white);
    border: 1px solid var(--sany-border);
    overflow: hidden;
}

.product-visual {
    position: relative;
    height: 300px;
}

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

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sany-white);
}

.badge.new {
    background: #28a745;
}

.badge.hot {
    background: #ff6b35;
}

.product-data {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.product-data h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-subtitle {
    color: var(--sany-red);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.specs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    padding: 15px;
    background: var(--sany-bg);
}

.spec-label {
    display: block;
    font-size: 12px;
    color: var(--sany-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.spec-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--sany-black);
}

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

/* Right Sidebar */
.right-sidebar {
    position: fixed;
    right: 0;
    top: 75%;
    transform: translateY(-75%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    min-width: 70px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item i {
    font-size: 24px;
    margin-bottom: 5px;
}

.sidebar-item span {
    font-size: 11px;
    color: #666;
}

.sidebar-item.whatsapp {
    background: #fff;
}

.sidebar-item.whatsapp i {
    color: #25D366;
}

.sidebar-item.whatsapp:hover {
    background: #25D366;
}

.sidebar-item.whatsapp:hover i,
.sidebar-item.whatsapp:hover span {
    color: #2c2c2c;
}

.sidebar-item.facebook {
    background: #fff;
}

.sidebar-item.facebook i {
    color: #1877F2;
}

.sidebar-item.facebook:hover {
    background: #1877F2;
}

.sidebar-item.facebook:hover i,
.sidebar-item.facebook:hover span {
    color: #2c2c2c;
}

.sidebar-item.email {
    background: #fff;
}

.sidebar-item.email i {
    color: #c9a96e;
}

.sidebar-item.email:hover {
    background: #c9a96e;
}

.sidebar-item.email:hover i,
.sidebar-item.email:hover span {
    color: #2c2c2c;
}

.sidebar-item.inquiry {
    background: #fff;
}

.sidebar-item.inquiry i {
    color: #c9a96e;
}

.sidebar-item.inquiry:hover {
    background: #c9a96e;
}

.sidebar-item.inquiry:hover i,
.sidebar-item.inquiry:hover span {
    color: #2c2c2c;
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        flex-shrink: 0;
    }

    /* 确保在中等屏幕下header元素不会溢出 */
    .header-main .container {
        gap: 10px;
        padding: 0 15px;
    }

    .logo-link {
        gap: 8px;
    }

    .logo-w {
        height: 50px;
        width: auto;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 11px;
    }

    .logo-divider {
        height: 50px;
    }

    .btn-inquiry {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 48px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-row: auto;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
    }
    
    .specs-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top-links {
        display: flex;
    }
    
    .header-top-links a {
        font-size: 11px;
    }
    
    .top-bar {
        display: none;
    }
    
    .site-header {
        top: 0;
    }
    
    .hero-banner {
        margin-top: -60px;
        height: 400px !important;
    }
    
    .hero-carousel {
        height: 400px;
    }
    
    .carousel-track {
        display: flex;
        width: 100%;
        height: 100%;
    }
    
    .carousel-item {
        flex: 0 0 100% !important;
        height: 400px;
        position: relative;
        overflow: hidden;
        cursor: default;
        display: none;
    }
    
    .carousel-item.active {
        flex: 0 0 100% !important;
        display: flex;
    }
    
    .carousel-item .carousel-bg {
        transform: scale(1);
    }
    
    .carousel-item .carousel-info {
        opacity: 1;
        top: 50%;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero title optimization for mobile */
    .carousel-item .carousel-info h1,
    .carousel-item .carousel-info h2,
    .carousel-item .carousel-info .hero-title {
        font-size: 20px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .carousel-item .carousel-info .hero-subtitle,
    .carousel-item .carousel-info p {
        font-size: 13px !important;
        line-height: 1.5 !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Process Row Mobile Optimization - Stack vertically */
    .process-row {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100%;
    }
    
    .process-row .data-card {
        min-width: 100% !important;
        width: 100%;
        padding: 20px 15px;
    }
    
    .process-row > div[style*="color: #c8102e"] {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    .section-solutions .container {
        padding: 0 15px;
    }
    
    .section-header-main h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .section-intro {
        font-size: 14px;
    }
    
    .carousel-item .carousel-info h1,
    .carousel-item .carousel-info h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .carousel-label {
        display: none;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-prev {
        left: 10px;
    }
    
    .nav-next {
        right: 10px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .product-showcase {
        flex-direction: column;
        gap: 30px;
    }

    .product-content {
        width: 100%;
        order: 2;
    }

    .product-image-card {
        width: 100%;
        order: 1;
    }

    .product-image-card img {
        height: 250px;
    }

    .product-specs {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .spec-item {
        flex: 1 1 45%;
        min-width: 140px;
    }

    .product-benefits .benefit-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-benefits .benefit-num {
        margin-bottom: 5px;
    }

    .app-tags {
        flex-wrap: wrap;
        justify-content: center;
    }

    .app-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .product-content .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .product-content .section-header h3 {
        font-size: 22px;
    }

    .product-nav-tabs-wrapper {
        gap: 10px;
        margin: 15px 0;
        padding: 0 10px;
    }

    .product-nav-tabs-wrapper .page-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .product-nav-with-arrows {
        flex-direction: row;
        gap: 10px;
        margin: 20px 0;
    }

    .product-nav-with-arrows .page-nav-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        padding: 8px;
    }

    .product-nav-tabs {
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .product-tab {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 13px;
    }

    .product-details {
        padding-bottom: 20px;
    }

    .product-gallery {
        margin-top: 15px;
    }

    .gallery-thumbs {
        gap: 5px;
    }

    .thumb-item {
        width: 50px;
        height: 50px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .solution-item h4 {
        font-size: 13px;
    }
    
    .solution-item p {
        font-size: 11px;
    }
    
    /* Stats Banner Mobile Optimization */
    .stats-banner {
        padding: 16px 0;
    }
    
    .stats-row {
        gap: 12px;
        padding: 0 10px;
    }
    
    .stat-box {
        padding: 12px 10px;
        background: rgba(0,0,0,0.05);
        border-radius: 6px;
        min-width: calc(50% - 12px);
        flex: 1 1 calc(50% - 12px);
        text-align: center;
    }
    
    .stat-num {
        font-size: 22px;
        margin-bottom: 4px;
        display: block;
    }
    
    .stat-text {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 3px;
        display: block;
        font-weight: 600;
    }
    
    .stat-desc {
        display: none;
    }
    
    /* Testimonials Grid Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .testimonial-card {
        padding: 25px 20px !important;
    }
    
    .testimonial-card p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    
    /* Right Sidebar - Mobile */
    .right-sidebar {
        top: auto;
        bottom: 100px;
        transform: none;
        border-radius: 6px 0 0 6px;
    }
    
    .sidebar-item {
        padding: 8px 6px;
        min-width: 50px;
    }
    
    .sidebar-item i {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .sidebar-item span {
        font-size: 9px;
    }
    
    .cta-btns {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-btns a,
    .btn-red,
    .btn-white,
    .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cat-tabs {
        flex-wrap: wrap;
    }
    
    .cat-section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .specs-row {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    /* ============================================
       PRODUCTS PAGE - MOBILE OPTIMIZATION
       ============================================ */
    
    /* Page Header - Products Page */
    .page-header {
        padding-top: 70px !important;
    }
    
    .page-header-content h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        padding: 0 10px !important;
    }
    
    .page-header-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Materials Section Mobile */
    .materials-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-top: 40px !important;
    }
    
    .material-card {
        border-radius: 12px !important;
    }
    
    .material-card > div:first-child {
        height: 160px !important;
    }
    
    .material-card > div:last-child {
        padding: 20px !important;
    }
    
    .material-card h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .material-card p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    /* GEOGRAPHIC ADVANTAGE Section Mobile */
    .section-location-advantage {
        padding: 50px 0 !important;
    }
    
    .location-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .location-content > div:first-child {
        order: 1 !important;
    }
    
    .location-content > div:last-child {
        order: 2 !important;
    }
    
    .section-location-advantage .section-label {
        font-size: 12px !important;
    }
    
    .section-location-advantage h2 {
        font-size: 24px !important;
        margin: 15px 0 20px 0 !important;
        line-height: 1.35 !important;
        padding: 0 5px !important;
    }
    
    .section-location-advantage > div > div > p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        padding: 0 5px !important;
    }
    
    .location-content ul {
        padding: 0 !important;
        margin: 20px 0 0 0 !important;
    }
    
    .location-content ul li {
        padding: 12px 0 !important;
    }
    
    .location-content ul li > div:first-child {
        width: 35px !important;
        height: 35px !important;
    }
    
    .location-content ul li h4 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    
    .location-content ul li p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    
    /* Guangzhou Industry Overview - Mobile */
    .location-content > div:last-child > div {
        padding: 25px 20px !important;
        border-radius: 15px !important;
    }
    
    .location-content h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
    
    .location-content > div:last-child > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .location-content > div:last-child > div > div > div {
        padding: 20px 15px !important;
        border-radius: 10px !important;
    }
    
    .location-content > div:last-child > div > div > div > div:first-child {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }
    
    .location-content > div:last-child > div > div > div > div:last-child {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    
    /* CTA Section Mobile */
    section[style*="background: linear-gradient(135deg, #1a1a2e"] {
        padding: 50px 0 !important;
    }
    
    section[style*="background: linear-gradient(135deg, #1a1a2e"] h2 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
        padding: 0 10px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #1a1a2e"] p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
        margin-bottom: 25px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #1a1a2e"] > div > div > div {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    section[style*="background: linear-gradient(135deg, #1a1a2e"] a {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* ============================================
       OEM/ODM PAGE - MOBILE OPTIMIZATION
       ============================================ */
    
    /* Manufacturing Models & Services Section */
    .section-manufacturing-models {
        padding: 50px 0 !important;
    }
    
    .manufacturing-models-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    /* Model Comparison Table */
    .section-manufacturing-models h3 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    .matrix-table {
        font-size: 12px !important;
    }
    
    .matrix-table thead th {
        padding: 10px 8px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
    }
    
    .matrix-table tbody td {
        padding: 10px 8px !important;
        font-size: 11px !important;
    }
    
    .matrix-table tbody td:first-child {
        font-size: 12px !important;
        min-width: 120px !important;
    }
    
    /* Exclusive Services Cards */
    .section-manufacturing-models > .container > div:last-child h3 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    .data-card {
        padding: 20px !important;
        gap: 15px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .data-card > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }
    
    .data-card > div:first-child i {
        font-size: 20px !important;
    }
    
    .data-card h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .data-card p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    /* OEM Page CTA Section */
    .section[id="inquiry"] {
        padding: 50px 0 !important;
    }
    
    .section[id="inquiry"] h2 {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }
    
    .section[id="inquiry"] p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 30px !important;
    }
    
    .section[id="inquiry"] > .container > div > div:first-of-type {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .section[id="inquiry"] .btn-see-more {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 30px !important;
        font-size: 15px !important;
    }
    
    .section[id="inquiry"] > .container > div > div:last-of-type {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    /* ============================================
       WHOLESALE PAGE - MOBILE OPTIMIZATION
       ============================================ */
    
    /* Complete Solution Section */
    #bulk-solution {
        padding: 50px 0 !important;
    }
    
    .wholesale-solution-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    #bulk-solution h3 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    /* When & Why Wholesale Cards */
    #bulk-solution h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    /* 4 Signs Grid */
    #bulk-solution > .container > div:last-child > div:first-child > div:first-child > div {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    
    /* Process Steps */
    #bulk-solution > .container > div:last-child > div:first-child > div:last-child > div > div {
        gap: 12px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:first-child > div:last-child > div > div > div:first-child {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:first-child > div:last-child > div > div > div:last-child strong {
        font-size: 14px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:first-child > div:last-child > div > div > div:last-child span {
        font-size: 12px !important;
    }
    
    /* Support Approach Cards */
    #bulk-solution > .container > div:last-child > div:last-child > div > div {
        padding: 20px !important;
        gap: 15px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div > div:first-child {
        width: 50px !important;
        height: 50px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div > div:first-child i {
        font-size: 20px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div > div:last-child h4 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div > div:last-child p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }
    
    /* Beyond Order Placement Box */
    #bulk-solution > .container > div:last-child > div:last-child > div > div:last-child {
        padding: 20px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div:last-child h4 {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    #bulk-solution > .container > div:last-child > div:last-child > div > div:last-child ul li {
        font-size: 13px !important;
        gap: 8px !important;
    }
    
    /* Reduce carousel title font size on mobile */
    .carousel-info h1,
    .carousel-info h2 {
        font-size: 20px;
        line-height: 1.4;
        white-space: normal;
    }
    
    /* Center carousel info on mobile */
    .carousel-item .carousel-info {
        top: 65%;
        transform: translate(-50%, -50%);
    }
    
    /* Hide header contact on mobile */
    .header-contact {
        display: none;
    }
}

/* ============================================
   SOLUTION PAGE STYLES
   ============================================ */

/* Pain Points Section */
.section-pain-points {
    padding: 80px 0;
    background: var(--sany-white);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pain-point-card {
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-top: 4px solid var(--sany-red);
}

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

.pain-point-icon {
    width: 70px;
    height: 70px;
    background: var(--sany-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pain-point-icon i {
    font-size: 28px;
    color: #2c2c2c;
}

.pain-point-card h3 {
    font-size: 22px;
    color: var(--sany-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.pain-point-card > p {
    color: var(--sany-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.pain-point-list {
    list-style: none;
    padding: 0;
}

.pain-point-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--sany-dark);
    font-size: 14px;
}

.pain-point-list li i {
    color: #e74c3c;
    font-size: 12px;
}

/* Solution Section */
.section-solution {
    padding: 80px 0;
}

.section-solution.bg-light {
    background: #f8f9fa;
}

.solution-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.solution-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--sany-gray);
}

.solution-products {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-product-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 400px 1fr;
    position: relative;
}

.solution-product-card.featured {
    border: 2px solid var(--sany-red);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--sany-red);
    color: #2c2c2c;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.alt {
    background: #6c757d;
}

.solution-product-img {
    overflow: hidden;
}

.solution-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

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

.solution-product-content h3 {
    font-size: 26px;
    color: var(--sany-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-product-content .product-desc {
    color: var(--sany-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-specs-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 0px;
}

.product-specs-row .spec-item {
    display: flex;
    flex-direction: column;
}

.product-specs-row .spec-label {
    font-size: 12px;
    color: var(--sany-light-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.product-specs-row .spec-value {
    font-size: 16px;
    color: var(--sany-black);
    font-weight: 600;
}

.product-features h4 {
    font-size: 16px;
    color: var(--sany-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--sany-dark);
}

.product-features ul li i {
    color: #27ae60;
    font-size: 14px;
}

/* Comparison Table Section */
.section-comparison {
    padding: 80px 0;
    background: var(--sany-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 800px;
}

.comparison-table th {
    background: var(--sany-red);
    color: #2c2c2c;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table th.highlight-col {
    background: #a08050;
}

.comparison-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #e5e5e5;
    color: var(--sany-dark);
    font-size: 14px;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}

.comparison-table tr:hover td.highlight-col {
    background: #e8f4f8;
}

.comparison-table .property-name {
    font-weight: 600;
    color: var(--sany-black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-table .property-name i {
    color: var(--sany-red);
    width: 20px;
}

.comparison-table .highlight-col {
    background: #f0f7ff;
    border-left: 3px solid var(--sany-red);
    border-right: 3px solid var(--sany-red);
}

.comparison-table tr:last-child td.highlight-col {
    border-bottom: 3px solid var(--sany-red);
}

.rating {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.rating.excellent {
    background: #d4edda;
    color: #155724;
}

.rating.good {
    background: #fff3cd;
    color: #856404;
}

.rating.moderate {
    background: #f8d7da;
    color: #721c24;
}

.rating.superior {
    background: #cce5ff;
    color: #004085;
}

.rating.no {
    background: #e2e3e5;
    color: #383d41;
}

.recommendation-row td {
    background: #f8f9fa;
    font-style: italic;
}

.comparison-note {
    margin-top: 30px;
    padding: 20px;
    background: #e8f4f8;
    border-radius: 0px;
    border-left: 4px solid var(--sany-red);
}

.comparison-note p {
    color: var(--sany-dark);
    margin: 0;
}

.comparison-note i {
    color: var(--sany-red);
}

/* Results Section */
.section-results {
    padding: 80px 0;
}

.section-results.bg-light {
    background: #f8f9fa;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.result-card {
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--sany-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 24px;
    color: #2c2c2c;
}

.result-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--sany-red);
    line-height: 1;
    margin-bottom: 10px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-black);
    margin-bottom: 15px;
}

.result-desc {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.6;
}

/* Case Study Highlight */
.case-study-highlight {
    margin-top: 50px;
    background: linear-gradient(135deg, #c9a96e 0%, #a08050 100%);
    border-radius: 0px;
    padding: 50px;
    color: #2c2c2c;
}

.case-study-content h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.case-study-content h3 i {
    color: gold;
    margin-right: 10px;
}

.case-study-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.case-stat {
    text-align: center;
}

.case-stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: gold;
    line-height: 1;
}

.case-stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.case-study-content > p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Applications Section */
.section-applications {
    padding: 80px 0;
    background: var(--sany-white);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background: #fff;
    border-radius: 0px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #e5e5e5;
}

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

.application-icon {
    width: 55px;
    height: 55px;
    background: var(--sany-red);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.application-icon i {
    font-size: 24px;
    color: #2c2c2c;
}

.application-card h4 {
    font-size: 18px;
    color: var(--sany-black);
    margin-bottom: 12px;
    font-weight: 600;
}

.application-card p {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.6;
}

/* Related Solutions Section */
.section-related {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.related-card {
    background: #fff;
    border-radius: 0px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

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

.related-icon {
    width: 55px;
    height: 55px;
    background: var(--sany-red);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.related-icon i {
    font-size: 24px;
    color: #2c2c2c;
}

.related-card h4 {
    font-size: 18px;
    color: var(--sany-black);
    margin-bottom: 12px;
    font-weight: 600;
}

.related-card p {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.6;
}

/* Responsive for Solution Pages */
@media (max-width: 1200px) {
    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-product-card {
        grid-template-columns: 300px 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid,
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-product-card {
        grid-template-columns: 1fr;
    }
    
    .solution-product-img img {
        min-height: 250px;
    }
    
    .case-study-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .applications-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .product-specs-row {
        grid-template-columns: 1fr;
    }
    
    .case-study-highlight {
        padding: 30px;
    }
    
    .comparison-table-wrapper {
        margin: 30px -20px;
        border-radius: 0;
    }
}

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

/* Contact Info Cards Section */
.section-contact-info {
    padding: 80px 0;
    background: var(--sany-white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #e5e5e5;
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--sany-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-card-icon i {
    font-size: 32px;
    color: #2c2c2c;
}

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--sany-black);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card > p {
    color: var(--sany-gray);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-red);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--sany-red-dark);
    text-decoration: underline;
}

.response-time {
    display: block;
    font-size: 13px;
    color: var(--sany-gray);
}

.response-time i {
    color: var(--sany-red);
    margin-right: 5px;
}

/* Contact Form Section */
.section-contact-form {
    padding: 80px 0;
    background: var(--sany-bg);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-content {
    background: #fff;
    border-radius: 0px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sany-dark);
    margin-bottom: 8px;
}

.form-group .required {
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0px;
    font-size: 14px;
    color: var(--sany-dark);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sany-red);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-group select {
    cursor: pointer;
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f0f7ff;
    border-radius: 0px;
    font-size: 13px;
    color: var(--sany-gray);
}

.form-note i {
    color: var(--sany-red);
}

/* Contact Form Sidebar */
.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-response-box,
.support-hours-box {
    background: #fff;
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.quick-response-box h4,
.support-hours-box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-response-box h4 i {
    color: #f59e0b;
}

.support-hours-box h4 i {
    color: var(--sany-red);
}

.quick-response-box ul {
    list-style: none;
    padding: 0;
}

.quick-response-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--sany-gray);
    border-bottom: 1px solid #f0f0f0;
}

.quick-response-box li:last-child {
    border-bottom: none;
}

.quick-response-box li i {
    color: #27ae60;
}

.support-hours-box p {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.support-hours-box p:last-child {
    margin-bottom: 0;
}

.support-hours-box strong {
    color: var(--sany-dark);
}

/* Company Address Section */
.section-company-address {
    padding: 80px 0;
    background: var(--sany-white);
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.address-card {
    background: #fff;
    border-radius: 0px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #e5e5e5;
}

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

.address-icon {
    width: 70px;
    height: 70px;
    background: var(--sany-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.address-icon i {
    font-size: 28px;
    color: var(--sany-red);
}

.address-card h3 {
    font-size: 20px;
    color: var(--sany-black);
    margin-bottom: 15px;
    font-weight: 600;
}

.address-text {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.address-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sany-red);
    transition: var(--transition);
}

.address-phone:hover {
    color: var(--sany-red-dark);
}

.facility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sany-red);
    background: rgba(201, 169, 110, 0.1);
    padding: 8px 15px;
    border-radius: 0px;
}

/* Map Section */
.section-map {
    padding: 0;
    background: var(--sany-bg);
}

.map-container {
    height: 400px;
    width: 100%;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--sany-red);
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder h3 {
    font-size: 24px;
    color: var(--sany-dark);
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 16px;
    color: var(--sany-gray);
    margin-bottom: 25px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #e5e5e5;
    transition: var(--transition);
}

.btn-outline:hover {
    background: gold;
    border-color: gold;
    color: #faf8f5;
}

/* FAQ Links Section */
.section-faq-links {
    padding: 80px 0;
    background: var(--sany-white);
}

.faq-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.faq-link-card {
    display: block;
    background: #fff;
    border-radius: 0px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid #e5e5e5;
    text-decoration: none;
}

.faq-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--sany-red);
}

.faq-link-card i {
    font-size: 36px;
    color: var(--sany-red);
    margin-bottom: 15px;
}

.faq-link-card h4 {
    font-size: 16px;
    color: var(--sany-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-link-card p {
    font-size: 13px;
    color: var(--sany-gray);
    line-height: 1.5;
    margin: 0;
}

/* Responsive for Contact Page */
@media (max-width: 1200px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-sidebar {
        flex-direction: row;
    }
    
    .quick-response-box,
    .support-hours-box {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .address-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-sidebar {
        flex-direction: column;
    }
    
    .address-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-links-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-content {
        padding: 25px;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ============================================
   SUBPAGE HERO SECTIONS - MARGIN FOR FIXED HEADER
   ============================================ */

/* Resources pages hero sections */
.techlib-hero,
.blog-hero,
.faq-hero {
    padding-top: 110px;
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 80px 0;
    color: #2c2c2c;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.faq-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(0,0,0,0.7);
}

.faq-search-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.faq-search-input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    font-size: 16px;
    outline: none;
}

.faq-search-btn {
    padding: 18px 30px;
    background: #c9a96e;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-search-btn:hover {
    background: #a08050;
}

.faq-categories {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-tab {
    padding: 12px 24px;
    border: 2px solid #e5e5e5;
    background: white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    border-color: #c9a96e;
    color: #c9a96e;
}

.category-tab.active {
    background: #c9a96e;
    border-color: #c9a96e;
    color: white;
}

.section-faq {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--sany-black);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    color: var(--sany-red);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-black);
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    color: #c9a96e;
    font-size: 14px;
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--sany-gray);
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

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

.faq-answer-content strong {
    color: var(--sany-black);
}

.still-questions {
    padding: 80px 0;
    background: white;
}

.still-questions-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.still-questions-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sany-black);
}

.still-questions-box p {
    font-size: 16px;
    color: var(--sany-gray);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--sany-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-method-label {
    font-size: 12px;
    color: var(--sany-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--sany-black);
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 80px 0;
    color: #2c2c2c;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.blog-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(0,0,0,0.7);
}

.blog-categories {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.blog-grid {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.blog-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sany-red);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--sany-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--sany-black);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    color: #c9a96e;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 12px;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 18px;
    border: 2px solid #e5e5e5;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--sany-gray);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #c9a96e;
    color: #c9a96e;
}

.pagination-btn.active {
    background: #c9a96e;
    border-color: #c9a96e;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Newsletter Section */
.section-newsletter {
    padding: 80px 0;
    background: white;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.newsletter-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--sany-black);
}

.newsletter-box p {
    font-size: 16px;
    color: var(--sany-gray);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e5e5e5;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: #c9a96e;
}

.newsletter-form button {
    padding: 15px 35px;
    background: #c9a96e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #a08050;
}

/* Responsive styles for FAQ and Blog pages */
@media (max-width: 1200px) {
    .blog-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .faq-hero-content h1,
    .blog-hero-content h1 {
        font-size: 36px;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .still-questions-box {
        padding: 40px;
    }
    
    .still-questions-box h2 {
        font-size: 28px;
    }
    
    .contact-methods {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .faq-hero,
    .blog-hero {
        padding: 50px 0;
    }
    
    .faq-hero-content h1,
    .blog-hero-content h1 {
        font-size: 28px;
    }
    
    .faq-hero-content p,
    .blog-hero-content p {
        font-size: 16px;
    }
    
    .faq-search-box {
        margin: 0 15px;
    }
    
    .faq-search-input {
        padding: 15px 20px;
    }
    
    .faq-search-btn {
        padding: 15px 20px;
    }
    
    .category-tabs {
        padding: 0 15px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .blog-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-img {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-content h3 {
        font-size: 18px;
    }
    
    .still-questions-box {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .still-questions-box h2 {
        font-size: 24px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-box {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-box h2 {
        font-size: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .blog-pagination {
        gap: 5px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Projects pages hero sections */
.project-hero {
    padding-top: 110px;
}

/* ========================================
   Crushing Plant Solution Page Styles
   ======================================== */

/* Scene Solutions Grid */
.scene-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.scene-solution-card {
    background: var(--sany-white);
    border: 1px solid var(--sany-border);
    overflow: hidden;
    transition: var(--transition);
}

.scene-solution-card:hover {
    border-color: var(--sany-red);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.scene-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #c9a96e;
    color: var(--sany-white);
}

.scene-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scene-icon i {
    font-size: 24px;
}

.scene-title h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.scene-subtitle {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scene-content {
    padding: 30px;
}

.scene-problem,
.scene-solution {
    margin-bottom: 25px;
}

.scene-problem h4,
.scene-solution h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scene-problem h4 {
    color: #e74c3c;
}

.scene-solution h4 {
    color: #27ae60;
}

.scene-problem p,
.scene-solution p {
    font-size: 14px;
    color: var(--sany-gray);
    line-height: 1.7;
}

.scene-specs {
    padding-top: 20px;
    border-top: 1px solid var(--sany-border);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

/* ========================================
   Footer Responsive Styles
   ======================================== */

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #666;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c8102e;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c8102e;
    color: white;
}

.footer-bottom {
    background: #1a1a2e;
    padding: 25px 0;
}

.footer-bottom-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px !important;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .security-badges {
        justify-content: center !important;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    .footer-col ul li a {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content p {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .badge-item span {
        font-size: 11px !important;
    }
    
    .badge-item i {
        font-size: 14px !important;
    }
}

/* ========================================
   Pricing Formula Section Responsive
   ======================================== */

@media (max-width: 768px) {
    .pricing-formula-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    #pricing-formula {
        padding: 50px 0 !important;
    }
    
    #pricing-formula h3 {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 480px) {
    .pricing-formula-grid {
        gap: 30px !important;
    }
    
    #pricing-formula {
        padding: 40px 0 !important;
    }
    
    #pricing-formula h3 {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }
}