/* AVI Enterprises - Industrial Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2c3e50;
    --secondary-dark: #34495e;
    --accent-orange: #e67e22;
    --accent-blue: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --white: #ffffff;
    --border-color: #bdc3c7;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* New Header Structure for Category Pages */
.header .navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.header .nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header .nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header .nav-list a:hover,
.header .nav-list a.active {
    color: var(--accent-orange);
}

.header .nav-cta {
    display: flex;
    align-items: center;
}

.header .nav-cta .btn {
    white-space: nowrap;
    margin-left: 1rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.logo a:hover {
    color: var(--accent-orange);
    opacity: 0.9;
}

.logo a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.logo a h1 {
    color: var(--primary-dark);
}

.logo span {
    color: var(--accent-orange);
}

/* Ensure consistent logo styling across all page types */
.header .logo,
.navbar .logo {
    font-size: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-orange);
}

.cta-button {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d35400;
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background: rgba(44, 62, 80, 0.8);
    color: var(--white);
    padding: 3rem;
    max-width: 600px;
    margin-left: 5%;
}

.slide h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-orange);
}

/* Content Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.intro-content h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    text-align: center;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Process Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 3rem 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 1rem;
    max-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-dark);
}

.testimonial-company {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: var(--primary-dark);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}



.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.contact-item i {
    margin-right: 1rem;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 10px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #d35400;
}

/* Footer */
footer {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #d35400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 1 !important;
    transform: none !important;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.faq-question:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: -2px;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--white);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding: 0 2rem 1.5rem;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* FAQ Animation Enhancements */
.faq-item {
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-orange);
    transition: height 0.3s ease;
}

.faq-item.active::before {
    height: 100%;
}

.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.08);
}

/* Mobile responsive styles for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        padding: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        z-index: 1002;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle i {
        display: block !important;
        font-size: 1.5rem;
        color: var(--primary-dark);
    }
    
    .mobile-menu-toggle span {
        display: none !important;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero {
        height: 500px;
    }
    
    .slide-content {
        margin: 0 5%;
        padding: 2rem;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        max-width: 250px;
        margin: 0 auto;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .process-step:last-child {
        margin-bottom: 0;
    }
    
    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Product Category Pages */
.category-hero {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.category-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
}

.tab-button.active {
    color: var(--accent-orange);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-orange);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0.5rem auto 1.5rem;
    opacity: 0.9;
}

