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

:root {
    --primary-color: #065f46;
    --secondary-color: #047857;
    --accent-color: #10b981;
    --text-color: #064e3b;
    --text-light: #6b7280;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --border-color: #d1fae5;
    --success-color: #10b981;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    font-size: 1rem;
}

/* Typography Scale - Consistent across all pages */
h1, .h1 {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

h2, .h2 {
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

h3, .h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

h4, .h4 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f5132 0%, #2d8659 50%, #4ade80 100%);
    color: white;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: grid;
    grid-template-columns: minmax(160px, auto) 1fr auto;
    grid-template-areas:
        "left brand right"
        "menu menu menu";
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.5rem;
    position: relative;
}

.nav-left {
    grid-area: left;
    justify-self: start;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.world-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 130px;
}

.clock-display {
    font-size: 0.7rem;
    font-weight: 600;
    color: #f5f5f5;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.6px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.22rem 0.45rem;
    border-radius: 5px;
    min-width: 110px;
    text-align: center;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.clock-date {
    font-size: 0.6rem;
    color: #f5f5f5;
    opacity: 0.9;
}

.clock-time {
    font-size: 0.78rem;
    font-weight: 700;
}

.timezone-selector {
    font-size: 0.6rem;
    padding: 0.22rem 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.15);
    color: #f5f5f5;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.timezone-selector:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.timezone-selector:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.timezone-selector option {
    background: #0f5132;
    color: #f5f5f5;
    padding: 0.5rem;
}

.nav-brand {
    grid-area: brand;
    text-align: center;
    width: 100%;
    order: 1;
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    color: #f5f5f5;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.nav-brand h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shine 10s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    10% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.nav-brand .tagline {
    font-size: 0.85rem;
    color: #f5f5f5;
    font-weight: 300;
}

.nav-menu {
    grid-area: menu;
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    order: 2;
    width: 100%;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.25rem 0;
    font-size: 0.85rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #90cdf4;
    border-bottom: 2px solid #90cdf4;
}

.nav-right {
    grid-area: right;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.header-logo-link:hover {
    transform: scale(1.05);
}

.header-logo {
    height: 72px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    display: block;
    transition: all 0.3s;
}

.header-logo-link:hover .header-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    color: #d4af37;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
}

.hero-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide:not(.active) {
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Hero Slide Indicators - Bottom Bar */
.hero-slide-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    backdrop-filter: blur(5px);
}

.hero-indicator {
    height: 4px;
    flex: 1;
    max-width: 60px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-indicator.active {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
}

.hero-indicator.active::before {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #f4d03f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.hero-buttons .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

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

.btn-primary:hover {
    background-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.btn-secondary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Highlights Section */
.highlights {
    padding: 2.5rem 0;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #34d399 100%);
    border-radius: 2px;
}

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

.highlight-card {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(16,185,129,0.15);
    border-color: var(--accent-color);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
    padding: 0.5rem;
}

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

.highlight-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Product Preview */
.product-preview {
    padding: 2.5rem 0;
    background-color: var(--bg-light);
}

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

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(16,185,129,0.15);
    border-color: var(--accent-color);
}

.product-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #a7f3d0 0%, #d1fae5 50%, #ecfdf5 100%);
    color: #065f46;
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #065f46;
}

.page-header p {
    font-size: 0.85rem;
    color: #047857;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.page-header .header-description {
    font-size: 0.85rem;
    color: #047857;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.page-header .header-subtitle {
    font-size: 1.25rem;
    color: #065f46;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.page-header-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header-detail-box {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: left;
}

.header-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.header-detail-box h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-detail-box h3::before {
    content: "✓";
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.header-detail-box p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.page-header-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.download-section {
    padding: 2.5rem 0;
    text-align: center;
    background-color: var(--bg-light);
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.download-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    max-width: 700px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(16,185,129,0.4);
    border: 2px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.5);
    border-color: rgba(255,255,255,0.3);
}

.download-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

.download-icon {
    font-size: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.download-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hide PDF viewer controls */
embed[type="application/pdf"],
iframe[src*=".pdf"],
object[type="application/pdf"] {
    display: none !important;
}

/* Hide any PDF toolbar buttons */
.pdf-toolbar,
.pdf-controls,
[class*="edit"],
[class*="sign"],
[id*="edit"],
[id*="sign"] {
    display: none !important;
}

/* Factory Image Section */
.factory-image-section {
    padding: 2.5rem 0;
    background-color: var(--bg-white);
}

.factory-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.factory-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.factory-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Content Sections */
.content-section {
    padding: 2.5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.placeholder-image {
    background-color: var(--bg-light);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed var(--border-color);
}

/* Factory Slideshow */
.factory-slideshow {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #1a1a1a;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    overflow: hidden;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: middle;
}

.slideshow-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0,0,0,0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.slide-btn {
    background-color: rgba(255,255,255,0.9);
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: bold;
}

.slide-btn:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    max-width: 100%;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.indicator.active {
    background-color: white;
    width: 20px;
    border-radius: 4px;
}

.indicator:hover {
    background-color: rgba(255,255,255,0.8);
}

/* Facts Section */
.facts-section {
    padding: 2.5rem 0;
    background-color: var(--bg-white);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.fact-card {
    text-align: center;
    padding: 1.25rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.fact-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Product Summary */
.product-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.summary-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.3;
}

.summary-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.summary-item li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.summary-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Commitment Box */
.commitment-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.commitment-box h2 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.625rem;
    line-height: 1.3;
}

.commitment-box p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.commitment-list {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.commitment-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.commitment-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Company Directory - Directors */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.director-card {
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.director-avatar {
    margin-bottom: 1rem;
}

.director-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: #f2f2f2;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.avatar-initial {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}

.director-info {
    width: 100%;
}

.director-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.director-designation {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.director-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Partners Section */
.partners-section {
    margin-top: 2rem;
}

.partner-category {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.partner-category-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 700;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.partner-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.partner-logo-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.75rem;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-name-fallback {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    margin-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Brand Partners */
.brand-partners-category {
    margin-top: 1.5rem;
}

.brand-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-partner-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.brand-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-name-fallback {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

/* Mission & Vision */
.mission-vision-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mv-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-vision-card h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.625rem;
}

.mv-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
}

.mv-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mv-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.mv-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* Values Grid */
.values-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 0.75rem;
}

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

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.value-icon-wrapper {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.2));
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s;
}

.value-card:hover h3 {
    color: var(--accent-color);
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s;
}

.value-card:hover p {
    color: var(--text-color);
}

/* Products Page */
.product-category {
    padding: 4rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

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

.product-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-item p {
    color: var(--text-light);
}

/* Breadcrumb */
.breadcrumb-section {
    background-color: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Products Page Layout */
.products-page-section {
    padding: 2.5rem 0;
    background-color: var(--bg-white);
}

.products-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Products Sidebar */
.products-sidebar {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.sidebar-title {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

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

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 1rem;
    line-height: 1.7;
}

.category-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.category-link.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    font-weight: 600;
}

.category-count {
    font-size: 1rem;
    opacity: 0.8;
}

.category-link.active .category-count {
    opacity: 1;
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.sidebar-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-contact p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.sidebar-contact strong {
    color: var(--primary-color);
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: block;
    text-align: center;
}

/* Products Content */
.products-content {
    min-height: 500px;
}

.product-category-section {
    margin-bottom: 4rem;
    scroll-margin-top: 80px;
}

.category-section-title {
    color: var(--primary-color);
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.category-section-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.product-card-new {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.product-image-wrapper {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
}

.product-image-wrapper .product-icon {
    font-size: 4rem;
    width: auto;
    height: auto;
    margin: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 180px;
    display: block;
    transition: transform 0.3s;
}

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

.product-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-card-description {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.btn-get-price {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn-get-price:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.4);
}

.cta-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #0f5132 0%, #2d8659 50%, #4ade80 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
    line-height: 1.5;
}

/* Production Page */
.production-units {
    padding: 2.5rem 0;
}

.unit-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.unit-card-left {
    flex-direction: row;
}

.unit-card-right {
    flex-direction: row-reverse;
}

.unit-image-wrapper {
    flex: 0 0 300px;
    min-height: 250px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.unit-card:hover .unit-image {
    transform: scale(1.1);
}

.unit-content-wrapper {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.unit-header h3 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
    line-height: 1.3;
}

.capacity-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16,185,129,0.3);
}

.unit-content {
    flex: 1;
}

.unit-content p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

.machinery-list {
    list-style: none;
    margin-top: 0.75rem;
    padding: 0;
}

.machinery-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.75rem;
    line-height: 1.5;
}

.machinery-list li:before {
    content: "⚙";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.85rem;
}

/* Machines and Capacity Table */
.machines-capacity-section {
    padding: 2.5rem 0;
    background-color: var(--bg-light);
}

.capacity-table-wrapper {
    overflow-x: auto;
    margin-top: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background-color: white;
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background-color: white;
}

.capacity-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.capacity-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.capacity-table th:last-child {
    border-right: none;
}

.capacity-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.capacity-table tbody tr:nth-child(even) {
    background-color: #f0fdf4;
}

.capacity-table tbody tr:nth-child(odd) {
    background-color: white;
}

.capacity-table tbody tr:hover {
    background-color: #d1fae5;
}

.capacity-table td {
    padding: 0.875rem 0.75rem;
    color: var(--text-color);
    border-right: 1px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.capacity-table td:last-child {
    border-right: none;
}

.capacity-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    width: 50px;
}

.capacity-table td:nth-child(2) {
    font-weight: 600;
    color: var(--text-color);
}

.capacity-table td:nth-child(3) {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
}

.capacity-table td:nth-child(4) {
    color: var(--primary-color);
    font-weight: 500;
}

.capacity-summary {
    padding: 2.5rem 0;
}

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

.summary-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.summary-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.summary-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.summary-card p {
    color: var(--text-light);
}

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

.strength-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.strength-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.strength-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Quality Page */
.quality-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quality-intro h2 {
    color: var(--primary-color);
    font-size: 1.625rem;
    margin-bottom: 1rem;
}

.quality-intro p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.quality-standards {
    padding: 2.5rem 0;
}

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

.standard-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.standard-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.standard-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    text-align: center;
}

.standard-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.standard-card ul {
    list-style: none;
    margin-top: 1rem;
}

.standard-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.standard-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.quality-process {
    padding: 2.5rem 0;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

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

.compliance-item {
    background-color: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.compliance-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.compliance-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Certifications Section */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.certificate-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

.certificate-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.certificate-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

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

/* BGAPMEA Membership Section */
.bgapmea-membership {
    background: linear-gradient(135deg, #0f5132 0%, #2d8659 50%, #4ade80 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.bgapmea-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.bgapmea-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.bgapmea-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #cbd5e0;
}

.bgapmea-membership-info {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    background-color: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
}

.bgapmea-membership-info strong {
    color: white;
    font-weight: 600;
}

.bgapmea-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 600;
}

.bgapmea-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.link-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.bgapmea-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Contact Page */
.contact-section {
    padding: 2rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Contact Form Container */
.contact-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.form-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.form-header-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}

.contact-form-container h2,
.contact-info-container h2 {
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-form-container p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: #fafafa;
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.3);
}

.btn-arrow {
    transition: transform 0.3s;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #c6f6d5;
    color: #22543d;
    display: block;
}

.form-message.error {
    background-color: #fed7d7;
    color: #742a2a;
    display: block;
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.info-header-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}

.contact-info-container h2 {
    margin-bottom: 0.25rem;
}

.contact-info-container .info-header p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.info-card-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 10px;
}

.info-card-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.info-card-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-card-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-card-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Quote & Hours Section */
.quote-hours-section {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.quote-hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 16px rgba(16,185,129,0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-box h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cta-box .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.cta-box .btn:hover {
    background-color: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.business-hours {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hours-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.business-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 0.85rem;
}

.hours-item .day {
    color: var(--text-color);
    font-weight: 500;
}

.hours-item .time {
    color: var(--accent-color);
    font-weight: 600;
}

.hours-item .time.closed {
    color: #ef4444;
}

.business-hours .note {
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 0.75rem;
    color: var(--text-light);
    text-align: center;
}

.why-contact {
    padding: 2.5rem 0;
}

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

.reason-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f5132 0%, #2d8659 50%, #4ade80 100%);
    color: white;
    padding: 2.5rem 0 1rem;
    margin-top: 2.5rem;
}

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

.footer-section h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Logistics Page Styles */
.logistics-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Shipping Methods */
.shipping-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shipping-method-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.shipping-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.method-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
}

.method-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.shipping-method-card:hover .method-image {
    transform: scale(1.05);
}

.shipping-method-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.shipping-method-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.method-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.method-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.method-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.logistics-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #92400e;
}

.logistics-note strong {
    color: #78350f;
}

/* Packaging */
.packaging-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.packaging-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.packaging-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.packaging-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

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

.packaging-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

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

.packaging-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Documentation */
.documentation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.doc-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.doc-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.doc-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Lead Times */
.lead-time-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lead-time-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.lead-time-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.lead-time-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

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

.timeline-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

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

.timeline-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Compliance */
.compliance-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.compliance-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.compliance-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.compliance-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

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

.compliance-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Logistics Partners */
.logistics-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-info-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.partner-info-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.partner-info-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.partner-info-card ul {
    list-style: none;
    padding: 0;
}

.partner-info-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.partner-info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Incoterms */
.incoterms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.incoterm-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.incoterm-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16,185,129,0.2);
    border-color: var(--accent-color);
}

.incoterm-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.incoterm-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Tracking */
.tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tracking-card {
    background-color: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tracking-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.tracking-card ul {
    list-style: none;
    padding: 0;
}

.tracking-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

.tracking-card ul li:last-child {
    border-bottom: none;
}

.tracking-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Employee Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.facility-card:nth-child(1) { animation-delay: 0.1s; }
.facility-card:nth-child(2) { animation-delay: 0.2s; }
.facility-card:nth-child(3) { animation-delay: 0.3s; }
.facility-card:nth-child(4) { animation-delay: 0.4s; }
.facility-card:nth-child(5) { animation-delay: 0.5s; }
.facility-card:nth-child(6) { animation-delay: 0.6s; }
.facility-card:nth-child(7) { animation-delay: 0.7s; }
.facility-card:nth-child(8) { animation-delay: 0.8s; }

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

.facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(16,185,129,0.3);
    border-color: var(--accent-color);
}

.facility-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ecfdf5 100%);
    position: relative;
}

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

.facility-card:hover .facility-image {
    transform: scale(1.15);
}

.facility-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facility-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    transition: color 0.3s;
}

.facility-card:hover .facility-title {
    color: var(--accent-color);
}

.facility-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

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

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

.footer-section ul li a {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #f5f5f5;
}

.footer-bottom p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: #f5f5f5;
}

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

    .nav-right {
        gap: 1rem;
    }

    .header-logo {
        height: 64px;
        max-width: 180px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .form-header,
    .info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .form-header-icon,
    .info-header-icon {
        margin: 0 auto;
    }

    .header-logo {
        max-width: 180px;
    }
    
    .quote-hours-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .capacity-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .capacity-table {
        font-size: 0.75rem;
        min-width: 700px;
    }
    
    .capacity-table th,
    .capacity-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .capacity-table th {
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
        padding-top: 12vh;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-slide-indicators {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    
    .hero-indicator {
        max-width: 40px;
        height: 3px;
    }

    .navbar .container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "left"
            "right"
            "menu";
        column-gap: 0;
        row-gap: 0.5rem;
    }

    .nav-brand {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-left {
        justify-self: center;
    }

    .world-clock {
        min-width: 125px;
        padding: 0.35rem 0.5rem;
        gap: 0.2rem;
    }

    .clock-display {
        font-size: 0.68rem;
        min-width: 105px;
        padding: 0.2rem 0.4rem;
    }

    .clock-date {
        font-size: 0.58rem;
    }

    .clock-time {
        font-size: 0.75rem;
    }

    .timezone-selector {
        font-size: 0.58rem;
        padding: 0.2rem 0.4rem;
    }

    .nav-right {
        width: 100%;
        justify-self: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 0.5rem;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .value-card {
        padding: 1.75rem 1.5rem;
    }

    .value-icon {
        font-size: 2.75rem;
        width: 75px;
        height: 75px;
    }

    .values-header {
        margin-bottom: 2.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .slideshow-container {
        height: 300px;
    }

    .slideshow-controls {
        bottom: 10px;
        padding: 0.5rem 1rem;
    }

    .slide-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .unit-card {
        flex-direction: column !important;
        margin-bottom: 2rem;
    }
    
    .unit-image-wrapper {
        flex: 0 0 200px;
        min-height: 200px;
    }
    
    .unit-content-wrapper {
        padding: 1.25rem;
    }
    
    .unit-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .unit-header h3 {
        font-size: 0.95rem;
    }
    
    .capacity-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .unit-content p {
        font-size: 0.75rem;
    }
    
    .machinery-list li {
        font-size: 0.7rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }
    
    .form-header,
    .info-header {
        flex-direction: column;
        text-align: center;
    }
    
    .form-header-icon,
    .info-header-icon {
        margin: 0 auto;
    }

    .factory-image-section {
        padding: 2rem 0;
    }

    .factory-image-wrapper {
        border-radius: 8px;
    }

    .unit-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .products-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        padding: 1.5rem;
    }

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

    .products-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

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

    .certificate-image-wrapper {
        height: 280px;
    }

    .bgapmea-membership {
        padding: 3rem 2rem;
    }

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

    .bgapmea-description {
        font-size: 1.1rem;
    }

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

    .director-card {
        padding: 2rem;
    }

    .avatar-placeholder {
        width: 100px;
        height: 100px;
    }

    .director-photo {
        width: 100px;
        height: 100px;
    }

    .avatar-initial {
        font-size: 2rem;
    }

    .director-name {
        font-size: 1.25rem;
    }

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

    .partner-card {
        padding: 2rem 1.5rem;
    }

    .partner-category {
        padding: 2rem 1.5rem;
    }

    .partner-category-title {
        font-size: 1.5rem;
    }

    .brand-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .brand-partner-card {
        padding: 1rem;
        min-height: 100px;
    }

    .brand-logo {
        max-height: 60px;
    }

    .brand-name-fallback {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .nav-brand .tagline {
        font-size: 0.75rem;
    }

    .header-logo {
        height: 58px;
        max-width: 160px;
    }

    .nav-left {
        justify-self: center;
    }

    .world-clock {
        min-width: 118px;
        padding: 0.3rem 0.45rem;
        gap: 0.18rem;
    }

    .clock-display {
        font-size: 0.64rem;
        min-width: 100px;
        padding: 0.18rem 0.35rem;
    }

    .clock-date {
        font-size: 0.54rem;
    }

    .clock-time {
        font-size: 0.72rem;
    }

    .timezone-selector {
        font-size: 0.54rem;
        padding: 0.18rem 0.35rem;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .brand-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-title {
        font-size: 1.5rem;
    }

    .category-section-title {
        font-size: 1.75rem;
    }

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

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

    .facility-title {
        font-size: 1.2rem;
    }

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

    .facility-image-wrapper {
        height: 180px;
    }

    .shipping-methods-grid,
    .packaging-info,
    .documentation-grid,
    .lead-time-info,
    .compliance-info,
    .logistics-partners,
    .incoterms-grid,
    .tracking-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .packaging-info,
    .compliance-info,
    .logistics-partners,
    .tracking-info {
        grid-template-columns: 1fr;
    }

    .brand-partner-card {
        padding: 0.75rem;
        min-height: 80px;
    }

    .brand-logo {
        max-height: 50px;
    }

    .brand-name-fallback {
        font-size: 0.85rem;
    }

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

    .certificate-image-wrapper {
        height: 250px;
    }

    .bgapmea-membership {
        padding: 2rem 1.5rem;
    }

    .bgapmea-icon {
        font-size: 3rem;
    }

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

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

    .bgapmea-membership-info {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .bgapmea-link {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .header-detail-box {
        padding: 1.5rem;
    }

    .header-detail-box h3 {
        font-size: 1.5rem;
    }

    .header-detail-box p {
        font-size: 1rem;
    }

    .download-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        gap: 0.4rem;
    }

    .download-icon {
        font-size: 0.9rem;
    }

    .download-section {
        padding: 1.5rem 0;
    }

    .download-title {
        font-size: 1.25rem;
    }

    .download-description {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .download-content {
        gap: 0.75rem;
    }

    .download-section {
        padding: 1.5rem 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .slideshow-container {
        height: 250px;
    }

    .slideshow-controls {
        bottom: 8px;
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .slide-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

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

    .value-card {
        padding: 1.5rem 1.25rem;
    }

    .value-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .values-header {
        margin-bottom: 2rem;
    }

    .values-intro {
        font-size: 0.85rem;
    }
}

