/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Light Theme */
    --primary-color: #1eadb5;
    --primary-dark: #178288;
    --primary-light: #4ec3ca;
    --secondary-color: #1eadb5;
    --accent-color: #E63946;

    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f1f3f5;
    --border-color: #e0e0e0;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 20px;
    --max-width: 1280px;

    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

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

/* ===========================
   Top Info Bar
   =========================== */
.top-bar {
    background-color: var(--bg-lighter);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
}

.tagline {
    font-weight: 500;
    color: var(--primary-color);
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    background-color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    justify-self: start;
    grid-column: 1;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    justify-self: center;
    grid-column: 2;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
}

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

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

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

.nav-btn-contact {
    padding: 10px 24px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 50px !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
}

.nav-btn-contact::after {
    display: none !important;
}

.nav-btn-contact:hover {
    background-color: var(--primary-color) !important;
    color: var(--text-white) !important;
}

.language-switcher {
    position: relative;
    justify-self: end;
    grid-column: 3;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    padding: 10px 20px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.language-btn:hover svg {
    stroke: var(--text-white);
}

.language-btn .flag-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.language-btn svg {
    stroke: var(--primary-color);
    transition: all 0.3s ease;
}

.language-switcher.active .language-btn svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

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

.language-option {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

.language-option:hover {
    background-color: var(--primary-color) !important;
    color: var(--text-white) !important;
}

.language-option::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    justify-self: end;
    grid-column: 3;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===========================
   Hero Carousel Section
   =========================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--text-white);
    text-transform: none;
    letter-spacing: -0.02em;
    max-width: 1000px;
}

.slide-title .highlight {
    color: var(--accent-color);
    display: inline;
}

.slide-text {
    font-size: clamp(14px, 1.5vw, 20px);
    line-height: 1.6;
    margin-bottom: clamp(20px, 3vw, 40px);
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
}

.slide-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    gap: 60px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-control:hover {
    background-color: var(--primary-color);
}

.carousel-control:hover svg {
    stroke: var(--text-white);
}

.carousel-control.prev {
    right: 30px;
    top: calc(50% - 35px);
}

.carousel-control.next {
    right: 30px;
    top: calc(50% + 35px);
}

