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

:root {
    --dark-blue: #1b1e24;
    --orange: #ffc107;
    --orange-dark: #d48c00;
    --green: #0fbf9f;
    --text-dark: #1b1e24;
    --text-light: #4b5563;
    --bg-light: #f6f7fb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(27, 30, 36, 0.12);
    --shadow-lg: 0 12px 24px -6px rgba(27, 30, 36, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .logo-main {
    color: var(--dark-blue);
}

.navbar.scrolled .logo-subtitle {
    color: var(--text-dark);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.logo-tagline {
    font-size: 0.95rem;
    color: var(--orange);
    font-style: italic;
    margin: 0.2rem 0 0 0;
    margin-left: 66px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.navbar.scrolled .nav-link::after {
    background: var(--dark-blue);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-link:hover {
    color: var(--dark-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-get-quote {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-get-quote {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--dark-blue);
}

.btn-get-quote:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.navbar.scrolled .btn-get-quote:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

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

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: var(--dark-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Factory Slider Section */
.factory-slider-section {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
}

.factory-slider-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.factory-slider-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.factory-slider-header p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.factory-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.factory-slider-window {
    overflow: hidden;
    border-radius: 18px;
    padding: 1rem 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.factory-slider-track {
    display: flex;
    gap: 2rem;
    animation: factorySlide 32s linear infinite;
    animation-direction: reverse;
}

.factory-slide {
    flex: 0 0 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
    position: relative;
}

.factory-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.factory-slide-caption {
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: rgba(15, 23, 42, 0.9);
    color: var(--white);
    letter-spacing: 0.5px;
}

.factory-slider-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.factory-contact-btn {
    background: var(--orange);
    color: var(--dark-blue);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.factory-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(255, 193, 7, 0.35);
}

@keyframes factorySlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Hero Content Blocks Section */
.hero-content-blocks {
    padding: 80px 0;
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

/* Intro Block */
.intro-block {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Stats Blocks Grid */
.stats-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.stat-block:hover .stat-circle {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    display: block;
    width: 100%;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
}

.btn {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-orange:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-blue {
    background: var(--dark-blue);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-blue:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

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

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About SMH Section */
.about-smh {
    padding: 100px 0;
    background: var(--white);
}

.about-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #f3f4f6;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--white);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 700;
}

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

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

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mv-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

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

/* Working Space & Production Capabilities Section */
.production-capabilities {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    position: relative;
    overflow: hidden;
}

.production-capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23e5e7eb" opacity="0.3"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.capabilities-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.title-yellow {
    color: #ffc107;
    letter-spacing: 1.5px;
}

.title-black {
    color: #1b1e24;
    letter-spacing: 1.5px;
}

.production-diagram {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a2f37 100%);
    color: var(--white);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 12px 28px rgba(27, 30, 36, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.diagram-center:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 16px 36px rgba(27, 30, 36, 0.34);
}

.center-text {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.production-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.production-item:nth-child(2) {
    animation-delay: 0.2s;
}

.production-item:nth-child(3) {
    animation-delay: 0.4s;
}

.production-item:nth-child(4) {
    animation-delay: 0.6s;
}

.production-item:nth-child(5) {
    animation-delay: 0.8s;
}

.production-item.top-left {
    top: 30px;
    left: 20px;
    flex-direction: row;
    align-items: center;
}

.production-item.top-right {
    top: 30px;
    right: 20px;
    flex-direction: row;
    align-items: center;
}

.production-item.bottom-left {
    bottom: 30px;
    left: 20px;
    flex-direction: row;
    align-items: center;
}

.production-item.bottom-right {
    bottom: 30px;
    right: 20px;
    flex-direction: row;
    align-items: center;
}

.production-arrow {
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--dark-blue) 0,
        var(--dark-blue) 8px,
        transparent 8px,
        transparent 16px
    );
    position: relative;
    border-radius: 2px;
}

.production-item.top-left .production-arrow {
    transform: rotate(-45deg);
    transform-origin: left center;
}

.production-item.top-right .production-arrow {
    transform: rotate(45deg);
    transform-origin: right center;
}

.production-item.bottom-left .production-arrow {
    transform: rotate(45deg);
    transform-origin: left center;
}

.production-item.bottom-right .production-arrow {
    transform: rotate(-45deg);
    transform-origin: right center;
}

.production-arrow::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.production-item.top-left .production-arrow::after {
    right: -8px;
    top: -6px;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent var(--dark-blue) transparent;
}

.production-item.top-right .production-arrow::after {
    left: -8px;
    top: -6px;
    border-width: 0 8px 12px 8px;
    border-color: transparent transparent var(--dark-blue) transparent;
}

.production-item.bottom-left .production-arrow::after {
    right: -8px;
    bottom: -6px;
    border-width: 12px 8px 0 8px;
    border-color: var(--dark-blue) transparent transparent transparent;
}

.production-item.bottom-right .production-arrow::after {
    left: -8px;
    bottom: -6px;
    border-width: 12px 8px 0 8px;
    border-color: var(--dark-blue) transparent transparent transparent;
}

.production-info {
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.production-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27, 30, 36, 0.08), transparent);
    transition: left 0.5s ease;
}

.production-info:hover::before {
    left: 100%;
}

.production-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--dark-blue);
}

.production-quantity {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, var(--dark-blue), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.production-details {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.team-title-our {
    color: var(--text-dark);
}

.team-title-team {
    color: #fbbf24;
}

.team-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.team-members-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.team-members-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.team-grey-band {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 280px;
    background: #374151;
    transform: translateY(-50%);
    z-index: 1;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.team-member-card {
    background: var(--white);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}


.team-member-image-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-top-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: filter 0.3s ease;
}

.team-member-card:hover .team-member-image {
    filter: brightness(0.4);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.team-member-card:hover .team-member-overlay {
    opacity: 1;
}

.team-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.team-social-icon:hover {
    transform: scale(1.1);
    background: var(--dark-blue);
}

.team-social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
    transition: fill 0.3s ease;
}

.team-social-icon:hover svg {
    fill: var(--white);
}

.team-member-info {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.team-member-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fbbf24;
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #d89c12;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

/* Capacity Section */
.capacity {
    padding: 80px 0;
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

.capacity-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.capacity-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.capacity-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.capacity-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.capacity-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--white);
}

.product-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-blue);
    color: var(--white);
}

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

.product-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

/* Certifications Section */
.certifications {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.cert-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.cert-card:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

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

.cert-card-media {
    position: relative;
    overflow: hidden;
}

.cert-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-card-image,
.cert-card:focus-visible .cert-card-image {
    transform: scale(1.05);
}

.cert-card-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.cert-card-content {
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.cert-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--dark-blue);
}

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

.cert-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

.cert-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 30, 36, 0.08);
}

.cert-highlight-media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.cert-highlight-media img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cert-highlight-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.cert-highlight-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cert-highlight-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.cert-highlight-content li {
    position: relative;
    padding-left: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cert-highlight-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

@media (max-width: 767px) {
    .cert-highlight {
        padding: 2rem;
    }

    .cert-highlight-content h3 {
        font-size: 1.5rem;
    }
}

/* Certificate Modal */
.cert-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cert-modal.active {
    display: flex;
}

.cert-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.cert-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

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

.cert-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cert-modal-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.cert-modal-close svg {
    width: 20px;
    height: 20px;
}

.cert-modal-body {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.cert-modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--dark-blue), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cert-modal-icon svg {
    width: 50px;
    height: 50px;
}

.cert-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.cert-modal-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cert-modal-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
}

.cert-modal-details p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.cert-modal-details p:last-child {
    margin-bottom: 0;
}

.cert-modal-details strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.cert-modal-image-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cert-modal-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.cert-modal-pdf-container {
    margin-top: 1.75rem;
}

.cert-modal-pdf {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: 12px;
    background: #f3f5f8;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.cert-modal-download {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-decoration: none;
}

.cert-modal-download::after {
    content: ' ↗';
    font-size: 0.9em;
}

.cert-modal-download:hover,
.cert-modal-download:focus-visible {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cert-card-image {
        height: 180px;
    }

    .cert-card-content {
        padding: 1.5rem;
    }

    .cert-modal-pdf {
        height: 360px;
    }
}

/* Customer Partnerships Section */
.partnerships {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 0 50 50 T100 50" stroke="%23e5e7eb" stroke-width="1" fill="none"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.partnerships::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 0 50 50 T100 50" stroke="%23e5e7eb" stroke-width="1" fill="none"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.title-yellow {
    color: #fbbf24;
}

.title-black {
    color: var(--dark-blue);
}

.partners-scroll-container {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    padding: 2rem 0;
}

.partners-scroll-container::before,
.partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white), rgba(27, 30, 36, 0));
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white), rgba(27, 30, 36, 0));
}

