/*
Theme Name: TurboFan Pro - Industrial B2B Theme
Theme URI: https://example.com/turbofan-pro
Author: Your Name
Author URI: https://example.com
Description: A high-performance industrial B2B WordPress theme with Polylang multilingual support and ACF integration. Built for speed and SEO.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turbofan-pro
Domain Path: /languages
Tags: industrial, b2b, multilingual, polylang, acf, responsive, fast
*/

/* ============================================
   TURBOFAN PRO - INDUSTRIAL B2B THEME
   ============================================ */

/* CSS Variables */
:root {
    /* 核心强调色：工业金 */
    --industrial-gold: #FFD700;
    /* 页面背景：中性水泥灰 */
    --industrial-dark-bg: #CBD5E1;
    /* 模块/卡片：碳素深灰 */
    --industrial-card-bg: #1E293B;
    /* 文字：亮钛灰 */
    --industrial-text-light: #F8FAFC;
    /* 辅助文字：中性灰 */
    --industrial-text-gray: #64748B;
    /* 边框：深邃线条 */
    --industrial-border: #334155;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--industrial-dark-bg);
    color: #0F172A;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.industrial-font {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Utility Classes */
.text-gold { color: var(--industrial-gold); }
.bg-gold { background-color: var(--industrial-gold); }
.border-gold { border-color: var(--industrial-gold); }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--industrial-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-logo span {
    color: #fff;
}

/* Primary Navigation */
.primary-nav ul {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .primary-nav ul {
        display: flex;
    }
}

.primary-nav a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.primary-nav a:hover {
    color: var(--industrial-gold);
}

/* Dropdown Menu - Vertical Style */
.primary-nav li {
    position: relative;
}

.primary-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: #1E293B;
    min-width: 160px;
    width: max-content;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    gap: 0;
    border-top: 2px solid #FFD700;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.primary-nav .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.primary-nav .sub-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: #CBD5E1;
    transition: all 0.2s ease;
    background: transparent;
    border-left: 3px solid transparent;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.05em;
}

.primary-nav .sub-menu a:hover {
    color: #FFD700;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    border-left-color: #FFD700;
    padding-left: 28px;
}

/* Menu item with children indicator - Desktop only */
.primary-nav .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 10px;
    color: #FFD700;
    transition: transform 0.2s ease;
}

/* Mobile: hide the default arrow since we use toggle button */
.mobile-menu .menu-item-has-children > a::after {
    display: none;
}