.carousel-control svg {
    stroke: var(--primary-color);
    transition: var(--transition-base);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.indicator.active,
.indicator:hover {
    background-color: var(--text-white);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

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

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===========================
   Section Styles
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--section-padding);
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.facility-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.facility-item {
    display: flex;
    flex-direction: column;
}

.facility-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.facility-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.quality-badges {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.badge {
    background-color: var(--bg-white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

.badge-subtitle {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--bg-white);
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-icon svg {
    stroke: var(--primary-color);
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   Products Section
   =========================== */
.products-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-bottom: 20px;
}

.benefit-icon svg {
    stroke: var(--text-white);
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   Quality Section
   =========================== */
.quality-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.quality-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.quality-text p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.quality-feature svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.quality-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.quality-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quality-image img {
    width: 100%;
    height: auto;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.cert-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-image: url('assets/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 173, 181, 0.9) 0%, rgba(23, 130, 136, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--bg-lighter);
    padding: 80px 0 30px;
    color: var(--text-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quality-content {
        direction: rtl;
    }

    .quality-content > * {
        direction: ltr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        grid-template-columns: auto 1fr auto auto;
    }

    .mobile-menu-toggle {
        display: flex;
        grid-column: 3;
    }

    .language-switcher {
        grid-column: 4;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-btn-contact {
        text-align: center !important;
        margin: 10px 0 !important;
        border-bottom: none !important;
    }

    .language-switcher {
        width: 100%;
        margin-top: 10px;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
        background-color: transparent;
    }

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

    .language-dropdown {
        position: static;
        box-shadow: none;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: none;
    }

    .language-switcher.active .language-dropdown {
        display: block;
    }

    /* Hero */
    .hero-carousel {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .slide-image {
        background-size: cover;
    }

    .slide-actions {
        flex-direction: column;
        gap: 12px;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }

    .carousel-control.prev {
        right: 15px;
        top: calc(50% - 30px);
    }

    .carousel-control.next {
        right: 15px;
        top: calc(50% + 30px);
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 36px;
    }

    .section-intro {
        font-size: 16px;
    }

    /* About */
    .about-text h3,
    .quality-text h3 {
        font-size: 28px;
    }

    .facility-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Quality */
    .quality-features {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .top-bar {
        display: none;
    }

    .hero-carousel {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .slide-image {
        background-size: cover;
    }

    .about-hero {
        height: 300px;
    }

    .about-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .slide-title {
        padding: 0 20px;
    }

    .homepage-hero .slide-content .container {
        padding: 0 0 2.5rem 3.5rem;
    }

    .stat-number {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===========================
   About Page Specific Styles
   =========================== */

/* Homepage Hero Section */
.homepage-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.homepage-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.homepage-hero .slide-content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
}

.homepage-hero .slide-title {
    font-size: clamp(28px, 4.5vw, 64px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.homepage-hero .slide-content .container {
    padding: 0 0 5rem 7rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

/* About Hero Section */
.about-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.about-hero .slide-content {
    position: relative;
    z-index: 2;
}

.about-hero .slide-title {
    font-size: clamp(28px, 4.5vw, 64px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

/* Vertically Integrated Section */
.integrated-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

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

.integrated-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.integrated-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.integrated-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.integrated-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.mission-card,
.vision-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 25px;
}

.mission-vision-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-white);
    fill: none;
}

.mission-card h2,
.vision-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Values Section - Four Column Grid */
.values-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

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

.value-card-detailed {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.value-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: var(--bg-white);
}

.value-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.value-card-detailed:hover .value-icon-circle {
    background-color: var(--accent-color);
}

.value-icon-circle svg {
    width: 36px;
    height: 36px;
    stroke: var(--text-white);
    fill: none;
}

.value-card-detailed h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card-detailed p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.facility-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background-color: var(--bg-lighter);
}

.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.facility-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-white);
    fill: none;
}

.facility-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.facility-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.facility-info {
    padding: 30px;
}

.facility-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.facility-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.facility-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 15px;
}

.facility-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
}

/* About Text Block Sections */
.about-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text-block h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image-block {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
}

.about-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

/* Integration Diagram */
.integration-diagram {
    width: 100%;
    margin: 40px 0;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.integration-diagram .process-row,
.integration-diagram .connection-line,
.integration-diagram .support-row {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    border: 2px solid var(--text-primary);
    border-radius: 12px;
    background-color: var(--bg-white);
    min-width: 120px;
    min-height: 120px;
    transition: var(--transition-base);
}

.process-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.process-icon {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-icon svg {
    display: block;
}

.process-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.process-arrow {
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 300;
    flex-shrink: 0;
}

.connection-line {
    width: 2px;
    height: 40px;
    background-color: var(--text-primary);
    margin: 0 auto 40px;
}

.support-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Production Capacity Section */
.production-capacity-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a5f5f 0%, #1e6b6b 50%, #1a5f5f 100%);
    color: var(--text-white);
}

.capacity-header {
    text-align: center;
    margin-bottom: 50px;
}

.capacity-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.capacity-header .capacity-total {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.capacity-item {
    background-color: rgba(10, 40, 40, 0.6);
    padding: 25px 30px;
    border-radius: 8px;
    transition: var(--transition-base);
}

.capacity-item:hover {
    transform: translateY(-3px);
    background-color: rgba(10, 40, 40, 0.8);
}

.capacity-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.capacity-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

.capacity-total-item {
    grid-column: span 2;
    background-color: rgba(10, 40, 40, 0.9);
    text-align: center;
}

.capacity-total-item h3 {
    font-size: 20px;
    font-weight: 700;
}

.capacity-total-item p {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive adjustments for about page */
@media (max-width: 1024px) {
    .homepage-hero {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .homepage-hero-image {
        background-size: cover;
    }

    .about-hero {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .about-hero-image {
        background-size: cover;
    }

    .integrated-content {
        gap: 40px;
    }

    .values-grid-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section-content {
        gap: 40px;
    }

    /* Integration Diagram Tablet */
    .process-box {
        min-width: 100px;
        min-height: 100px;
        padding: 15px 10px;
    }

    .process-label {
        font-size: 13px;
    }

    .process-arrow {
        font-size: 20px;
    }

    /* Production Capacity Tablet */
    .capacity-header h2 {
        font-size: 40px;
    }

    .capacity-header .capacity-total {
        font-size: 28px;
    }

    .capacity-grid {
        max-width: 700px;
    }

    .capacity-item {
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .homepage-hero {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .homepage-hero-image {
        background-size: contain;
        background-color: #000;
    }

    .homepage-hero .slide-content .container {
        padding: 0 0 3rem 4rem;
    }

    .about-hero {
        height: auto;
        aspect-ratio: 1.84 / 1;
    }

    .about-hero-image {
        background-size: contain;
        background-color: #000;
    }

    .integrated-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Integration Diagram Mobile */
    .integration-diagram {
        padding: 30px 10px;
    }

    .process-row {
        gap: 10px;
        margin-bottom: 30px;
    }

    .process-box {
        min-width: 90px;
        min-height: 90px;
        padding: 12px 8px;
    }

    .process-icon {
        margin-bottom: 8px;
    }

    .process-icon svg {
        width: 36px;
        height: 36px;
    }

    .process-label {
        font-size: 11px;
    }

    .process-arrow {
        font-size: 18px;
        display: none;
    }

    .connection-line {
        height: 30px;
        margin-bottom: 30px;
    }

    .support-row {
        gap: 15px;
    }

    .integrated-text h2 {
        font-size: 32px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mission-card,
    .vision-card {
        padding: 35px 25px;
    }

    .values-grid-four {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card-detailed {
        padding: 30px 20px;
    }

    .about-section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text-block h2 {
        font-size: 28px;
    }

    /* Production Capacity Mobile */
    .capacity-header {
        margin-bottom: 30px;
    }

    .capacity-header h2 {
        font-size: 32px;
    }

    .capacity-header .capacity-total {
        font-size: 24px;
    }

    .capacity-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .capacity-item {
        padding: 20px;
    }

    .capacity-item h3 {
        font-size: 15px;
    }

    .capacity-item p {
        font-size: 14px;
    }

    .capacity-total-item {
        grid-column: span 1;
    }

    .capacity-total-item h3 {
        font-size: 18px;
    }

    .capacity-total-item p {
        font-size: 16px;
    }
}

/* ===========================
   Products Page Specific Styles
   =========================== */

/* Products Hero Section */
.products-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.products-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.products-hero p {
    font-size: 18px;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Search Bar Container */
.search-bar-container {
    max-width: 600px;
    margin: 0 auto 35px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: var(--transition-base);
}

.search-input:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-btn:hover {
    background-color: #cc5429;
}

/* Filter Section */
.filter-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.filter-icon {
    color: var(--text-white);
    flex-shrink: 0;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.products-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
}

.product-card-detailed {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    opacity: 1;
}

.product-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info,
.product-info-detailed {
    padding: 24px;
}

.product-info h3,
.product-info-detailed h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-info > p,
.product-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-info h4,
.key-features-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin-top: 0;
}

.key-features-section {
    margin-bottom: 18px;
}

/* Key Features List */
.key-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.key-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    padding: 4px 0;
}

.key-features-list li:before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Applications Tags */
.applications-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.app-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bg-lighter);
    color: var(--text-secondary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition-base);
}

.app-tag:hover {
    background-color: var(--primary-light);
    color: var(--text-white);
}

/* Responsive adjustments for products page */
@media (max-width: 1024px) {
    .products-hero h1 {
        font-size: 42px;
    }

    .products-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-info,
    .product-info-detailed {
        padding: 22px;
    }
}

@media (max-width: 768px) {
    .products-hero {
        padding: 60px 20px 40px;
    }

    .products-hero h1 {
        font-size: 32px;
    }

    .products-hero p {
        font-size: 16px;
    }

    .search-bar-container {
        max-width: 100%;
    }

    .filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .filter-buttons {
        gap: 10px;
        width: 100%;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .products-grid-detailed {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-info,
    .product-info-detailed {
        padding: 18px;
    }

    .product-info-detailed h3 {
        font-size: 20px;
    }

    .product-description {
        font-size: 14px;
    }
}

/* ===========================
   Markets Page Specific Styles
   =========================== */

/* Markets Hero Section */
.markets-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.markets-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.markets-hero p {
    font-size: 17px;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Markets Section */
.markets-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.market-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.market-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.market-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.market-card:hover .market-image-wrapper img {
    transform: scale(1.05);
}

.market-overlay {
    display: none;
}

.market-icon {
    display: none;
}

.market-info {
    padding: 25px 20px;
    text-align: center;
}

.market-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.market-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Market Insights Section */
.market-insights-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.insight-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.insight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.insight-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--text-white);
    fill: none;
}

.insight-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.insight-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Application Processes Section */
.application-processes-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.processes-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-item {
    background-color: var(--bg-white);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.process-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Tailored Solutions Section */
.tailored-solutions-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.solution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.solution-step {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
}

.solution-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.solution-step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive adjustments for markets page */
@media (max-width: 1024px) {
    .markets-hero h1 {
        font-size: 42px;
    }

    .market-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .market-image-wrapper {
        height: 220px;
    }

    .market-info {
        padding: 22px 18px;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .processes-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .markets-hero {
        padding: 60px 20px;
    }

    .markets-hero h1 {
        font-size: 32px;
    }

    .markets-hero p {
        font-size: 16px;
    }

    .market-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .market-image-wrapper {
        height: 200px;
    }

    .market-info {
        padding: 20px 15px;
    }

    .market-info h3 {
        font-size: 18px;
    }

    .market-info p {
        font-size: 13px;
    }
}

/* ===========================
   Sustainability Page Specific Styles
   =========================== */

/* Sustainability Hero Section */
.sustainability-hero {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.sustainability-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.sustainability-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.85) 0%, rgba(34, 153, 84, 0.85) 100%);
    z-index: 1;
}

.sustainability-hero-container {
    position: relative;
    z-index: 2;
}

.sustainability-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.sustainability-hero p {
    font-size: 17px;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Environmental Commitment Section */
.environmental-commitment {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.commitment-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.commitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cert-badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.commitment-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.commitment-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Initiatives Section */
.initiatives-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

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

.initiative-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.initiative-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #27ae60;
    border-radius: 50%;
    margin-bottom: 20px;
}

.initiative-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--text-white);
    fill: none;
}

.initiative-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.initiative-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

/* Sustainable Products Section */
.sustainable-products-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.product-lines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.product-line-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-line-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-line-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-line-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #27ae60;
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-line-content {
    padding: 30px;
}

.product-line-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.product-line-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-line-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-line-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.product-line-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 3px;
    background-color: #27ae60;
    border-radius: 50%;
    stroke: var(--text-white);
}

.product-line-features li span {
    flex: 1;
}

/* Innovation Blocks Section */
.innovation-sustainability-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.innovation-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.innovation-block {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.innovation-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.innovation-block p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive adjustments for sustainability page */
@media (max-width: 1024px) {
    .sustainability-hero h1 {
        font-size: 42px;
    }

    .commitment-content {
        gap: 40px;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-lines-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sustainability-hero {
        padding: 60px 20px;
    }

    .sustainability-hero h1 {
        font-size: 32px;
    }

    .sustainability-hero p {
        font-size: 16px;
    }

    .commitment-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .commitment-text h2 {
        font-size: 28px;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .innovation-block {
        padding: 30px 25px;
    }

    .innovation-block h3 {
        font-size: 24px;
    }
}

/* ===========================
   Contact Page Specific Styles
   =========================== */

/* Contact Hero Section */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 17px;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 40px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.error-message {
    display: none;
    font-size: 13px;
    color: var(--accent-color);
    margin-top: 5px;
}

.form-group.error .error-message {
    display: block;
}

.form-input,
.form-textarea,
.form-select {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    transition: var(--transition-base);
    font-family: var(--font-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 173, 181, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: var(--accent-color);
}

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

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #cc5429;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.form-submit-btn svg {
    stroke: var(--text-white);
}

.form-success-message {
    background-color: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 20px;
}

.form-success-message svg {
    stroke: #28a745;
    margin: 0 auto 20px;
}

.form-success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #155724;
    margin-bottom: 10px;
}

.form-success-message p {
    font-size: 16px;
    color: #155724;
    line-height: 1.6;
}

/* Contact Info Panel */
.contact-info-panel {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info-panel h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--text-white);
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.office-location {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.office-location:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.office-location h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.office-location p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 5px;
}

.office-location p strong {
    color: var(--text-primary);
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.map-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Factory Locations Section */
.factory-locations-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.factory-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.factory-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    overflow: hidden;
}

.factory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.factory-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.factory-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.factory-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.factory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.factory-info {
    padding: 30px;
}

.factory-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.factory-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.factory-detail-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    margin-top: 2px;
}

.factory-detail-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Success Message Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

/* Responsive adjustments for contact page */
@media (max-width: 1024px) {
    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .factory-locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 20px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-form-wrapper,
    .contact-info-panel {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .factory-card .factory-info {
        padding: 25px;
    }

    .map-embed iframe {
        height: 350px;
    }
}

/* Processes Hero Section */
.processes-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.processes-hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.processes-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