.partners-scroll-wrapper {
    overflow: hidden;
}

.partners-scroll-track {
    display: flex;
    gap: 2rem;
    animation: scrollRightToLeft 60s linear infinite;
    width: fit-content;
}

.partners-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    min-height: 120px;
    min-width: 200px;
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.partner-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
    transform: scale(1.05);
}

/* Scope Certificate Section */
.scope-certificate {
    padding: 100px 0;
    background: var(--bg-light);
}

.scope-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.scope-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 30, 36, 0.08);
}

.scope-eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1rem;
}

.scope-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.scope-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.scope-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    gap: 0.85rem;
}

.scope-highlights li {
    position: relative;
    padding-left: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.scope-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 193, 7, 0.15);
}

.scope-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(27, 30, 36, 0.2);
}

.scope-download:hover {
    background: var(--orange);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 193, 7, 0.25);
}

.scope-image {
    position: relative;
    background: linear-gradient(135deg, rgba(27, 30, 36, 0.9), rgba(27, 30, 36, 0.75));
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(27, 30, 36, 0.25);
    overflow: hidden;
}

.scope-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scope-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--orange);
    color: var(--dark-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

@media (max-width: 767px) {
    .scope-content {
        padding: 2.25rem;
    }

    .scope-title {
        font-size: 2rem;
    }

    .scope-highlights {
        gap: 0.75rem;
    }

    .scope-download {
        width: 100%;
        justify-content: center;
    }
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-size: 1.125rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item p + p {
    margin-top: 0.25rem;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
}

.form-group textarea {
    resize: vertical;
}

.arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-blue:hover .arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-connect {
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    stroke: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .logo-main {
        font-size: 2.1rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-section {
        flex: 1;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-main {
        font-size: 1.9rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-tagline {
        font-size: 0.85rem;
        margin-left: 56px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        transform: none;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .btn-get-quote {
        padding: 8px 16px;
        font-size: 0.875rem;
        margin-left: auto;
        margin-right: 1rem;
    }

    .hero-slider {
        height: 70vh;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .stats-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-circle {
        width: 160px;
        height: 160px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-description {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .factory-slider-header h2 {
        font-size: 1.75rem;
    }

    .factory-slide {
        flex: 0 0 260px;
    }

    .factory-slide img {
        height: 200px;
    }

    .factory-slider-track {
        animation-duration: 24s;
        gap: 1.25rem;
    }

    .factory-contact-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid,
    .services-grid,
    .cert-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .team-title {
        font-size: 2.5rem;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .team-grey-band {
        height: auto;
        top: 0;
        bottom: 0;
        transform: none;
    }

    .team-member-image-wrapper {
        width: 220px;
        height: 250px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .production-capabilities {
        padding: 40px 0;
    }

    .capabilities-title {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .production-diagram {
        min-height: auto;
        padding: 2rem 0;
    }

    .production-item.top-left,
    .production-item.top-right,
    .production-item.bottom-left,
    .production-item.bottom-right {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .production-arrow {
        width: 100px;
        transform: none !important;
        height: 2px;
    }

    .production-arrow::after {
        display: none;
    }

    .diagram-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 3rem;
        padding: 2rem 2.5rem;
    }

    .diagram-center:hover {
        transform: none;
    }

    .center-text {
        font-size: 1.25rem;
    }

    .production-info {
        min-width: 100%;
        padding: 1.5rem 2rem;
    }

    .production-quantity {
        font-size: 2rem;
    }

    .production-details {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .factory-slider-section {
        padding: 3rem 0 1.5rem;
    }

    .factory-slider-header h2 {
        font-size: 1.6rem;
    }

    .factory-slider-window {
        padding: 0.75rem;
    }

    .factory-slider-track {
        gap: 1rem;
        animation-duration: 22s;
    }

    .factory-slide {
        flex: 0 0 260px;
        max-width: 100%;
    }

    .factory-slide img {
        height: 200px;
        min-height: 200px;
    }

    .factory-slider-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .factory-contact-btn {
        width: 100%;
        max-width: 320px;
    }

    .contact-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .production-diagram {
        min-height: auto;
    }

    .production-item {
        position: static;
        margin-bottom: 1.5rem;
    }

    .production-info {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-tag {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .capacity-buttons {
        flex-direction: column;
    }

    .capabilities-title {
        font-size: 1.5rem;
    }

    .diagram-center {
        padding: 1.5rem 2rem;
    }

    .center-text {
        font-size: 1.125rem;
    }

    .production-info {
        padding: 1.25rem 1.5rem;
    }

    .production-quantity {
        font-size: 1.75rem;
    }

    .capacity-btn {
        width: 100%;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .team-grey-band {
        height: auto;
        top: 0;
        bottom: 0;
        transform: none;
    }

    .team-member-card {
        max-width: 100%;
    }

    .team-member-image-wrapper {
        height: 250px;
    }

    .team-member-info {
        padding: 1.5rem;
    }

    .stats-blocks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-circle {
        width: 150px;
        height: 150px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .intro-title {
        font-size: 1.75rem;
    }

    .intro-description {
        font-size: 1rem;
    }
}
