/*
Theme Name: CrusherPro - Stone Crushing & Sand Making Equipment
Theme URI: https://yoursite.com/crusher-pro
Author: YourCompany
Author URI: https://yoursite.com
Description: A professional WordPress theme for stone crushing and sand making equipment manufacturers. Optimized for SEO, GEO, and conversion. Features jaw crusher, cone crusher, impact crusher, VSI sand making machine product showcases with full Schema.org structured data support.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crusher-pro
Tags: manufacturing, industrial, equipment, crusher, sand-making, seo-optimized, bootstrap, one-column, two-columns, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, post-thumbnails, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
    --primary:       #e85d04;
    --primary-dark:  #c04c00;
    --primary-light: #fb923c;
    --secondary:     #1e3a5f;
    --secondary-dark:#152b46;
    --accent:        #f59e0b;
    --dark:          #111827;
    --dark-2:        #1f2937;
    --dark-3:        #374151;
    --gray:          #6b7280;
    --gray-light:    #9ca3af;
    --light:         #f3f4f6;
    --white:         #ffffff;
    --border:        #e5e7eb;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.12);
    --shadow-md:     0 4px 16px rgba(0,0,0,.14);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.16);
    --radius:        6px;
    --radius-lg:     12px;
    --transition:    all .28s ease;
    --font-body:     'Open Sans', sans-serif;
    --font-heading:  'Montserrat', sans-serif;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.section-padding     { padding: 80px 0; }
.section-padding-sm  { padding: 50px 0; }
.bg-light-gray       { background: var(--light); }
.bg-dark             { background: var(--dark-2); }
.bg-primary          { background: var(--primary); }
.bg-secondary        { background: var(--secondary); }
.text-primary        { color: var(--primary) !important; }
.text-secondary      { color: var(--secondary) !important; }
.text-white          { color: var(--white) !important; }
.text-gray           { color: var(--gray) !important; }
.fw-700              { font-weight: 700 !important; }
.rounded-custom      { border-radius: var(--radius-lg); }
.shadow-custom       { box-shadow: var(--shadow-md); }
.overflow-hidden     { overflow: hidden; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 55px; }
.section-header .section-tag {
    display: inline-block;
    background: rgba(232,93,4,.1);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.section-header h2 { font-size: 2.2rem; color: var(--secondary); margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto; }
.section-header.text-start { text-align: left; }
.section-header.text-start p { margin: 0; }

/* Divider line */
.divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 16px auto 0;
}
.divider.start { margin-left: 0; }

/* Buttons */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,4,.35);
}
.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.6);
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}
.btn-secondary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--secondary);
    color: var(--white) !important;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ========================================
   TOP BAR
======================================== */
#topbar {
    background: var(--secondary);
    color: rgba(255,255,255,.75);
    font-size: .82rem;
    padding: 8px 0;
}
#topbar a { color: rgba(255,255,255,.75); }
#topbar a:hover { color: var(--white); }
#topbar .topbar-item { display: flex; align-items: center; gap: 6px; }
#topbar .topbar-item i { color: var(--primary); font-size: .85rem; }

/* ========================================
   HEADER / NAVBAR
======================================== */
#site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.navbar-brand-custom { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.brand-icon i { color: var(--white); font-size: 1.4rem; }
.brand-text .brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -.02em;
}
.brand-text .brand-tagline {
    font-size: .7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nav-link-custom {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary) !important;
    background: rgba(232,93,4,.07);
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-link-custom:hover::after, .nav-link-custom.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 10px; }
.nav-cta .btn-primary-custom { padding: 9px 22px; font-size: .88rem; }

/* Dropdown */
.dropdown-menu-custom {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 10px;
    min-width: 220px;
    margin-top: 8px !important;
}
.dropdown-item-custom {
    padding: 9px 14px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.dropdown-item-custom i { color: var(--primary); width: 16px; font-size: .85rem; }
.dropdown-item-custom:hover { background: rgba(232,93,4,.07); color: var(--primary); }

/* ========================================
   HERO SECTION
======================================== */
#hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-2) 50%, #2d1810 100%);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(232,93,4,.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245,158,11,.1) 0%, transparent 40%),
        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.02'%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");
    z-index: 0;
}
#hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,93,4,.2);
    border: 1px solid rgba(232,93,4,.4);
    color: var(--primary-light);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
#hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}
#hero h1 .highlight { color: var(--primary-light); }
#hero .hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-stats {
    display: flex; gap: 32px; flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-item {}
