/*
Theme Name: SOERIC Energy Theme
Theme URI: https://soeric.com
Author: SOERIC
Author URI: https://soeric.com
Description: Professional light industrial theme for SOERIC Energy Solutions - hybrid inverters, energy storage systems, and solar charge controllers.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soeric
*/

/* SOERIC - Light Industrial Energy Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-forest: #1a5d4a;
    --primary-teal: #00a693;
    --primary-aqua: #14b8a6;
    --primary-red: #00a693;
    --primary-orange: #14b8a6;
    --gradient: linear-gradient(135deg, #1a5d4a 0%, #00a693 50%, #14b8a6 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(0,166,147,0.1) 0%, rgba(20,184,166,0.1) 100%);
    --electric-green: #00c853;

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-muted: #757575;
    --text-light: #9e9e9e;

    --border: #e5e5e5;
    --border-light: #eeeeee;
    --bg-subtle: #fafafa;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; font-family: 'Inter', sans-serif; font-size: 14px;
    font-weight: 600; border-radius: 8px; border: none; cursor: pointer;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-gradient { background: var(--primary-teal); color: var(--white); box-shadow: var(--shadow-md); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,166,147,0.3); background: var(--primary-forest); }
.btn-outline { background: transparent; border: 2px solid var(--gray-300); color: var(--text-dark); }
.btn-outline:hover { border-color: var(--primary-red); color: var(--primary-red); }
.btn-white { background: var(--white); color: var(--text-dark); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--gray-50); }
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-full { width: 100%; }

/* HEADER - Transparent by default, solid on scroll */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent; border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
.header.scrolled { background: var(--white); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-content { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.logo { display: flex; align-items: center; }
.logo-img { height: 85px; width: auto; transition: all 0.3s ease; filter: brightness(0) invert(1); }
.header.scrolled .logo-img { filter: none; }
.logo-text {
    font-size: 28px; font-weight: 800; letter-spacing: 2px;
    color: var(--white); -webkit-text-fill-color: var(--white);
}
.header.scrolled .logo-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.main-nav { display: none; }
.nav-menu { display: flex; gap: 40px; }
.nav-menu > li > a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); padding: 8px 0; position: relative; transition: all 0.3s ease; }
.nav-menu > li > a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--white); transition: width 0.3s ease; }
.nav-menu > li > a:hover, .nav-menu > li.active > a, .nav-menu > li.current-menu-item > a { color: var(--white); }
.nav-menu > li > a:hover::after, .nav-menu > li.active > a::after, .nav-menu > li.current-menu-item > a::after { width: 100%; }
.header.scrolled .nav-menu > li > a { color: var(--text-body); }
.header.scrolled .nav-menu > li > a::after { background: var(--gradient); }
.header.scrolled .nav-menu > li > a:hover, .header.scrolled .nav-menu > li.active > a, .header.scrolled .nav-menu > li.current-menu-item > a { color: var(--primary-red); }
.header-actions { display: none; }
.btn-gradient-outline { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 28px; font-size: 14px; border-radius: 8px; }
.btn-gradient-outline:hover { background: var(--white); color: var(--primary-red); transform: none; box-shadow: none; }
.header.scrolled .btn-gradient-outline { background: var(--primary-teal); border-color: transparent; color: var(--white); }
.header.scrolled .btn-gradient-outline:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,166,147,0.3); background: var(--primary-forest); }
.mobile-toggle { display: flex; flex-direction: column; gap: 4px; padding: 8px; background: none; border: none; cursor: pointer; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.header.scrolled .mobile-toggle span { background: var(--text-dark); }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); padding: 100px 32px 32px; transition: right 0.4s ease; z-index: 999; box-shadow: var(--shadow-xl); }
.mobile-nav.active { right: 0; }
.mobile-nav a { display: block; padding: 16px 0; font-size: 16px; font-weight: 500; color: var(--text-body); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--primary-red); }

@media (min-width: 1024px) { .main-nav, .header-actions { display: flex; } .mobile-toggle, .mobile-nav { display: none; } }

/* HERO - Full Bleed with Dark Overlay */
.hero-carousel { position: relative; width: 100%; height: 92vh; min-height: 650px; overflow: hidden; background: var(--gray-900); }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; justify-content: center; }
.slide-text-center { text-align: center; max-width: 780px; margin: 0 auto; }
.slide-text-center h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.5px; }
.slide-text-center p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.slide-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-hero-primary { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; background: var(--white); color: var(--text-dark); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: all 0.3s ease; letter-spacing: 0.3px; }
.btn-hero-primary:hover { background: var(--primary-teal); color: var(--white); transform: translateY(-1px); }
.btn-hero-outline { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; background: transparent; color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; border-radius: 6px; border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s ease; letter-spacing: 0.3px; }
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.carousel-pagination { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s ease; border: none; padding: 0; }
.carousel-dot.active { background: var(--white); transform: scale(1.3); }
.carousel-dot:hover { background: rgba(255,255,255,0.6); }
.scroll-indicator { position: absolute; bottom: 48px; right: 48px; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10; }
.scroll-indicator span { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; writing-mode: vertical-rl; }
.scroll-line { width: 2px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 2px; position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 30px; background: var(--white); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -100%; } 100% { top: 200%; } }
.hero-mobile-img { display: none; }
@media (max-width: 767px) { .scroll-indicator { display: none; } .slide-buttons { flex-direction: column; } .slide-buttons .btn-hero-primary, .slide-buttons .btn-hero-outline { width: 100%; } .hero-video { display: none; } .hero-mobile-img { display: block; } }