/* Mobile Menu Sub-menu Styles */
@media (max-width: 1023px) {
    .mobile-menu .menu-item-has-children {
        position: relative;
    }
    
    .mobile-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #0F172A;
        box-shadow: none;
        min-width: auto;
        padding: 0;
        margin: 0 0 0 16px;
        border: none;
        border-left: 2px solid #FFD700;
        z-index: auto;
    }
    
    .mobile-menu .sub-menu.show {
        display: block;
    }
    
    .mobile-menu .sub-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-menu .sub-menu a {
        padding: 10px 16px;
        font-size: 12px;
        color: #94A3B8;
    }
    
    .mobile-menu .sub-menu a:hover {
        background: rgba(255, 215, 0, 0.05);
        color: #FFD700;
    }
    
    /* Submenu toggle button (arrow area) */
    .mobile-menu .submenu-toggle {
        position: absolute;
        right: 12px;
        top: 8px;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #FFD700;
        font-size: 12px;
        z-index: 10;
        background: rgba(255, 215, 0, 0.15);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 4px;
        transition: background 0.2s ease, border-color 0.2s ease;
    }
    
    .mobile-menu .submenu-toggle:active {
        background: rgba(255, 215, 0, 0.3);
    }
    
    .mobile-menu .submenu-toggle .fa-chevron-down,
    .mobile-menu .submenu-toggle .fa-chevron-up {
        transition: transform 0.3s ease;
        display: inline-block;
    }
    
    .mobile-menu .submenu-toggle.active {
        background: rgba(255, 215, 0, 0.25);
        border-color: #FFD700;
    }
    
    .mobile-menu .submenu-toggle.active .fa-chevron-up {
        transform: rotate(0deg);
    }
    
    .mobile-menu .submenu-toggle.active .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .mobile-menu .menu-item-has-children > a {
        padding-right: 48px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 2px solid var(--industrial-gold);
    color: var(--industrial-gold);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-switcher-toggle:hover {
    background: var(--industrial-gold);
    color: #000;
}

.lang-switcher-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #1e293b;
    border: 1px solid var(--industrial-border);
    border-radius: 4px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.lang-switcher:hover .lang-switcher-dropdown,
.lang-switcher.active .lang-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.lang-switcher-dropdown a:last-child {
    border-bottom: none;
}

.lang-switcher-dropdown a:hover,
.lang-switcher-dropdown a.current-lang {
    color: var(--industrial-gold);
    background: rgba(255, 215, 0, 0.1);
}

.lang-switcher-dropdown .lang-flag {
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--industrial-gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #111;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d1d5db;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--industrial-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: inherit;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background-color: var(--industrial-gold);
    color: #000;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.btn-gold-outline:hover {
    background-color: var(--industrial-gold);
    color: #000;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 10px;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 14px;
}

/* ============================================
   CARDS
   ============================================ */
.industrial-card {
    background-color: var(--industrial-card-bg);
    border: 1px solid var(--industrial-border);
    color: var(--industrial-text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industrial-card:hover {
    border-color: var(--industrial-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

/* ============================================
   FORMS
   ============================================ */
input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    background-color: #334155;
    border: 1px solid var(--industrial-border);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--industrial-gold);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #94a3b8;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-dark {
    background-color: #0f172a;
    color: #fff;
}

.section-light {
    background-color: var(--industrial-dark-bg);
    color: #0f172a;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 4rem 0;
    background: #cbd5e1;
    border-bottom: 1px solid #94a3b8;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        max-height: none;
        padding: 3rem 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(148, 163, 184, 0.2);
    filter: blur(120px);
    border-radius: 50%;
}

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

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: 2px solid #0f172a;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title span {
    color: var(--industrial-gold);
}

.hero-description {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 3rem;
    max-width: 36rem;
    font-weight: 500;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.hero-card i {
    font-size: 1.875rem;
    color: var(--industrial-gold);
}

.hero-card-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

.hero-card-value {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--industrial-gold);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    padding: 3rem 0;
    background: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--industrial-gold);
    margin-bottom: 0.25rem;
}

.trust-badge span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.5;
}

/* ============================================
   REGIONAL SOLUTIONS
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

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

@media (min-width: 640px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.region-card {
    position: relative;
    height: 20rem;
    overflow: hidden;
    border-radius: 4px;
}

.region-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.7s ease;
}

.region-card:hover .region-card-bg {
    transform: scale(1.05);
}

.region-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.7) 25%, rgba(15,23,42,0.35) 50%, rgba(15,23,42,0.1) 75%, transparent 100%);
}

.region-card-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.region-card-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--industrial-gold);
    margin-bottom: 0.25rem;
}

.region-card-title {
    font-size: 1.25rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    background: rgba(148, 163, 184, 0.3);
    border-top: 1px solid #94a3b8;
    border-bottom: 1px solid #94a3b8;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.section-header-title h2 {
    margin: 0;
    font-style: italic;
}

.section-header-title p {
    margin: 0.5rem 0 0;
    color: #334155;
    font-weight: 500;
}

.section-header-link {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f172a;
    border-bottom: 2px solid #0f172a;
    padding-bottom: 0.25rem;
    white-space: nowrap;
}

/* View All Button in Section Header */
.btn-view-all {
    background: #FFD700;
    color: #0F172A;
    padding: 0.75rem 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #E6C200;
    color: #0F172A;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-view-all i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

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

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    padding: 2.5rem;
    text-align: center;
    border-radius: 4px;
}