.hero-stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
}
.hero-stat-item .stat-label { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; }

.hero-right-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.hero-right-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 22px; }
.hero-feature-list { display: flex; flex-direction: column; gap: 14px; }
.hero-feature-item {
    display: flex; align-items: flex-start; gap: 12px;
}
.hero-feature-item .feat-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(232,93,4,.25);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.hero-feature-item .feat-icon i { color: var(--primary-light); font-size: .9rem; }
.hero-feature-item .feat-title { font-size: .88rem; font-weight: 600; color: var(--white); }
.hero-feature-item .feat-desc { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ========================================
   PRODUCT CATEGORIES
======================================== */
.product-cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}
.product-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.product-cat-img {
    height: 200px;
    background: linear-gradient(135deg, var(--light) 0%, var(--border) 100%);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-cat-img .cat-icon-placeholder {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.product-cat-img .cat-icon-placeholder i { color: var(--white); font-size: 2.2rem; }
.product-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-img .cat-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.product-cat-body { padding: 22px 20px; }
.product-cat-body h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 8px; }
.product-cat-body p  { font-size: .85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.product-cat-body .cat-models { font-size: .78rem; color: var(--primary); font-weight: 600; }
.product-cat-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 600;
    margin-top: 14px;
    transition: var(--transition);
}
.product-cat-card:hover .product-cat-arrow { gap: 10px; }

/* ========================================
   PRODUCT CARD (List)
======================================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232,93,4,.3);
}
.product-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .product-label {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.product-card-img .placeholder-icon {
    width: 90px; height: 90px;
    background: rgba(232,93,4,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.product-card-img .placeholder-icon i { font-size: 2.5rem; color: var(--primary); }
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 6px; }
.product-card-body .product-model { font-size: .78rem; color: var(--gray); margin-bottom: 12px; }
.product-spec-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.product-spec-item {
    display: flex; justify-content: space-between;
    font-size: .82rem;
    padding: 6px 10px;
    background: var(--light);
    border-radius: 5px;
}
.product-spec-item .spec-label { color: var(--gray); }
.product-spec-item .spec-value { color: var(--secondary); font-weight: 600; }
.product-card-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex; gap: 10px;
}
.product-card-footer .btn-sm { padding: 7px 16px; font-size: .82rem; }

/* ========================================
   WHY CHOOSE US
======================================== */
.why-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--border);
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform .3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.why-card h4 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 10px; }
.why-card p  { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ========================================
   STATS COUNTER
======================================== */
#stats-section {
    background: linear-gradient(135deg, var(--secondary), var(--dark-2));
    position: relative;
    overflow: hidden;
}
#stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232,93,4,.2) 0%, transparent 60%);
}
.stat-box { text-align: center; position: relative; z-index: 1; }
.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    display: block;
}
.stat-box .stat-suffix { font-size: 1.8rem; }
.stat-box .stat-title { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 8px; }
.stat-divider {
    width: 1px; background: rgba(255,255,255,.1);
    align-self: stretch;
}

