/* ===============================================
   NEXPART Industrial - Main Stylesheet
   Industrial Design for Heavy Machinery Parts
   =============================================== */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette */
    --primary-color: #FF6B00;
    --primary-dark: #D65800;
    --secondary-color: #1A1A2E;
    --accent-color: #FDB515;
    --dark-gray: #16213E;
    --medium-gray: #2E3A59;
    --light-gray: #E8E8E8;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --emergency: #FF0000;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-speed: 0.3s;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #F5F5F5;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-top {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.emergency-tag {
    background: var(--emergency);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.btn-quote-mini {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-quote-mini:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
    background: var(--white);
    padding: 0;
}

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

.logo {
    font-family: var(--font-heading);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-top: -8px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

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

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed);
    border-radius: 4px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all var(--transition-speed);
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary,
.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-emergency {
    background: var(--emergency);
    color: var(--white);
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === TRUST BADGES === */
.trust-badges {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* === SECTION STYLES === */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* === INDUSTRIES SECTION === */
.industries {
    background: linear-gradient(to bottom, #F5F5F5, #FFFFFF);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
    overflow: hidden;
}

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

.industry-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.industry-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.industry-features {
    margin-bottom: 20px;
}

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

.industry-features li i {
    color: var(--success);
    font-size: 0.875rem;
}

.btn-industry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-industry:hover {
    gap: 12px;
}

/* === BRANDS SECTION === */
.brands-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.brand-card {
    background: linear-gradient(145deg, #2E3A59 0%, #1A1A2E 100%);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.brand-card .brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    padding: 20px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: inline-block;
    letter-spacing: 2px;
    opacity: 1;
}

.brand-card:hover .brand-logo {
    background: var(--primary-color);
    color: var(--white);
}

.brand-card span {
    display: block;
    font-size: 1rem;
    color: #AAA;
    font-weight: 500;
    margin-top: 10px;
}

.brand-card:hover span {
    color: var(--white);
}

.brands-carousel {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.brand-item {
    flex: 0 0 auto;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.7;
    transition: all var(--transition-speed);
    padding: 20px;
}

.brand-logo:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

/* Brands grid responsive */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .brand-card {
        padding: 20px 15px;
    }
    
    .brand-card .brand-logo {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
}

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

/* === WHY US SECTION === */
.why-us {
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

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

.emergency-contact {
    background: rgba(255, 0, 0, 0.1);
    border-left: 3px solid var(--emergency);
    padding: 15px;
    margin-top: 15px !important;
    color: var(--white) !important;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-speed);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

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

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

.breadcrumb i {
    color: rgba(255, 255, 255, 0.5);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === INDUSTRY PAGES - PROFESSIONAL REDESIGN === */

/* Industry Stats Section */
.industry-stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

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

@media (max-width: 576px) {
    .industry-stats-grid {
        grid-template-columns: 1fr;
    }
}

.industry-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.industry-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industry-stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(253, 181, 21, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.industry-stat-card .stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.industry-stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.industry-stat-card .stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.industry-stat-card .stat-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Industry Main Content */
.industry-main-content {
    padding: 100px 0;
    background: var(--white);
}

.industry-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .industry-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.industry-text-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-text-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .industry-text-content h2 {
        font-size: 2rem;
    }
}

.industry-text-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.industry-text-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.industry-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.feature-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.industry-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.industry-cta-buttons .btn-primary,
.industry-cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.industry-cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.industry-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.industry-cta-buttons .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Industry Visual */
.industry-visual {
    position: relative;
}

.industry-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.industry-image-placeholder i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.industry-image-placeholder.construccion {
    background: linear-gradient(135deg, #2D3436 0%, #636E72 100%);
}

.industry-image-placeholder.forestal {
    background: linear-gradient(135deg, #0B3D0B 0%, #1E5128 100%);
}

.industry-image-placeholder.energia {
    background: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%);
}

.industry-brands-mini {
    margin-top: 25px;
    text-align: center;
}

.industry-brands-mini > span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mini-brands {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.mini-brands span {
    background: #F8F9FA;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Industry Categories */
.industry-categories {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.industry-categories .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.industry-categories .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.industry-categories .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

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

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

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

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

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

.industry-cta-section.construccion {
    background: linear-gradient(135deg, #2D3436, #636E72);
}

.industry-cta-section.forestal {
    background: linear-gradient(135deg, #0B3D0B, #1E5128);
}

.industry-cta-section.energia {
    background: linear-gradient(135deg, #1A1A2E, #0F3460);
}

.industry-cta-section .cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.industry-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.industry-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--emergency);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #CC0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-speed);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-content {
        text-align: center;
        justify-content: center;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* === INDUSTRY PAGES === */
.industry-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.industry-hero[data-industry="mineria"] {
    background: linear-gradient(135deg, #1a2634, #2d4a5c);
}

.industry-hero[data-industry="construccion"] {
    background: linear-gradient(135deg, #ff6b00, #d65800);
}

.industry-hero[data-industry="forestal"] {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.industry-hero[data-industry="energia"] {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}

.industry-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 70%);
}

.industry-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.industry-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industry-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.industry-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Industry Stats */
.industry-stats {
    background: var(--white);
    padding: 40px 0;
    box-shadow: var(--shadow-md);
}

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

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Equipment Categories */
.equipment-categories {
    background: #F8F9FA;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed);
}

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

.category-image {
    text-align: center;
    margin-bottom: 20px;
}

.category-image i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.category-specs {
    margin-bottom: 20px;
}

.category-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.category-specs i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.category-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.brand-tag {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-category:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
}

/* Critical Parts */
.critical-parts {
    background: var(--white);
}

.parts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.part-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 3px solid var(--success);
}

.part-item i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, #F8F9FA, #FFFFFF);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* === CATALOG PAGE === */
.search-section {
    background: var(--white);
    padding: 40px 0;
    box-shadow: var(--shadow-sm);
}

.search-box-advanced {
    max-width: 900px;
    margin: 0 auto;
    background: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
}

.search-box-advanced h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-form .search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-field input,
.search-field select {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-search {
    padding: 14px 40px;
}

/* Catalog Layout */
.catalog-section {
    padding: 40px 0 80px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar Filters */
.catalog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-box {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.filter-box h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-checkbox,
.filter-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
}

.filter-checkbox input,
.filter-radio input {
    cursor: pointer;
}

.help-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.help-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.help-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.help-box p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-help {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Catalog Content */
.catalog-content {
    min-height: 600px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-info {
    color: var(--text-light);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

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

.product-image {
    background: #F8F9FA;
    height: 200px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary-color);
}

.product-info h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.product-code {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-brand {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-quick-quote {
    flex: 1;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-speed);
}

.btn-quick-quote:hover {
    background: var(--primary-dark);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 15px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all var(--transition-speed);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

.pagination-dots {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: var(--text-light);
}

/* === QUOTE FORM PAGE === */
.quote-form-section {
    padding: 60px 0;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.quote-form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Quote Item */
.quote-item {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.item-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-remove-item {
    background: var(--danger);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: all var(--transition-speed);
}

.btn-remove-item:hover {
    background: #c82333;
}

.btn-add-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-add-item:hover {
    background: rgba(255, 107, 0, 0.1);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.875rem;
    color: var(--text-light);
}

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

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Quote Sidebar */
.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box,
.contact-box,
.emergency-box {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-box {
    background: linear-gradient(135deg, #F8F9FA, #FFFFFF);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    transition: all var(--transition-speed);
}

.contact-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.emergency-box {
    background: linear-gradient(135deg, var(--emergency), #c82333);
    color: var(--white);
}

.emergency-box i {
    color: var(--white);
}

.emergency-box h4 {
    color: var(--white);
}

/* === BRANDS PAGE === */
.brands-detail-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

@media (max-width: 1200px) {
    .brands-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .brands-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brands-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.brand-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.brand-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brand-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-detail-card:hover::before {
    transform: scaleX(1);
}

.brand-detail-card .brand-logo-large {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.brand-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.brand-detail-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.brand-detail-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.brand-detail-card .btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Brands Page Stats */
.brands-stats-section {
    background: var(--secondary-color);
    padding: 60px 0;
}

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

@media (max-width: 768px) {
    .brands-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brands-stat-item {
    color: var(--white);
}

.brands-stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.brands-stat-item span:last-child {
    font-size: 1rem;
    opacity: 0.8;
}

.brand-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-logo-large {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.brand-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-partner,
.badge-stock {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-partner {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.badge-stock {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.brand-detail-content {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.brand-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.brand-categories {
    margin-bottom: 20px;
}

.brand-categories h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

.category-tags span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #F8F9FA;
    border-radius: 6px;
    font-size: 0.875rem;
}

.category-tags i {
    color: var(--success);
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-brand:hover {
    background: var(--primary-dark);
    gap: 12px;
}

/* === ABOUT PAGE - PROFESSIONAL REDESIGN === */
.about-content {
    padding: 0;
}

/* Hero Story Section */
.about-hero-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-story::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-hero-story {
        padding: 60px 0;
    }
}

.story-content {
    position: relative;
    z-index: 1;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .story-content h2 {
        font-size: 2.2rem;
    }
}

.story-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.story-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-highlight {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    color: var(--white);
}

.story-highlight blockquote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.story-highlight blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    left: -5px;
    top: -20px;
    font-family: Georgia, serif;
}

.story-highlight cite {
    display: block;
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
}

/* Story Visual */
.story-visual {
    position: relative;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-image-main {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-image-main i {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.story-year-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.story-year-badge .year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.story-year-badge span:last-child {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Stats Section */
.about-stats {
    background: var(--secondary-color);
    padding: 80px 0;
}

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

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-box {
    text-align: center;
    color: var(--white);
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-box .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-box .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Timeline Section */
.about-timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.timeline-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        padding-left: 60px;
    }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

@media (max-width: 768px) {
    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

.timeline-content {
    width: calc(50% - 50px);
    background: #F8F9FA;
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-content {
        width: 100%;
    }
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Mission Vision Values */
.about-mvv {
    padding: 100px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

@media (max-width: 992px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.mvv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(253, 181, 21, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mvv-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values List */
.about-values {
    padding: 100px 0;
    background: var(--secondary-color);
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.values-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.values-header p {
    opacity: 0.8;
    font-size: 1.1rem;
}

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

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-cta .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

/* === INDUSTRY PAGES - PROFESSIONAL DESIGN === */

/* Industry Page Headers */
.page-header-mineria {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.page-header-construccion {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #b2bec3 100%);
}

.page-header-forestal {
    background: linear-gradient(135deg, #1e5128 0%, #4e9f3d 50%, #8ed973 100%);
}

.page-header-energia {
    background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
}

/* Industry Stats Section */
.industry-stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

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

@media (max-width: 576px) {
    .industry-stats-grid {
        grid-template-columns: 1fr;
    }
}

.industry-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.industry-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industry-stat-card:hover::before {
    transform: scaleX(1);
}

.industry-stat-card .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-stat-card .stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.industry-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.industry-stat-card .stat-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.industry-stat-card .stat-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Industry Main Content */
.industry-main-content {
    padding: 100px 0;
    background: var(--white);
}

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

@media (max-width: 992px) {
    .industry-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.industry-text-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 159, 67, 0.1));
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.industry-text-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .industry-text-content h2 {
        font-size: 2rem;
    }
}

.industry-text-content .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-text-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.industry-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-item i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.industry-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.industry-cta-buttons .btn-primary,
.industry-cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.industry-cta-buttons .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.industry-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.industry-cta-buttons .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Industry Visual Section */
.industry-visual {
    position: relative;
}

.industry-image-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.industry-image-placeholder.construccion {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.industry-image-placeholder.forestal {
    background: linear-gradient(135deg, #1e5128, #4e9f3d);
}

.industry-image-placeholder.energia {
    background: linear-gradient(135deg, #0c2461, #1e3799);
}

.industry-image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.15);
}

.industry-brands-mini {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.industry-brands-mini span:first-child {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.mini-brands {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-brands span {
    background: #F8F9FA;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Industry Categories Section */
.industry-categories {
    padding: 80px 0;
    background: #F8F9FA;
}

.industry-categories .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.industry-categories .section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.industry-categories .section-header p {
    color: var(--text-light);
}

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

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

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Industry CTA Section */
.industry-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    text-align: center;
}

.industry-cta-section.construccion {
    background: linear-gradient(135deg, #2d3436, #636e72);
}

.industry-cta-section.forestal {
    background: linear-gradient(135deg, #1e5128, #4e9f3d);
}

.industry-cta-section.energia {
    background: linear-gradient(135deg, #0c2461, #1e3799);
}

.industry-cta-section .cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .industry-cta-section .cta-content h2 {
        font-size: 1.8rem;
    }
}

.industry-cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.industry-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-cta-section .btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--emergency);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.industry-cta-section .btn-emergency:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.industry-cta-section .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.industry-cta-section .btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Choose */
.why-choose-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-item {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.reason-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 107, 0, 0.2);
    margin-bottom: 15px;
}

.reason-item h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.stats-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box-large {
    text-align: center;
}

.stat-number-large {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label-large {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === CONTACT PAGE === */
/* === CONTACT PAGE - PROFESSIONAL REDESIGN === */

/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

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

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card.emergency {
    border: 2px solid var(--emergency);
}

.contact-info-card.emergency::before {
    background: linear-gradient(90deg, var(--emergency), #FF6B6B);
    transform: scaleX(1);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(253, 181, 21, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper i {
    color: var(--white);
}

.contact-icon-wrapper.emergency {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 107, 107, 0.1));
}

.contact-info-card.emergency .contact-icon-wrapper i {
    color: var(--emergency);
}

.contact-info-card.emergency:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--emergency), #FF6B6B);
}

.contact-info-card.emergency:hover .contact-icon-wrapper i {
    color: var(--white);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-card p.text-muted {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

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

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #F8F9FA;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.contact-form .form-field {
    margin-bottom: 0;
}

.contact-form .form-field:not(:last-child) {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form label .required {
    color: var(--emergency);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9CA3AF;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Legacy contact section (keep for compatibility) */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

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

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.emergency-item {
    background: rgba(255, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 2px solid var(--emergency);
}

.emergency-item .contact-icon {
    background: var(--emergency);
}

.emergency-item .contact-icon i {
    color: var(--white);
}

/* Office Hours */
.office-hours-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.office-hours-box h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.hours-item.emergency {
    background: rgba(255, 0, 0, 0.05);
    border-radius: 6px;
    padding: 12px;
    font-weight: 700;
    color: var(--emergency);
}

/* Social Box */
.social-box {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.social-box h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--transition-speed);
}

.social-link.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-link.linkedin {
    background: #0A66C2;
    color: var(--white);
}

.social-link.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    color: var(--white);
}

.social-link.youtube {
    background: #FF0000;
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Contact Form Side */
.contact-form-side {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-form-box > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Departments Section */
.departments-section {
    background: #F8F9FA;
    padding: 60px 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.department-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

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

.department-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.department-card h4 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.department-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

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

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.modal-close:hover {
    color: var(--danger);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        position: static;
    }
    
    .quote-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .industry-hero h1 {
        font-size: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .emergency-contact {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* Global adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Footer extra small */
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
    /* Brands page mobile */
    .brands-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .brands-stat-item .stat-number {
        font-size: 2rem;
    }
}