.breadcrumb {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb span {
    color: var(--white);
    opacity: 0.7;
}

.contact-info {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.contact-icon span {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-forms {
    padding: 2rem 0;
    background: var(--white);
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-section {
    padding: 3rem 0;
    background: var(--white);
}

.map-section .container {
    max-width: 1200px;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.map-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.map-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.parking-info {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.contact-cta .cta-buttons {
    display: inline-flex;
    gap: 1rem;
    margin-top: 1rem;
}

.industries-intro {
    padding: 2rem 0;
    background: var(--white);
}

.industries-intro .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industries-intro .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.industries-intro .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.industries-grid {
    padding: 2rem 0;
    background: var(--white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.industry-icon img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.industry-content h3 {
    margin-bottom: 0.5rem;
}

.industry-applications {
    margin: 0.75rem 0 1rem;
    padding-left: 1.2rem;
}

.industry-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
}

.solutions-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.solutions-cta {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
}

.industry-solutions {
    padding: 2rem 0;
    background: var(--bg-light);
}

.industry-solutions .container {
    max-width: 1200px;
}

.industry-testimonials {
    padding: 2rem 0;
    background: var(--white);
}

.industry-testimonials .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.industry-testimonials .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.industry-testimonials .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: normal;
}

.industry-tag {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .machine-overview .container {
        grid-template-columns: 1fr;
    }
    .map-info {
        grid-template-columns: 1fr;
    }
    .solutions-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .forms-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Industries Page Mobile Styles */
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-icon img {
        margin-bottom: 0.75rem;
    }
    
    .industry-content h3 {
        font-size: 1.3rem;
    }
    
    .industry-applications {
        margin: 0.5rem 0 0.75rem;
        padding-left: 1rem;
    }
    
    .industry-specs {
        gap: 0.25rem;
    }
    
    .spec-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .industries-intro .section-header h2,
    .industry-testimonials .section-header h2 {
        font-size: 2rem;
    }
    
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .solutions-cta {
        padding: 1rem;
        word-wrap: break-word;
    }
    
    .solutions-cta h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .solutions-cta p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .solutions-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    @media (max-width: 480px) {
        .solutions-cta .btn {
            font-size: 0.85rem;
            padding: 0.6rem 0.8rem;
        }
        
        .solutions-cta h3 {
            font-size: 1.1rem;
        }
        
        .solutions-cta p {
            font-size: 0.85rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            min-height: 2.5rem;
        }
        
        .feature-item .feature-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
        
        .application-icon,
        .support-icon {
            font-size: 2.5rem;
            min-height: 2.5rem;
        }
    }
    
    /* Ensure proper icon alignment in all contexts */
    .feature-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .feature-item .feature-icon i {
        font-size: inherit;
    }
    
    /* Product card specific icon styling */
    .product-card .feature-icon {
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    /* Application and support icon improvements */
    .application-icon,
    .support-icon {
        text-align: center;
        margin: 0 auto 1rem;
    }
    
    .application-icon i,
    .support-icon i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    /* General icon improvements */
    .fa, .fas, .far, .fab {
        line-height: 1;
        vertical-align: middle;
    }
    
    /* Universal icon centering fix */
    [class*="icon"] i.fas,
    [class*="icon"] i.far,
    [class*="icon"] i.fab,
    [class*="icon"] i.fa {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Ensure consistent icon sizing */
    .feature-icon .fas,
    .feature-icon .far,
    .feature-icon .fab,
    .feature-icon .fa {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Specific adjustments for icons that might appear misaligned */
    .feature-icon .fa-ship,
    .feature-icon .fa-industry,
    .feature-icon .fa-cogs {
        transform: translateY(0);
    }
    
    /* Ensure icons are perfectly centered in circular containers */
    .feature-item .feature-icon {
        position: relative;
        overflow: hidden;
    }
    
    .feature-item .feature-icon i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Contact Page Mobile Styles */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-icon span {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .map-section .section-header h2 {
        font-size: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-container {
        margin-top: 0.5rem;
    }
}

/* Machine Detail Page */
.machine-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.machine-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--accent-orange);
}

.machine-specs {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table th,
.specs-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    background: var(--accent-orange);
    color: var(--white);
    font-weight: bold;
}

.specs-table tr:nth-child(even) {
    background: rgba(255,255,255,0.5);
}

/* New Category Page Styles */
.category-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.breadcrumb span {
    color: var(--accent-orange);
    margin-left: 0.5rem;
}

.category-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.category-intro h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.category-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Machine Cards Grid */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.machine-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.machine-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.machine-content {
    padding: 2rem;
}

.machine-content h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.machine-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.machine-specs {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--accent-orange);
    font-weight: 500;
}

.machine-features {
    margin-bottom: 1.5rem;
}

.machine-features h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.machine-features ul {
    list-style: none;
    padding-left: 0;
}

.machine-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.machine-applications {
    margin-bottom: 2rem;
}

.machine-applications h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--accent-blue);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.machine-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Parts Cards Grid */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.parts-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parts-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.parts-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.parts-content {
    padding: 2rem;
}

.parts-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.parts-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.parts-list {
    margin-bottom: 1.5rem;
}

.parts-list h4 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.parts-list ul {
    list-style: none;
    padding-left: 0;
}

.parts-list li {
    padding: 0.2rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.parts-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.parts-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.brand-tag {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.parts-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Category Features Section */
.category-features {
    background: var(--bg-light);
    padding: 4rem 0;
    margin-top: 3rem;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    min-height: 3rem;
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Parts Services Section */
.parts-services {
    padding: 4rem 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Sections */
.category-cta,
.parts-cta {
    padding: 4rem 0;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .machine-grid,
    .parts-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .machine-actions,
    .parts-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .category-hero h1,
    .features-header h2,
    .services-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .category-intro h1 {
        font-size: 2rem;
    }
}

/* New Header Structure for Category Pages */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-orange);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    white-space: nowrap;
    margin-left: 1rem;
}

/* Mobile Menu Styles for New Structure */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1003;
    position: relative;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}

/* Font Awesome hamburger icon styling */
.mobile-menu-toggle i {
    color: var(--primary-dark);
    font-size: 1.5rem;
    display: block !important;
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

/* Hide span elements since we're using Font Awesome icons */
.mobile-menu-toggle span {
    display: none !important;
}

.mobile-menu-toggle:hover i {
    color: var(--accent-orange);
}

.mobile-menu-toggle:active i {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        z-index: 1002;
        position: relative;
        border: none;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        padding: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .mobile-menu-toggle i {
        display: block !important;
        font-size: 1.5rem;
        color: var(--primary-dark);
    }
    
    .mobile-menu-toggle span {
        display: none !important;
    }
    
    .nav-cta {
        order: 1;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .nav-cta .btn {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* New Header Structure Mobile Styles */
    .header .nav-wrapper {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .header .nav-menu {
        order: 3;
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    
    .header .nav-menu.active {
        display: block;
    }
    
    .header .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .header .nav-list li {
        width: 100%;
    }
    
    .header .nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
        transition: background-color 0.3s ease;
    }
    
    .header .nav-list a:hover {
        background-color: var(--bg-light);
    }
    
    .header .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        order: 2;
        z-index: 1002;
        position: relative;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 4px;
        padding: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .header .mobile-menu-toggle i {
        display: block !important;
        font-size: 1.5rem;
        color: var(--primary-dark);
    }
    
    .header .mobile-menu-toggle span {
        display: none !important;
    }
    
    .header .nav-cta {
        order: 1;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .header .nav-cta .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        order: 0;
    }
}

@media (max-width: 480px) {
    .nav-cta .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .logo,
    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Additional fixes for button overflow */
@media (max-width: 360px) {
    .nav-wrapper {
        padding: 0.5rem 0;
    }
    
    .nav-cta .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo,
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}

/* Machine Detail Page Styles */
.machine-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.machine-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.machine-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.machine-overview {
    padding: 4rem 0;
    background: var(--white);
}

.machine-overview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.machine-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--accent-orange);
}

.machine-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.machine-features {
    margin: 2rem 0;
}

.machine-features h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.machine-features ul {
    list-style: none;
    padding: 0;
}

.machine-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.machine-features i {
    color: var(--accent-orange);
    margin-right: 0.75rem;
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.machine-specs-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.machine-specs-summary h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--accent-orange);
    font-weight: bold;
}

.machine-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.machine-specifications {
    background: var(--bg-light);
    padding: 4rem 0;
}

.machine-specifications h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.machine-specifications > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.spec-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.spec-table th {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.spec-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.spec-table tr:nth-child(even) {
    background: #f9f9f9;
}

.spec-table tr:hover {
    background: #f0f8ff;
}

.laser-specs {
    margin-top: 3rem;
}

.laser-specs h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.specs-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.spec-group h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-orange);
}

.spec-group ul {
    list-style: none;
    padding: 0;
}

.spec-group li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.spec-group strong {
    color: var(--primary-dark);
}

.cutting-capacity {
    padding: 4rem 0;
    background: var(--white);
}

.cutting-capacity h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.cutting-capacity > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.capacity-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capacity-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.capacity-table h3 {
    background: var(--primary-dark);
    color: var(--white);
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.capacity-table table {
    width: 100%;
    border-collapse: collapse;
}

.capacity-table th {
    background: var(--secondary-dark);
    color: var(--white);
    padding: 0.8rem;
    text-align: left;
}

.capacity-table td {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
}

.capacity-table tr:nth-child(even) {
    background: #f9f9f9;
}

.machine-applications {
    background: var(--bg-light);
    padding: 4rem 0;
}

.machine-applications h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.application-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-5px);
}

.application-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    min-height: 3rem;
}

.application-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.machine-support {
    padding: 4rem 0;
    background: var(--white);
}

.machine-support h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
}

.support-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    min-height: 3rem;
}

.support-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.machine-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.machine-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.machine-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Machine Pages */
@media (max-width: 968px) {
    .machine-overview .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .machine-gallery {
        position: static;
    }
    
    .specs-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .machine-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .machine-hero {
        padding: 3rem 0;
    }
    
    .machine-hero-content h1 {
        font-size: 2rem;
    }
    
    .machine-hero-content p {
        font-size: 1rem;
    }
    
    .machine-specifications,
    .machine-overview,
    .cutting-capacity,
    .machine-applications,
    .machine-support,
    .machine-cta {
        padding: 3rem 0;
    }
    
    .machine-info h2 {
        font-size: 2rem;
    }
    
    .machine-specifications h2 {
        font-size: 2rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .machine-actions {
        flex-direction: column;
    }
    
    .machine-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .machine-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .capacity-tables {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Production Efficiency Section */
.production-efficiency {
    background: var(--bg-light);
    padding: 4rem 0;
}

.production-efficiency h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.efficiency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.efficiency-card:hover {
    transform: translateY(-5px);
}

.efficiency-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.efficiency-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.efficiency-stat {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Interactive Enhancements */
.btn-primary,
.btn-secondary,
.cta-button {
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,255,255,0.25);
}

.product-card,
.industry-card,
.contact-card,
.form-section,
.testimonial-card,
.feature-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.industry-card:hover,
.contact-card:hover,
.form-section:hover,
.testimonial-card:hover,
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}