/* ========================================
   APPLICATIONS
======================================== */
.app-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: flex; align-items: flex-end;
}
.app-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.app-card:hover .app-card-bg { transform: scale(1.08); }
.app-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.app-card-content { position: relative; z-index: 1; padding: 20px; width: 100%; }
.app-card-content h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.app-card-content p  { color: rgba(255,255,255,.7); font-size: .82rem; }
.app-card-icon {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: rgba(232,93,4,.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1;
}
.app-card-icon i { color: var(--white); font-size: .9rem; }

/* App grid colors */
.app-bg-mining      { background: linear-gradient(135deg, #1a3a2e, #2d5a3d); }
.app-bg-construction{ background: linear-gradient(135deg, #2a1f0e, #4a3020); }
.app-bg-highway     { background: linear-gradient(135deg, #1a2a3a, #203050); }
.app-bg-railway     { background: linear-gradient(135deg, #1a1a2e, #2d2d5a); }
.app-bg-hydropower  { background: linear-gradient(135deg, #0a2a2a, #1a4a4a); }
.app-bg-building    { background: linear-gradient(135deg, #2a1a0e, #5a3020); }

/* ========================================
   PROCESS / WORKFLOW
======================================== */
.process-step {
    position: relative;
    text-align: center;
    padding: 0 20px;
}
.process-step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(232,93,4,.4);
}
.process-step-num::before {
    content: '';
    position: absolute;
    width: 85px; height: 85px;
    border-radius: 50%;
    border: 2px dashed rgba(232,93,4,.3);
    top: -7.5px; left: -7.5px;
    animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.process-connector {
    position: absolute;
    top: 35px;
    left: calc(50% + 43px);
    right: calc(-50% + 43px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}
.process-step:last-child .process-connector { display: none; }
.process-step h4 { font-size: 1rem; color: var(--secondary); margin-bottom: 8px; }
.process-step p  { font-size: .85rem; color: var(--gray); }

/* ========================================
   TESTIMONIALS
======================================== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,93,4,.25); }
.testimonial-card .quote-icon {
    position: absolute; top: 20px; right: 24px;
    font-size: 3rem;
    color: rgba(232,93,4,.12);
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars i { color: var(--accent); font-size: .85rem; }
.testimonial-card blockquote {
    font-size: .92rem;
    color: var(--dark-3);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
    border: none;
    padding: 0;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.author-info .author-name { font-weight: 700; font-size: .9rem; color: var(--secondary); }
.author-info .author-title { font-size: .78rem; color: var(--gray); }
.author-info .author-country { font-size: .75rem; color: var(--primary); font-weight: 600; margin-top: 2px; }

/* ========================================
   CASE STUDIES
======================================== */
.case-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--white);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.case-card-header {
    position: relative;
    display: flex; align-items: flex-end;
    padding: 20px;
}
.case-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
}
.case-card-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 100%);
}
.case-country-badge {
    position: absolute; top: 14px; right: 14px;
    background: var(--primary);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 1;
}
.case-card-title { position: relative; z-index: 1; color: var(--white); font-size: 1rem; line-height: 1.3; }
.case-card-body { padding: 20px; }
.case-metrics { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.case-metric { text-align: center; flex: 1; min-width: 70px; }
.case-metric .metric-val { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.case-metric .metric-label { font-size: .72rem; color: var(--gray); margin-top: 2px; }
.case-card-body p { font-size: .85rem; color: var(--gray); line-height: 1.65; }

/* ========================================
   FAQ ACCORDION
======================================== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,4,.1); }
.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600;
    font-size: .95rem;
    color: var(--secondary);
    transition: var(--transition);
    user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon { transition: transform .3s ease; color: var(--primary); }
.faq-item.active .faq-question .faq-icon { transform: rotate(180deg); }
.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { font-size: .9rem; color: var(--gray); line-height: 1.75; }

/* ========================================
   CONTACT / CTA
======================================== */
#contact-cta {
    background: linear-gradient(135deg, var(--secondary), var(--dark-2) 60%, #2d1810 100%);
    position: relative;
    overflow: hidden;
}
#contact-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(232,93,4,.2) 0%, transparent 55%);
}
.cta-form-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.cta-form-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 22px; }
.form-control-custom {
    width: 100%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--white);
    font-size: .9rem;
    transition: var(--transition);
    outline: none;
    font-family: var(--font-body);
    resize: vertical;
}
.form-control-custom::placeholder { color: rgba(255,255,255,.4); }
.form-control-custom:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,93,4,.2); }
.form-control-custom option { background: var(--secondary); }

/* ========================================
   CERTIFICATIONS
======================================== */
.cert-badge {
    display: flex; align-items: center; gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    transition: var(--transition);
}
.cert-badge:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }
.cert-badge-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.cert-badge-text .cert-name { font-weight: 700; font-size: .9rem; color: var(--secondary); }
.cert-badge-text .cert-issuer { font-size: .78rem; color: var(--gray); }

/* ========================================
   BLOG CARDS
======================================== */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-img .placeholder-icon i { font-size: 2.5rem; color: var(--primary); opacity: .5; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta span { font-size: .78rem; color: var(--gray); display: flex; align-items: center; gap: 5px; }
.blog-meta span i { color: var(--primary); }
.blog-card-body h3 { font-size: 1rem; color: var(--secondary); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.blog-card-body p  { font-size: .85rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; }
.blog-tag { display: inline-block; background: rgba(232,93,4,.1); color: var(--primary); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* ========================================
   FOOTER
======================================== */
#site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
}
.footer-top { padding: 70px 0 50px; }
.footer-brand-desc { font-size: .88rem; line-height: 1.8; margin: 16px 0 24px; color: rgba(255,255,255,.6); }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-heading { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a i { font-size: .7rem; color: var(--primary); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .contact-icon { color: var(--primary); font-size: .95rem; margin-top: 2px; }
.footer-contact-item .contact-info { font-size: .86rem; color: rgba(255,255,255,.6); }
.footer-contact-item .contact-info strong { color: var(--white); display: block; font-size: .8rem; margin-bottom: 2px; }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb-bar {
    background: var(--light);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-custom { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb-custom a { font-size: .85rem; color: var(--gray); transition: var(--transition); }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom .separator { color: var(--gray-light); font-size: .7rem; }
.breadcrumb-custom .current { font-size: .85rem; color: var(--secondary); font-weight: 600; }

/* ========================================
   PAGE HERO (Inner Pages)
======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--secondary), var(--dark-2));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(232,93,4,.2) 0%, transparent 55%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; z-index: 1; }
.page-hero p   { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 500px; position: relative; z-index: 1; margin-top: 10px; }

/* ========================================
   PRODUCT DETAIL
======================================== */
.product-detail-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--light);
    height: 400px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.product-detail-gallery .gallery-placeholder {
    text-align: center;
}
.product-detail-gallery .gallery-placeholder i { font-size: 5rem; color: rgba(232,93,4,.3); }
.product-detail-gallery .gallery-placeholder p { color: var(--gray); font-size: .9rem; margin-top: 12px; }
.product-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.product-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.product-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.product-badge.badge-hot { background: rgba(239,68,68,.1); color: #dc2626; }
.product-badge.badge-new { background: rgba(34,197,94,.1); color: #16a34a; }
.product-badge.badge-popular { background: rgba(232,93,4,.1); color: var(--primary); }
.product-info-card h1 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 8px; }
.product-info-card .product-subtitle { color: var(--gray); font-size: .95rem; margin-bottom: 20px; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.spec-table tr:nth-child(even) td { background: var(--light); }
.spec-table td { padding: 10px 14px; font-size: .88rem; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { color: var(--gray); font-weight: 500; width: 40%; }
.spec-table td:last-child { color: var(--secondary); font-weight: 600; }

/* ========================================
   SIDEBAR WIDGETS
======================================== */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.sidebar-product-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-product-item { display: flex; gap: 12px; align-items: center; }
.sidebar-product-img {
    width: 64px; height: 64px; min-width: 64px;
    border-radius: var(--radius);
    background: var(--light);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.sidebar-product-img i { font-size: 1.5rem; color: var(--primary); opacity: .7; }
.sidebar-product-info a { font-size: .85rem; font-weight: 600; color: var(--secondary); }
.sidebar-product-info a:hover { color: var(--primary); }
.sidebar-product-info p { font-size: .78rem; color: var(--gray); }
.sidebar-cat-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
    color: var(--dark);
    transition: var(--transition);
}
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover { color: var(--primary); padding-left: 5px; }
.sidebar-cat-link .cat-count { background: var(--light); color: var(--gray); font-size: .75rem; padding: 2px 8px; border-radius: 12px; }

/* ========================================
   BACK TO TOP
======================================== */
#back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(232,93,4,.4);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    border: none;
    cursor: pointer;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991.98px) {
    .section-padding    { padding: 60px 0; }
    .hero-stats         { gap: 20px; }
    #hero               { min-height: auto; padding: 60px 0; }
    .process-connector  { display: none; }
    .stat-divider       { display: none; }
}
@media (max-width: 767.98px) {
    .section-padding    { padding: 44px 0; }
    #hero h1            { font-size: 2rem; }
    .hero-stats         { flex-wrap: wrap; gap: 16px; }
    .hero-stat-item     { width: calc(50% - 8px); }
    .section-header h2  { font-size: 1.7rem; }
    .footer-top         { padding: 44px 0 32px; }
    #topbar             { display: none; }
    .cta-form-card      { padding: 24px; }
    .case-metrics       { gap: 10px; }
}
@media (max-width: 575.98px) {
    .hero-stats         { flex-direction: column; gap: 12px; }
    .hero-stat-item     { width: 100%; }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp .65s ease both; }
.animate-delay-1 { animation-delay: .1s; }
.animate-delay-2 { animation-delay: .2s; }
.animate-delay-3 { animation-delay: .3s; }
.animate-delay-4 { animation-delay: .4s; }

/* ========================================
   WORDPRESS SPECIFIC
======================================== */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .82rem; color: var(--gray); text-align: center; padding: 6px 0; }
.alignleft  { float: left; margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter{ display: block; margin: 0 auto 10px; }
.screen-reader-text { position: absolute; left: -9999px; }
.sticky { /* WordPress sticky post */ }
.gallery-caption { }
.bypostauthor { }