.product-card-image {
    width: 100%;
    margin-bottom: 2.5rem;
    transition: transform 0.5s ease;
}

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

.product-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    text-align: left;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0;
}

.product-card.featured .product-card-title {
    color: var(--industrial-gold);
}

.product-card-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--industrial-gold);
}

.product-card-specs {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    margin-bottom: 2rem;
    text-align: left;
}

.product-card.featured {
    border-color: rgba(255, 215, 0, 0.5);
}

.product-card-image-link {
    display: block;
    text-decoration: none;
}

.product-card-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title-link:hover {
    color: var(--industrial-gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: #0f172a;
    border-top: 1px solid #94a3b8;
    border-bottom: 1px solid #94a3b8;
    text-align: center;
}

.cta-title {
    color: var(--industrial-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.cta-description {
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ============================================
   USE CASES
   ============================================ */
.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.use-cases-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.use-case-image {
    background: #334155;
    border: 1px solid #94a3b8;
    border-radius: 4px;
    overflow: hidden;
    height: 24rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.use-case-image:last-child {
    margin-top: 4rem;
}

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

.use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.use-case-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.use-case-item i {
    font-size: 2.25rem;
    color: #0f172a;
    flex-shrink: 0;
}

.use-case-item h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 0 0.5rem;
    color: #0f172a;
}

.use-case-item p {
    color: #334155;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

/* ============================================
   FACTORY SECTION
   ============================================ */
.factory-section {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    text-align: center;
}

.factory-section .section-title {
    color: var(--industrial-gold);
    letter-spacing: 0.1em;
}

.factory-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #334155;
    border: 2px solid #334155;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 4rem;
}

.factory-video-play {
    font-size: 4.5rem;
    color: var(--industrial-gold);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.factory-video:hover .factory-video-play {
    transform: scale(1.25);
    opacity: 1;
}

.factory-video-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    text-align: left;
}

.factory-video-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--industrial-gold);
    margin-bottom: 0.25rem;
}

.factory-video-title {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    margin: 0;
}

.factory-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .factory-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.factory-stat {
    padding: 2rem;
}

.factory-stat-value {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--industrial-gold);
    margin-bottom: 0.25rem;
}

.factory-stat-label {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    border-bottom: 1px solid #94a3b8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    padding: 3rem;
    border-radius: 4px;
    border-top: 4px solid var(--industrial-gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-quote-icon {
    font-size: 2.25rem;
    color: var(--industrial-gold);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.75;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

/* ============================================
   BLOG/INSIGHTS
   ============================================ */
.insights-section {
    background: #0f172a;
}

.insights-section .section-header-title h2 {
    color: var(--industrial-gold);
    font-style: italic;
}

.insights-section .section-header-title p {
    color: #94a3b8;
}

.insights-section .section-header-link {
    color: var(--industrial-gold);
    border-color: var(--industrial-gold);
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.insight-card {
    overflow: hidden;
    border-radius: 4px;
}

.insight-card-image {
    height: 14rem;
    background: #334155;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    opacity: 0.5;
}

.insight-card-content {
    padding: 2rem;
}

.insight-card-title {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #e2e8f0;
}

.insight-card:hover .insight-card-title {
    color: var(--industrial-gold);
}

.insight-card-excerpt {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.insight-card-link {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--industrial-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 4px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--industrial-gold);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    transition: transform 0.3s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item-content {
    padding: 0 1.5rem 1.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   INQUIRY FORM
   ============================================ */
.inquiry-section {
    background: var(--industrial-gold);
    color: #000;
    position: relative;
}

.inquiry-section .container {
    max-width: 42rem;
    text-align: center;
}

.inquiry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.inquiry-subtitle {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
}

.inquiry-form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 768px) {
    .inquiry-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    color: #000 !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.6) !important;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: #000 !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

.inquiry-form select {
    background: #000 !important;
    color: var(--industrial-gold) !important;
    cursor: pointer;
}

.inquiry-form select option {
    background: #000;
    color: var(--industrial-gold);
}

.inquiry-form button {
    width: 100%;
    background: #000;
    color: var(--industrial-gold);
    padding: 1.5rem;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.inquiry-form button:hover {
    background: #18181b;
}

.inquiry-form button:active {
    transform: scale(0.98);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0f172a;
    padding: 4rem 0 1rem;
    border-top: 1px solid #1e293b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-style: italic;
    color: var(--industrial-gold);
    margin-bottom: 1.5rem;
}

.footer-brand-logo span {
    color: #fff;
}

.footer-brand-description {
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    font-size: 1.25rem;
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--industrial-gold);
}

.footer-column h4 {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column li,
.footer-column a {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--industrial-gold);
}

.footer-column a.underline {
    text-decoration: underline;
}

.footer-contact-email {
    font-size: 1.125rem;
    font-weight: 900;
    font-style: italic;
    color: var(--industrial-gold);
    text-decoration: underline;
    text-transform: none;
    letter-spacing: normal;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-copyright {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: #475569;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.5rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    margin: 0;
}

/* Comments */
.comments-area {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 4px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination a,
.pagination .current {
    padding: 0.75rem 1rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.pagination .current {
    background: var(--industrial-gold);
    border-color: var(--industrial-gold);
    color: #000;
}

/* Breadcrumbs - Industrial Style */
.breadcrumb-nav {
    background: #0F172A;
    padding: 0.75rem 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #1E293B;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #94A3B8;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FFD700;
}

.breadcrumb-item.current {
    color: #F8FAFC;
    font-weight: 800;
}

.breadcrumb-separator {
    color: #334155;
    margin: 0 0.75rem;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
    /* Fix factory stats layout on small screens */
    .factory-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .factory-stat {
        padding: 1.5rem 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .factory-stat-value {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .factory-stat-label {
        font-size: 9px;
        word-wrap: break-word;
    }

    /* Fix section backgrounds overflowing */
    .section {
        padding: 4rem 0;
        max-width: 100vw;
    }

    /* Prevent grid items from exceeding container */
    .factory-stat,
    .factory-stat-value,
    .factory-stat-label {
        min-width: 0;
    }

    /* Reduce logo size on mobile (was 1.5rem, now 1.1rem) */
    .site-logo {
        font-size: 1.1rem;
        gap: 0.2rem;
        max-width: 120px;
    }

    .site-logo img {
        max-width: 100%;
        height: auto;
        max-height: 35px;
    }

    /* Fix OEM/ODM page mobile overflow */
    .oem-hero {
        padding: 4rem 0 !important;
    }

    .oem-hero h1 {
        font-size: 1.75rem !important;
    }

    .oem-hero p {
        font-size: 0.875rem !important;
    }

    /* Fix services grid - 3 cards to 1 column */
    .oem-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Fix capabilities grid - 4 items to 1 column */
    .oem-capabilities-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Reduce service card padding */
    .service-card {
        padding: 1.5rem !important;
    }

    /* Reduce capability card padding */
    .capability-item {
        padding: 1rem 1.25rem !important;
    }

    /* Fix capability flex layout on mobile */
    .capability-item > div {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .hide-mobile {
        display: none !important;
    }

    /* Region cards: show selected state on mobile (tap once to select, tap again to navigate) */
    .region-card.selected {
        outline: 3px solid #FFD700;
        outline-offset: 3px;
        transform: scale(1.02);
        transition: all 0.3s ease;
    }

    /* Reduce section title font size on mobile */
    .section-title,
    .section-header-title h2,
    .section-header h2 {
        font-size: 1.25rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Reduce use-cases section title */
    .use-cases-content .section-title {
        font-size: 1.25rem !important;
    }

    /* Reduce products section title */
    .products-section .section-header-title h2 {
        font-size: 1.25rem !important;
    }

    /* Fix section-header layout on mobile */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header-title {
        width: 100%;
        max-width: 100%;
    }

    /* Prevent long words from overflowing */
    .section-title,
    h2,
    h3 {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Fix Filipino language hero banner overflow */
    .hero-title {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-description {
        font-size: 0.875rem !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-card-value {
        font-size: 0.875rem !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .hero-image-wrapper {
        order: -1;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-image-wrapper img {
        max-width: 100%;
        height: auto;
    }

    .hero-content {
        overflow: hidden;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        font-size: 0.75rem !important;
        padding: 0.75rem !important;
    }

    /* Reduce region card title font size on mobile */
    .region-card-title {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .region-card-label {
        font-size: 0.75rem !important;
    }

    /* Reduce factory section image overlay title on mobile */
    .factory-stat-image-overlay h3,
    .factory-image-overlay h3,
    .factory-card-image-overlay h3 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Reduce factory stat value and label on mobile */
    .factory-stat-value {
        font-size: 1.25rem !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .factory-stat-label {
        font-size: 0.625rem !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Reduce factory video/image overlay title on mobile - use high specificity */
    .factory-video-info .factory-video-label,
    .factory-video-info .factory-video-title,
    section.factory-section .factory-video-info .factory-video-label,
    section.factory-section .factory-video-info .factory-video-title {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .factory-video-info .factory-video-title,
    section.factory-section .factory-video-info .factory-video-title {
        font-size: 0.875rem !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .mobile-menu,
    .lang-switcher,
    .btn,
    .inquiry-form button {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .industrial-card {
        background: #fff;
        border: 1px solid #ccc;
        color: #000;
    }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
/* Hero Carousel Base */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

/* Animation: Fade */
.hero-carousel-wrapper[data-animation="fade"] .hero-slide {
    transform: translateX(0);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Animation: Slide */
.hero-carousel-wrapper[data-animation="slide"] .hero-slide {
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.hero-carousel-wrapper[data-animation="slide"] .hero-slide.active {
    transform: translateX(0);
}

/* Animation: Zoom */
.hero-carousel-wrapper[data-animation="zoom"] .hero-slide {
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
}

.hero-carousel-wrapper[data-animation="zoom"] .hero-slide.active {
    transform: scale(1);
}

/* Text Animation - Slide up with fade */
.hero-slide .hero-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.hero-slide.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

/* Image Animation - Slide in from right with scale */
.hero-slide .hero-image-wrapper {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.hero-slide.active .hero-image-wrapper {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Slide animation specific overrides */
.hero-carousel-wrapper[data-animation="slide"] .hero-slide .hero-image-wrapper {
    transform: translateX(100px);
}

.hero-carousel-wrapper[data-animation="slide"] .hero-slide.active .hero-image-wrapper {
    transform: translateX(0);
}

/* Zoom animation specific overrides */
.hero-carousel-wrapper[data-animation="zoom"] .hero-slide .hero-image-wrapper {
    transform: scale(0.7);
}

.hero-carousel-wrapper[data-animation="zoom"] .hero-slide.active .hero-image-wrapper {
    transform: scale(1);
}

/* Badge animation */
.hero-slide .hero-badge {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.hero-slide.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Title animation - staggered lines */
.hero-slide .hero-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

/* Description animation */
.hero-slide .hero-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

.hero-slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
}

/* Actions animation */
.hero-slide .hero-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
}

.hero-slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile: make banner image larger */
@media (max-width: 768px) {
    .hero-image-wrapper img {
        max-width: 120%;
        width: 120%;
        margin: 0 -10%;
    }
}

.hero-image-link {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-image-link:hover {
    transform: scale(1.02);
}

.hero-image-link img {
    transition: box-shadow 0.3s ease;
}

.hero-image-link:hover img {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-prev,
.carousel-next {
    width: 40px;
    height: 40px;
    background: var(--industrial-card-bg);
    border: 2px solid var(--industrial-gold);
    color: var(--industrial-gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--industrial-gold);
    color: #000;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--industrial-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--industrial-gold);
}

.carousel-dot:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .hero-slide .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-image-wrapper img {
        max-width: 300px;
    }
}
