/**
 * Spectro Optics - Main Stylesheet
 */

/* ===== Floating Social Buttons ===== */
.floating-social {
    position: fixed;
    top: 90px;
    right: 10px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255,255,255,0.95);
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.floating-social .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: white;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.floating-social .social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.floating-social .social-btn.whatsapp { background: #25D366; }
.floating-social .social-btn.linkedin { background: #0077B5; }
.floating-social .social-btn.youtube { background: #FF0000; }
.floating-social .social-btn.wechat { background: #07C160; }
.floating-social .social-btn.email { background: #EA4335; }
.floating-social .social-btn.phone { background: #1a5f7a; }

/* ===== QR Popup ===== */
.qr-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: none;
    animation: fadeIn 0.2s ease;
}

.qr-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    display: none;
    animation: popIn 0.3s ease;
}

.qr-popup-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.qr-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #333;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qr-popup-close:hover {
    background: #000;
    transform: scale(1.1);
}

.qr-popup-content img {
    max-width: 250px;
    max-height: 250px;
    border-radius: 8px;
}

.qr-popup-title {
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

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

@keyframes popIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ===== CSS Variables ===== */
:root {
    --primary: #1a5f7a;
    --primary-dark: #159895;
    --secondary: #002B5B;
    --accent: #57c5b6;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #002B5B 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-logo {
    width: 150px;
    height: 150px;
    animation: pulse 2s ease-in-out infinite;
}

.page-loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border: none;
    border-radius: 0;
}

.page-loader-name {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease forwards;
}

.page-loader-tagline {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.page-loader-spinner {
    margin-top: 40px;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.page-loader-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    animation: loadingBar 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingBar {
    0% {
        width: 0%;
        left: 0;
    }
    50% {
        width: 60%;
        left: 20%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.mt-4 {
    margin-top: 20px;
}

.mt-8 {
    margin-top: 40px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 100;
    padding: 15px 0;
}

/* ===== Header Admin Buttons ===== */
.header-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.admin-login {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.admin-login:hover {
    background: var(--primary);
    color: white;
}

.admin-register {
    background: var(--primary);
    color: white;
}

.admin-register:hover {
    background: var(--secondary);
}

.admin-dashboard {
    background: var(--accent);
    color: white;
}

.admin-dashboard:hover {
    background: #e07b00;
}

.admin-logout {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.admin-logout:hover {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 99;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

/* ===== News Ticker ===== */
.news-ticker {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    color: #1a1a2e;
    padding: 10px 0;
    margin-top: 70px;
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-ticker-label {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 10px 25px;
    font-weight: 700;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-ticker-content {
    flex: 1;
    overflow: hidden;
}

.news-ticker-content marquee {
    padding: 0 20px;
}

.news-item {
    padding: 0 30px;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.news-item:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.news-item-content {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.news-item-title {
    font-weight: 600;
    color: #1a1a2e;
}

.news-item-desc {
    color: #666;
    font-size: 13px;
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item:not(:last-child)::after {
    content: '•';
    margin-left: 30px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.hero-optical-img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.factory-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.trust-item i {
    font-size: 24px;
    color: var(--primary);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder i {
    font-size: 60px;
    color: white;
    opacity: 0.5;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.product-link:hover {
    gap: 10px;
}

/* ===== Features Section ===== */
.features-section {
    background: var(--bg-light);
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-desc {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== About Preview ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .number {
    font-size: 36px;
    font-weight: 800;
}

.about-badge .text {
    font-size: 12px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-content h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-content .product-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.about-content .product-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-content .product-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--primary);
    font-weight: bold;
}

.about-content .product-list li strong {
    color: var(--secondary);
}

.about-list {
    margin: 20px 0;
}

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

.about-list i {
    color: var(--success);
}

/* Rich Content Styles */
.rich-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.rich-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.rich-content ul, .rich-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.rich-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.rich-content h2, .rich-content h3, .rich-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.rich-content a {
    color: var(--primary);
    text-decoration: none;
}

.rich-content a:hover {
    text-decoration: underline;
}

/* ===== News Section ===== */
.news-section {
    background: var(--bg-light);
}

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

.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-image {
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.news-card-content {
    padding: 20px;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* News List - Simple Style */
.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.news-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
    flex: 1 1 auto;
    min-width: 250px;
}

.news-list-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.news-list-date {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
}

.news-list-title {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-featured {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 140px 0 60px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Category Grid ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

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

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

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ===== Products List ===== */
.products-list-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
}

.product-list-image {
    width: 200px;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.product-list-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-placeholder i {
    font-size: 40px;
    color: var(--border);
}

.product-list-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-list-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-specs {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.product-specs h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 5px;
}

.product-specs p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ===== Equipment Section ===== */
.equipment-section {
    margin-bottom: 80px;
}

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

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.equipment-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.equipment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.equipment-icon i {
    font-size: 28px;
    color: white;
}

.equipment-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.equipment-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Certifications ===== */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.certification-card:hover {
    border-color: var(--primary);
}

.certification-card i {
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 15px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary);
    width: 100%;
}

.certification-card p {
    color: var(--text-light);
    font-size: 14px;
    width: 100%;
    margin: 0;
}

/* ===== Values ===== */
.values-section {
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon i {
    font-size: 24px;
    color: white;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    order: 1;
}

.contact-info-wrapper {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}

.card h2 i {
    color: var(--primary);
    margin-right: 10px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group label i {
    margin-right: 6px;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Social Icons */
.social-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.social-icon-item {
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.social-icon-item:hover {
    transform: translateY(-3px);
}

.social-icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.social-icon-bg i {
    font-size: 24px;
    color: white;
}

.social-icon-item span {
    font-size: 12px;
    color: var(--text);
}

/* Email List */
.email-card {
    padding: 25px;
}

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

.email-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-icon.sales {
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary);
}

.email-icon.support {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.email-icon.tech {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.email-icon i {
    font-size: 18px;
}

.email-info {
    flex: 1;
}

.email-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
}

.email-info a {
    font-weight: 500;
}

/* Address Card */
.address-card {
    padding: 25px;
}

.address-card p {
    color: var(--text);
    line-height: 1.8;
}

.map-container {
    margin-top: 20px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.alert-success {
    background: #ecfdf5;
    color: #059669;
    border-left: 4px solid #059669;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

/* ===== Legal Content ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.legal-content li {
    color: var(--text-light);
    margin-bottom: 8px;
    list-style: disc;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 20px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
}
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.contact-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.contact-list li a {
    color: rgba(255,255,255,0.7);
}

.contact-list li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Testing Equipment Section ===== */
.testing-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.equipment-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testing-card {
    border-top: 4px solid var(--primary);
}

.production-card {
    border-top: 4px solid var(--success);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.production-card .equipment-icon {
    background: linear-gradient(135deg, var(--success), #059669);
}

.equipment-icon i {
    font-size: 32px;
    color: white;
}

.equipment-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.equipment-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.equipment-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.equipment-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.equipment-feature-item i {
    font-size: 18px;
}

/* ===== Production Section ===== */
.production-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.production-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .product-list-item {
        grid-template-columns: 1fr;
    }
    
    .product-list-image {
        width: 100%;
        height: 200px;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .social-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .production-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== News Section ===== */
.news-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.news-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.news-section .view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.news-section .view-all:hover {
    color: var(--secondary);
}

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

.home-news-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}

/* Category Description Card (Products Page) */
.category-desc-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.category-desc-card:hover {
    box-shadow: var(--shadow-lg);
}

.category-desc-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text);
}

.category-desc-card p:last-child {
    margin-bottom: 0;
}

.category-desc-card h3,
.category-desc-card h4,
.category-desc-card h5,
.category-desc-card h6 {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.category-desc-card ul,
.category-desc-card ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.category-desc-card li {
    margin-bottom: 0.4rem;
}

.category-desc-card a {
    color: var(--secondary);
}

/* More News Card */
.more-news-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-height: 200px;
}

.more-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.more-news-card i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.more-news-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.more-news-card p {
    font-size: 14px;
    opacity: 0.9;
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.news-card-overlay i {
    font-size: 40px;
    margin-bottom: 10px;
}

.news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text);
}

.news-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-card-read {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 15px;
}

.news-card-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.news-card-read i {
    transition: var(--transition);
}

.news-card:hover .news-card-read i {
    transform: translateX(5px);
}

/* ===== News Page ===== */
.news-page {
    padding: 60px 0;
}

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

.news-page .news-header h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.news-page .news-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.news-page .news-item-image {
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
}

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

.news-page .news-item-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text);
}

.news-page .news-item-content .date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-page .news-item-content .excerpt {
    color: #555;
    line-height: 1.7;
}

.news-page .news-item-content .read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== News Detail ===== */
.news-detail {
    padding: 60px 0;
}

.news-detail .news-content {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.news-detail .news-content h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.news-detail .news-content .meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-detail .news-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.news-detail .news-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.news-detail .back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-page .news-item {
        grid-template-columns: 1fr;
    }
}

/* News List Page - Row Layout */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.news-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.news-list-item:hover {
    background-color: #f8fafc;
}

.news-list-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-top: 2px;
}

.news-list-body {
    flex: 1;
    min-width: 0;
}

.news-list-meta {
    margin-bottom: 6px;
}

.news-list-date {
    color: var(--gray);
    font-size: 0.85rem;
}

.news-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-list-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-list-title a:hover {
    color: var(--primary);
}

.news-list-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.news-list-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.news-list-action .btn-outline {
    padding: 8px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .news-list-item {
        flex-wrap: wrap;
        gap: 12px;
        padding: 18px 0;
    }

    .news-list-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .news-list-body {
        width: calc(100% - 44px);
    }

    .news-list-action {
        width: 100%;
        margin-left: 44px;
    }

    .news-list-action .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ===== Product Detail Page ===== */
.product-detail {
    padding: 60px 0;
}

.product-detail .container {
    max-width: 1200px;
}

.product-breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
}

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

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

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-info .category {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.product-detail-info .description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-detail-info .description img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: var(--radius);
}

.product-detail-info .specifications {
    background: #f8f9fa;
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.product-detail-info .specifications h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
}

.product-detail-info .specifications p {
    color: #555;
    margin: 0;
}

.product-detail-info .inquiry-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.product-detail-info .inquiry-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.product-back-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary);
    font-weight: 500;
}

/* ===== Equipment Detail Page ===== */
.equipment-detail {
    padding: 60px 0;
}

.equipment-detail .container {
    max-width: 1200px;
}

.equipment-detail-wrapper {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.equipment-detail-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.equipment-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
}

.equipment-detail-info h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.equipment-detail-info .brand-model {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.equipment-detail-info .quantity {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 25px;
}

.equipment-detail-info .description {
    color: #555;
    line-height: 1.8;
}

.equipment-detail-info .description img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: var(--radius);
}

.equipment-purpose {
    background: #f8f9fa;
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.equipment-purpose h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
}

.equipment-purpose p {
    color: #555;
    margin: 0;
}

.equipment-back-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    margin-top: 20px;
}

/* ===== Products Page Improvements ===== */
.products-grid .product-card .product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.products-grid .product-card .product-link:hover {
    color: inherit;
}

/* ===== Products List Page ===== */
.products-list-page {
    padding: 60px 0;
}

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

.products-list-page .products-header h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}

.products-list-page .products-header p {
    font-size: 16px;
    color: #666;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.products-filter .filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.products-filter .filter-btn:hover,
.products-filter .filter-btn.active {
    background: var(--primary);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-wrapper,
    .equipment-detail-header {
        grid-template-columns: 1fr;
    }
    
    .product-detail-wrapper {
        padding: 30px;
    }
    
    .equipment-detail-wrapper {
        padding: 30px;
    }
    
    .equipment-detail-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .product-detail-info h1,
    .equipment-detail-info h1 {
        font-size: 24px;
    }
    
    .products-filter {
        gap: 10px;
    }
    
    .products-filter .filter-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

/* Contact Info Box */
.contact-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border: 1px solid #e0e0e0;
}

.contact-info-box h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-item i {
    width: 24px;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}
