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

:root {
    /* Brand Colors */
    --primary-color: #3c3c3c;
    --secondary-color: #5a5a69;
    --accent-color: #1ed296;
    --text-dark: #3c3c3c;
    --text-light: #969696;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e1e1;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}

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

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    height: auto;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

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

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin-top: 0;
    padding-top: 0;
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.slide-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
    line-height: 1.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

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

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

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

.dot.active {
    background: white;
    border-color: white;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
    display: inline-block;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.hero-slider {
    padding: 0;
    margin-top: 0;
}

/* Hero Section for other pages - Premium Corporate Look */
.hero {
    position: relative;
    background: linear-gradient(135deg, #252525 0%, #3c3c3c 40%, #4a4a5a 70%, #3c3c3c 100%);
    color: white;
    padding: 100px 0 100px;
    margin-top: 90px; /* Navbar height: 20px top + 50px logo + 20px bottom = 90px */
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 210, 150, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(30, 210, 150, 0.12) 0%, transparent 60%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(30, 210, 150, 0.5), rgba(30, 210, 150, 0.5), transparent);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3125rem;
    opacity: 0.92;
    line-height: 1.75;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1875rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Why Us Section */
.why-us {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.4;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

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

/* Professional Blurb Section */
.professional-blurb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.professional-blurb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.professional-blurb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.blurb-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blurb-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: white;
}

.blurb-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Company Stats Section */
.company-stats {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 80px 0;
    margin-top: 0;
}

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

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Homepage About Section - Isolated Styling */
.homepage-about {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.homepage-about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.homepage-about-image-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.homepage-about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.homepage-about-text-block {
    padding: 0;
}

.homepage-about-text-block h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.homepage-about-text-block p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.85;
    font-size: 1.125rem;
}

.homepage-about-text-block p:last-child {
    margin-bottom: 0;
}

/* About Page Section - Corporate Look (Separate from Homepage) */
.about {
    background: var(--bg-white);
    padding: 100px 0;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.about-image-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-text-block {
    padding: 0;
}

.about-text-block h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-text-block p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.85;
    font-size: 1.125rem;
}

.about-text-block p:last-child {
    margin-bottom: 0;
}

/* Core Values Section */
.core-values {
    background: var(--bg-light);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-item {
    text-align: left;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    line-height: 1.4;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Leadership Team Section */
.leadership-team {
    background: var(--bg-white);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.avatar-placeholder {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.team-role {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.product-image .image-placeholder-small {
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: transform 0.3s ease;
}

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

.product-card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.product-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.product-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-small:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 210, 150, 0.2);
}

/* Products Header */
.products-header {
    background: var(--bg-light);
    padding: 80px 0 40px;
}

/* Product Section */
.product-section {
    padding: 80px 0;
}

.product-section-light {
    background: var(--bg-white);
}

.product-section-dark {
    background: var(--bg-light);
}

/* Product Detail Section */
.product-detail-section {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
}

.product-detail-section:last-child {
    border-bottom: none;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-content.reverse {
    direction: rtl;
}

.product-detail-content.reverse > * {
    direction: ltr;
}

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

.product-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
}

.product-detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.product-features {
    margin-top: 2.5rem;
}

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

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

.product-feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.product-feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.product-feature-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.product-detail-image {
    width: 100%;
    height: auto;
}

.product-detail-image .image-placeholder {
    width: 100%;
    height: 450px;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Homepage CTA Section - Premium Design */
.homepage-cta {
    background: radial-gradient(circle at center, rgba(30, 210, 150, 0.15) 0%, rgba(20, 140, 100, 0.25) 70%, rgba(15, 120, 85, 0.35) 100%);
    color: var(--text-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.homepage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 210, 150, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 210, 150, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.homepage-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

.cta-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-main-content {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-main-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-main-content p {
    font-size: 1.25rem;
    color: rgba(30, 30, 30, 0.85);
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--accent-color);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(30, 210, 150, 0.2);
}

.btn-cta-primary:hover {
    background: rgba(30, 210, 150, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 210, 150, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.btn-cta-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(30, 30, 30, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA Section (for products page) */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 1.125rem;
}

.cta-section .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Industries Section */
.industries {
    background: var(--bg-light);
}

.industries .section-header {
    margin-bottom: 2rem;
}

.industries-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.industry-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

.industry-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.4;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

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

.industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-placeholder-small {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.industry-body {
    padding: 1.5rem;
    text-align: center;
}

.industry-body h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

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

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

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

.col-6 {
    width: 100%;
}

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

.quality-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.quality-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.quality-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.quality-feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(30, 210, 150, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(30, 210, 150, 0.1);
    transition: all 0.3s ease;
}

.quality-feature-item:hover {
    background: rgba(30, 210, 150, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.quality-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.quality-feature-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.quality-feature-item h4 {
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.quality-image,
.logistics-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logistics Section */
.logistics {
    background: var(--bg-light);
}

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

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

/* Blog Section */
.blog {
    background: var(--bg-white);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.blog-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
    border-radius: 0;
    margin-bottom: 0;
    position: relative;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image .image-placeholder-small {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image .image-placeholder-small {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(30, 210, 150, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.blog-category i {
    font-size: 0.75rem;
}

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

.blog-content h3 {
    color: var(--primary-color);
    margin: 0 0 1rem;
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

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

.blog-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.blog-content p:last-of-type {
    margin-bottom: 0;
}

.read-more {
    background: transparent;
    color: var(--accent-color);
    border: none;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-content {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.sidebar-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    letter-spacing: -0.3px;
}

.sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-posts li {
    margin: 0;
    padding: 0;
}

.sidebar-post-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-post-link:hover {
    background: rgba(30, 210, 150, 0.05);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.sidebar-post-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-post-link:hover .sidebar-post-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.sidebar-post-icon i {
    font-size: 1rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.sidebar-post-link:hover .sidebar-post-icon i {
    color: white;
}

.sidebar-post-link span {
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.sidebar-post-link:hover span {
    color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: none;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    position: relative;
}

.btn-outline::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.btn-outline:hover::after {
    transform: translateX(4px);
}

/* Blog Page Styles */

/* Career Page Styles */
.career {
    background: var(--bg-white);
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.career-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.career-text h3:first-child {
    margin-top: 0;
}

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

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.career-benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.career-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.career-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.career-benefit-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.career-benefit-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

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

.positions-list {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.position-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.position-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
}

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

.position-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.position-location,
.position-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.position-location i,
.position-type i {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.position-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.position-card .btn {
    margin-top: auto;
    align-self: flex-start;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.position-card .btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 210, 150, 0.3);
}

.apply-section {
    background: var(--bg-white);
}

.apply-steps {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: start;
}

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

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background: var(--accent-color);
    transform: scale(1.05);
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.step-item:hover .step-icon i {
    color: white;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.step-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.step-content a:hover {
    color: var(--primary-color);
}

/* Contact Section */
/* Contact Section - New Design */
.contact-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side: Contact Info */
.contact-info-side {
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
    min-height: fit-content;
}

.contact-info-side h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.contact-detail-icon {
    width: 56px;
    height: 56px;
    background: rgba(30, 210, 150, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

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

.contact-detail-content h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

.contact-detail-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-detail-content p:last-child {
    margin-bottom: 0;
}

.contact-detail-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

/* Map Section - Full Width */
.map-section-full {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-full-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-full-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Right Side: Contact Form */
.contact-form-side {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form-card h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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


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

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

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


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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(30, 210, 150, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

/* Map Section */

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(30, 210, 150, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    display: block;
    filter: brightness(1.1);
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    opacity: 0.95;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.footer-section p:first-of-type {
    margin-top: 0;
}

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

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

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section a[href^="mailto:"] {
    color: var(--accent-color);
    font-weight: 500;
}

.footer-section a[href^="mailto:"]:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(30, 210, 150, 0.3), transparent);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.powered-by-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.dgtia-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.dgtia-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.dgtia-logo {
    height: 16px;
    width: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.dgtia-link:hover .dgtia-logo {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.dgtia-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

    .hero {
        padding: 80px 0 70px;
        margin-top: 80px; /* Navbar height: 20px top + 40px logo + 20px bottom = 80px */
    }

    .hero-slider {
        height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .logo-image {
        height: 40px;
    }

    .hero-slider {
        height: 100vh;
    }

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

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

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

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .section-header h2 {
        font-size: 2.25rem;
        letter-spacing: -0.8px;
    }

    .section-header p {
        font-size: 1.125rem;
    }

    .professional-blurb {
        padding: 60px 0;
    }

    .blurb-content h2 {
        font-size: 2rem;
    }

    .blurb-content p {
        font-size: 1.125rem;
    }

    .hero-slider {
        height: 500px;
    }

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

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

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

    .value-item {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .value-item h3 {
        font-size: 1.125rem;
        min-height: auto;
    }

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

    .about-main-content {
        gap: 3rem;
    }

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

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

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

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

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

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

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

    .contact-form-side {
        position: static;
        order: -1;
    }

    .map-full-wrapper {
        height: 400px;
    }

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

    .quotation-feature-item {
        padding: 1rem 0.75rem;
    }

    .quotation-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .quotation-feature-icon i {
        font-size: 1rem;
    }

    .quotation-feature-item h4 {
        font-size: 0.8125rem;
    }

    .contact-form-wrapper {
        gap: 1.5rem;
    }

    .quality-content,
    .logistics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logistics-image {
        order: -1;
        min-height: 300px;
    }

    .quality-image,
    .logistics-image {
        min-height: 300px;
    }

    .image-placeholder {
        min-height: 300px;
    }

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

    .blog-sidebar {
        position: static;
        order: -1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .homepage-about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .homepage-about-text-block {
        padding: 2rem 1.75rem;
    }

    .homepage-about-text-block h3 {
        font-size: 1.5rem;
    }

    .homepage-about-text-block p {
        font-size: 1.0625rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text-block {
        padding: 2rem 1.75rem;
    }

    .about-text-block h3 {
        font-size: 1.5rem;
    }

    .about-text-block p {
        font-size: 1.0625rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

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

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .homepage-cta {
        padding: 80px 0;
    }

    .cta-main-content h2 {
        font-size: 2.25rem;
    }

    .cta-main-content p {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .cta-features {
        gap: 2rem;
        padding-top: 2rem;
    }

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

    .industry-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .industry-icon i {
        font-size: 1.5rem;
    }

    .industry-card h3 {
        font-size: 1.125rem;
        min-height: auto;
    }

    .quality-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

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

    .product-detail-content.reverse {
        direction: ltr;
    }

    .product-detail-image {
        order: -1;
    }

    .product-detail-image .image-placeholder {
        height: 350px;
        max-height: 350px;
    }

    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .product-header h2 {
        font-size: 2rem;
    }

    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .product-feature-item {
        padding: 1.25rem;
    }

    .product-feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.875rem;
    }

    .product-feature-icon i {
        font-size: 1.25rem;
    }

    .product-feature-item h4 {
        font-size: 0.9375rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }

    .hero {
        padding: 70px 0 60px;
        margin-top: 75px; /* Navbar height: 20px top + 35px logo + 20px bottom = 75px */
    }

    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

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

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

    section {
        padding: 60px 0;
    }

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

    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }

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

    .slide-subtitle {
        font-size: 0.9375rem;
    }

    .slider-nav {
        width: 36px;
        height: 36px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .homepage-cta {
        padding: 60px 0;
    }

    .cta-main-content h2 {
        font-size: 1.875rem;
    }

    .cta-main-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        padding-top: 2rem;
    }

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

    .blog-sidebar {
        position: static;
        order: -1;
    }

    .blog-posts {
        gap: 2rem;
    }

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

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

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

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

    .stat-label {
        font-size: 0.875rem;
    }

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

    .value-item {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .value-icon i {
        font-size: 1.5rem;
    }

    .value-item h3 {
        font-size: 1.125rem;
        min-height: auto;
    }

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

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

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

    .about-main-content {
        gap: 2.5rem;
    }

    .about-text-block h3 {
        font-size: 1.5rem;
    }

    .about-text-block p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

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

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

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

    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .feature-icon i {
        font-size: 1.375rem;
    }

    .feature-card h3 {
        font-size: 1.125rem;
        min-height: auto;
    }

    .professional-blurb {
        padding: 50px 0;
    }

    .blurb-content h2 {
        font-size: 1.75rem;
    }

    .blurb-content p {
        font-size: 1rem;
    }

    .homepage-about-image {
        min-height: 300px;
    }

    .homepage-about-image-img {
        min-height: 300px;
    }

    .homepage-about-text {
        gap: 1.5rem;
    }

    .about-image {
        min-height: 300px;
    }

    .about-image-img {
        min-height: 300px;
    }

    .about-text {
        gap: 1.5rem;
    }

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

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

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

    .quality-feature-icon {
        width: 48px;
        height: 48px;
    }

    .quality-feature-icon i {
        font-size: 1.25rem;
    }

    .quality-feature-item h4 {
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section:first-child {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 2rem;
    }

    .footer-powered-by {
        justify-content: center;
    }

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

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

    .career-benefit-item {
        padding: 1.25rem;
    }

    .career-benefit-icon {
        width: 48px;
        height: 48px;
    }

    .career-benefit-icon i {
        font-size: 1.25rem;
    }

    .career-benefit-item h4 {
        font-size: 0.9375rem;
    }

    .position-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .product-feature-item {
        padding: 1.25rem;
    }

    .product-feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.875rem;
    }

    .product-feature-icon i {
        font-size: 1.25rem;
    }

    .product-feature-item h4 {
        font-size: 0.875rem;
    }

    .product-detail-image .image-placeholder {
        height: 300px;
        max-height: 300px;
    }

    .career-image {
        order: -1;
        min-height: 300px;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-icon {
        width: 56px;
        height: 56px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }

    .career-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .position-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .position-icon i {
        font-size: 1.5rem;
    }

    .map-wrapper {
        height: 300px;
    }

    .map-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .map-icon i {
        font-size: 1.5rem;
    }

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

    .quotation-feature-item {
        padding: 1rem 0.75rem;
    }

    .quotation-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .quotation-feature-icon i {
        font-size: 1rem;
    }

    .quotation-feature-item h4 {
        font-size: 0.8125rem;
    }

    .map-content p {
        font-size: 1rem;
    }
}