/* CONTACT CARDS */
.contact-cards-section { padding: 100px 0; background: var(--white); }
.contact-cards-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact-card { text-align: center; padding: 48px 32px; }
.contact-card-icon { width: 64px; height: 64px; margin: 0 auto 24px; background: var(--primary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { width: 28px; height: 28px; color: var(--white); }
.contact-card h3 { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.contact-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.contact-card a { color: var(--text-dark); }
.contact-card a:hover { color: var(--primary-teal); }
@media (min-width: 768px) { .contact-cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* CONTACT CTA */
.contact-cta-section { padding: 0 0 100px; background: var(--white); }
.contact-cta-box { background: var(--primary-teal); border-radius: 20px; padding: 80px 48px; text-align: center; }
.contact-cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.contact-cta-box p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

/* SECTIONS */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.section-header p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary-red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--gray-900); color: var(--white); }
.bg-dark .section-header h2 { color: var(--white); }
.bg-dark .section-header p { color: var(--gray-400); }

/* CATEGORIES */
.product-categories { background: var(--gray-50); }
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.category-card { display: block; background: transparent; border: none; border-radius: 0; overflow: visible; transition: all 0.4s ease; text-align: center; }
.category-card:hover { transform: translateY(-8px); }
.category-image { aspect-ratio: 4/3; overflow: visible; background: transparent; display: flex; align-items: center; justify-content: center; padding: 24px; }
.category-image img { max-width: 80%; max-height: 80%; object-fit: contain; transition: transform 0.5s ease; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.category-card:hover .category-image img { transform: scale(1.08) translateY(-5px); }
.category-info { padding: 16px 8px; }
.category-info h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.category-info p { font-size: 16px; color: var(--text-muted); margin-bottom: 16px; }
.category-link { font-size: 14px; font-weight: 600; color: var(--primary-red); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.category-card:hover .category-link { gap: 12px; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }

/* PRODUCTS */
.featured-products { background: var(--white); }
.products-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.product-card { background: transparent; border: none; border-radius: 0; overflow: visible; transition: all 0.4s ease; position: relative; }
.product-card:hover { }
.product-badge { position: absolute; top: 16px; left: 16px; padding: 8px 16px; background: var(--primary-teal); color: var(--white); font-size: 12px; font-weight: 700; border-radius: 8px; z-index: 10; text-transform: uppercase; }
.product-badge.new { background: var(--electric-green); }
.product-image { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: transparent; padding: 24px; }
.product-image img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.4s ease; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15)); }
.product-card:hover .product-image img { transform: scale(1.08) translateY(-5px); }
.product-info { padding: 16px 8px; text-align: center; }
.product-category { display: inline-block; font-size: 12px; color: var(--primary-red); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.product-info h3, .product-info h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.product-subtitle, .product-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.product-features li { font-size: 14px; color: var(--text-muted); padding: 4px 0; }
.product-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; justify-content: center; }
.product-specs span { padding: 8px 12px; background: var(--gray-100); font-size: 12px; font-weight: 500; color: var(--text-body); border-radius: 8px; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-actions .btn { width: 100%; text-align: center; }
.view-all { text-align: center; margin-top: 48px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* STATS */
.stats-section { background: var(--gray-50); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(40px, 7vw, 60px); font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-number span { font-size: 0.5em; }
.stat-label { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 12px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* CTA */
.cta-section { background: var(--primary-teal); padding: 100px 0; position: relative; background-size: cover; background-position: center; }
.cta-section.has-bg { background-size: cover; background-position: center 30%; }
.cta-section.has-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.cta-section .cta-content { position: relative; z-index: 2; }
.cta-content { text-align: center; }
.cta-content h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* PAGE HERO - For internal pages */
.page-hero { background: var(--primary-teal); padding: 160px 0 80px; text-align: center; position: relative; background-size: cover; background-position: center; }
.page-hero.has-bg { background-size: cover; background-position: center; padding: 220px 0 180px; }
.page-hero.has-bg::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.page-hero-content p { font-size: 18px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto; }

/* PAGE BANNER */
.page-banner { background: var(--gray-50); padding: 160px 0 80px; text-align: center; }
.breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--primary-red); }
.page-banner h1 { font-size: clamp(36px, 6vw, 56px); font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.page-banner p { font-size: 18px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* FILTERS */
.product-filters-section { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); position: sticky; top: 73px; z-index: 100; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.filter-tab { padding: 12px 24px; background: var(--gray-100); border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--text-body); cursor: pointer; transition: all 0.3s; }
.filter-tab:hover { border-color: var(--primary-red); color: var(--primary-red); }
.filter-tab.active { background: var(--primary-teal); color: var(--white); border-color: transparent; }
.product-section { padding: 80px 0; background: var(--white); }
.product-section.bg-light { background: var(--gray-50); }
.section-header-left { margin-bottom: 48px; }
.section-header-left h2 { font-size: 36px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.section-header-left p { color: var(--text-muted); font-size: 16px; }
.products-grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .products-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* CONTACT */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 64px; }
.contact-info-side h2 { font-size: 36px; font-weight: 700; margin-bottom: 16px; color: var(--text-dark); }
.contact-info-side > p { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; line-height: 1.7; }
.contact-item { display: flex; gap: 20px; margin-bottom: 32px; }
.contact-icon { width: 56px; height: 56px; background: var(--primary-teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 24px; height: 24px; color: var(--white); }
.contact-text h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 1px; }
.contact-text p, .contact-text a { font-size: 16px; color: var(--text-dark); line-height: 1.6; }
.contact-text a:hover { color: var(--primary-red); }
.contact-social h4 { font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px; color: var(--text-muted); }
.social-icons { display: flex; gap: 12px; }
.social-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--gray-100); border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s; }
.social-icon svg { width: 20px; height: 20px; color: var(--text-muted); }
.social-icon:hover { background: var(--primary-teal); border-color: transparent; }
.social-icon:hover svg { color: var(--white); }
.contact-form-side { background: var(--gray-50); border: 1px solid var(--border); padding: 48px; border-radius: 20px; }
.contact-form h3 { font-size: 28px; font-weight: 600; margin-bottom: 32px; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-body); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-size: 16px; font-family: inherit; color: var(--text-dark); transition: all 0.3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(230,0,19,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-wrapper { grid-template-columns: 1fr 1.3fr; } }

/* ABOUT */
.about-intro { padding: 100px 0; background: var(--white); }
.about-intro-wrapper { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.about-intro-content h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
.about-intro-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-image-box { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.about-image-box img { width: 100%; display: block; }
@media (min-width: 900px) { .about-intro-wrapper { grid-template-columns: 1fr 1fr; } }
.mission-vision { padding: 100px 0; background: var(--gray-50); }
.mv-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mv-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center; transition: all 0.3s ease; }
.mv-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.mv-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: var(--primary-teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mv-icon svg { width: 32px; height: 32px; color: var(--white); }
.mv-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 16px; color: var(--text-dark); }
.mv-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
@media (min-width: 768px) { .mv-grid { grid-template-columns: repeat(3, 1fr); } }
.why-choose { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feature-card { background: var(--gray-50); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--primary-red); }
.feature-number { font-size: 40px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 12px; }
.feature-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.certifications { padding: 80px 0; background: var(--gray-50); }
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.cert-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cert-icon { width: 80px; height: 80px; background: var(--white); border: 2px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: var(--primary-red); transition: all 0.3s ease; }
.cert-item:hover .cert-icon { border-color: var(--primary-teal); background: var(--primary-teal); color: var(--white); }
.cert-item span { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ABOUT - Simple styles */
.about-content-simple { max-width: 800px; margin: 0 auto; }
.about-text h2 { font-size: 32px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.about-text p { font-size: 18px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-features-list { max-width: 800px; margin: 0 auto; }
.about-feature-item { padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--text-body); line-height: 1.7; }
.about-feature-item:last-child { border-bottom: none; }
.about-feature-item strong { color: var(--text-dark); }
.cert-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cert-badge { padding: 12px 24px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-dark); }

/* MAP */
.map-section { padding: 0; }
.map-placeholder { height: 300px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.map-overlay { text-align: center; padding: 40px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-md); }
.map-overlay h3 { font-size: 24px; margin-bottom: 8px; color: var(--text-dark); }
.map-overlay p { color: var(--text-muted); }

/* FOOTER */
.footer { background: var(--gray-50); color: var(--text-body); border-top: 1px solid var(--border); }
.footer-main { padding: 80px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo-img { height: 80px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: var(--text-muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--border); border-radius: 8px; color: var(--text-muted); font-size: 16px; transition: all 0.3s; }
.footer-social a:hover { background: var(--primary-teal); border-color: transparent; color: var(--white); }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary-red); }
.footer-contact p { font-size: 14px; margin-bottom: 16px; line-height: 1.7; color: var(--text-muted); }
.footer-contact a { color: var(--text-body); }
.footer-contact a:hover { color: var(--primary-red); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* WORDPRESS */
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* RESPONSIVE */
@media (max-width: 767px) {
    section { padding: 64px 0; }
    .slide-buttons { flex-direction: column; }
    .slide-buttons .btn { width: 100%; }
    .contact-form-side { padding: 32px 24px; }
    /* Both grids: 1 column on mobile */
    .categories-grid { grid-template-columns: 1fr; }
    .category-image { aspect-ratio: 4/3; }
    .products-grid { grid-template-columns: 1fr; }
    .product-image { aspect-ratio: 4/3; }
}
