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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.nav {
    display: flex;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1e293b;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #1e293b;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.cta-button {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d97706;
}

/* Project Hero Section */
.project-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.project-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.project-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.project-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.advantages-table-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.advantages-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.table-header {
    background-color: #1e293b;
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.us-column {
    background-color: #f59e0b;
}

.competitors-column {
    background-color: #64748b;
}

.table-row {
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-label {
    background-color: #f8fafc;
    padding: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    border-right: 1px solid #e2e8f0;
    width: 30%;
}

.table-cell {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.us-cell {
    background-color: #fef3c7;
    color: #92400e;
}

.competitors-cell {
    background-color: #f1f5f9;
    color: #475569;
}

.check-icon {
    color: #059669;
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.cross-icon {
    color: #dc2626;
    font-weight: 800;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Projects Gallery */
.projects-gallery {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.project-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 75%;
    /* 4:3 aspect ratio (3/4 = 0.75) */
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.95));
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-info {
    text-align: left;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.project-description {
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background-color: rgba(245, 158, 11, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-hero-highlight {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.contact-highlight-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-highlight-subtitle {
    font-size: 1.125rem;
    color: #64748b;
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-methods-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method-card:hover {
    background-color: #e2e8f0;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #f59e0b;
    flex-shrink: 0;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-method-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-method-link:hover {
    color: #f59e0b;
}

.contact-method-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-visual-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .contact-visual-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.contact-visual-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
} */
.contact-visual-card {
    position: relative;
    width: 400px;
    height: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.contact-map {
    width: 400px;
    height: 400px;
    border: 0;
}

.contact-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 41, 59, 0.1), rgba(245, 158, 11, 0.1));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

.contact-badge {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

/* Contact Actions */
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
}

/* Factory Visit Section */
.factory-visit-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.factory-visit-content {
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.factory-visit-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.factory-visit-text {
    font-size: 1.125rem;
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 2rem;
}

.factory-visit-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Product Hero Section */
.product-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    text-align: center;
}

.product-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.product-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Category Filter */
.category-filter {
    background-color: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    background-color: transparent;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background-color: #1e293b;
    border-color: #1e293b;
    color: white;
}

/* Product Collections */
.product-collections {
    padding: 4rem 0;
    background-color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 100%;
    /* 4:3 aspect ratio (3/4 = 0.75) */
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    background-color: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-view-btn:hover {
    background-color: #d97706;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-category {
    background-color: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Load More Section */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background-color: transparent;
    color: #1e293b;
    border: 2px solid #cbd5e1;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.load-more-btn:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* Product Contact Section */
.product-contact {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

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

.contact-icon {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #64748b;
    line-height: 1.6;
}

.factory-visit-cta {
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.factory-visit-text {
    font-size: 1.25rem;
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight {
    color: #f59e0b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background-color: #1e293b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0f172a;
    transform: translateY(-2px);
}

.btn-primary .btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    color: #1e293b;
    border: 2px solid #cbd5e1;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: #94a3b8;
    transform: translateY(-2px);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img,
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-video {
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 280px;
}

.badge-content {
    text-align: center;
}

.badge-text {
    color: #64748b;
    font-weight: 500;
    font-size: 0.875rem;
    font-style: italic;
}

/* Manufacturing Excellence */
.manufacturing {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.manufacturing-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.manufacturing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.manufacturing-icon {
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.manufacturing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.manufacturing-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Core Competencies */
.competencies {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.competency-section {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.competency-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-tag {
    background-color: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.competency-list {
    list-style: none;
    padding: 0;
}

.competency-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.competency-list li:before {
    content: "»";
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.competency-list li:last-child {
    border-bottom: none;
}

/* Global Reach */
.global-reach {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.region-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.region-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.region-countries {
    color: #64748b;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.solution-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
}

.solution-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.9));
    padding: 2rem;
    color: white;
}

.solution-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-description {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background-color: #f8fafc;
}

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

.trust-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.trust-icon {
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.trust-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.trust-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 5rem 0;
    background-color: #1e293b;
    color: white;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    color: #f59e0b;
    font-size: 1.5rem;
}

.testimonial-header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.author-title {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.contact-method:hover {
    background-color: #e2e8f0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    word-break: break-word;
}

.contact-link:hover {
    color: #f59e0b;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.factory-visit {
    color: #f59e0b;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.contact-visual {
    position: relative;
}

.contact-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background-color: #f59e0b;
    color: #1e293b;
}

.footer-brand .logo-text {
    color: white;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Page Content for other pages */
.page-content {
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        z-index: 1000;
    }

    .nav.mobile-open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-content {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .header-actions {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .project-hero-title {
        font-size: 2.5rem;
    }

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

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

    .manufacturing-grid,
    .competencies-grid,
    .regions-grid,
    .solutions-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .factory-visit-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

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

    .advantages-table-container {
        overflow-x: auto;
    }

    .advantages-table {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

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

    .contact-hero-title {
        font-size: 2rem;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .project-hero-title {
        font-size: 2rem;
    }

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

    .manufacturing,
    .competencies,
    .global-reach,
    .solutions,
    .trust,
    .contact,
    .product-collections,
    .product-contact,
    .advantages-section,
    .projects-gallery {
        padding: 3rem 0;
    }

    .testimonial {
        padding: 3rem 0;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .page-content {
        padding: 3rem 0;
    }

    .contact-hero {
        padding: 3rem 0;
    }

    .product-hero {
        padding: 3rem 0;
    }

    .project-hero {
        padding: 3rem 0;
    }

    .category-filter {
        padding: 1.5rem 0;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

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

    .contact-main {
        padding: 3rem 0;
    }

    .table-label,
    .table-cell {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .table-header {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-radius: 4px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations on scroll (using CSS only approach) */
.trust-card,
.solution-card,
.manufacturing-card,
.region-card,
.product-card,
.project-card {
    animation: fadeInUp 0.6s ease-out;
}

.trust-card:nth-child(2),
.manufacturing-card:nth-child(2),
.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.trust-card:nth-child(3),
.manufacturing-card:nth-child(3),
.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(4),
.product-card:nth-child(4) {
    animation-delay: 0.3s;
}