/* ===== Fonts ===== */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.ttf');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

/* ===== CSS Variables ===== */
:root {
    --lk-black: #1a1a1a;
    --lk-charcoal: #2b2b2b;
    --lk-dark-green: #1e3a2b;
    --lk-green: #309839;
    --lk-green-hover: #28802f;
    --lk-white: #ffffff;
    --lk-gray-100: #f5f5f5;
    --lk-gray-200: #e8e8e8;
    --lk-gray-400: #999999;
    --lk-gray-600: #666666;
    --lk-header-height: 84px;
    --lk-max-width: 1300px;
    --lk-radius: 8px;
    --lk-transition: all 0.3s ease;
}

/* ===== Base Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Roboto', arial, sans-serif;
    color: var(--lk-black);
    background: var(--lk-white);
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 700;
}
p { margin-bottom: 5px; }
ul,li { list-style: none; }
ul { padding-left: 0; }
a { text-decoration: none !important; }
a:hover { color: var(--lk-green); }
img { max-width: 100%; height: auto; }

.btn:focus, .btn:active, .form-control:focus {
    outline: none; box-shadow: none; border: none;
}

/* ===== HEADER ===== */
.lk-header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    transition: var(--lk-transition);
    pointer-events: auto;
}
.lk-header.lk-scrolled {
    top: 0;
}
.lk-header-inner {
    width: 100%;
    max-width: var(--lk-max-width);
    height: var(--lk-header-height);
    background: var(--lk-white);
    border-radius: var(--lk-radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    transition: var(--lk-transition);
}
.lk-header.lk-scrolled .lk-header-inner {
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Logo */
.lk-logo {
    flex-shrink: 0;
}
.lk-logo a {
    display: flex;
    align-items: center;
}
.lk-logo img {
    height: 66px;
    width: auto;
    object-fit: contain;
}

/* Nav */
.lk-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}
.lk-nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}
.lk-nav-item {
    position: relative;
}
.lk-nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--lk-charcoal) !important;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
    position: relative;
}
.lk-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lk-green);
    border-radius: 1px;
    transition: width 0.3s ease, left 0.3s ease;
}
.lk-nav-link:hover::after,
.lk-nav-item.active .lk-nav-link::after {
    width: 60%;
    left: 20%;
}
.lk-nav-link:hover,
.lk-nav-item.active .lk-nav-link {
    color: var(--lk-green) !important;
}

/* Dropdown */
.lk-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--lk-white);
    border-radius: var(--lk-radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--lk-transition);
    z-index: 100;
}
.lk-nav-item:hover .lk-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.lk-nav-dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: 0.875rem;
    color: var(--lk-charcoal) !important;
    transition: var(--lk-transition);
}
.lk-nav-dropdown-item:hover {
    color: var(--lk-green) !important;
    background: rgba(48,152,57,0.06);
}

/* Header Actions */
.lk-header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}
.lk-btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #309839 0%, #1e6a25 100%);
    color: var(--lk-white) !important;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(48,152,57,0.3);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    z-index: 1;
}
.lk-btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: none;
    z-index: -1;
}
.lk-btn-quote:hover::before {
    animation: lk-shimmer 0.6s ease forwards;
}
.lk-btn-quote:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 28px rgba(48,152,57,0.4);
    background: linear-gradient(135deg, #36a83f 0%, #1e6a25 100%);
    color: var(--lk-white) !important;
}
.lk-btn-quote:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 8px rgba(48,152,57,0.2);
}
@keyframes lk-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hamburger */
.lk-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.lk-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--lk-charcoal);
    border-radius: 2px;
    transition: var(--lk-transition);
}
.lk-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.lk-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.lk-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.lk-mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--lk-white);
    z-index: 10001;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.lk-mobile-menu.open {
    right: 0;
}
.lk-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--lk-gray-200);
}
.lk-mobile-menu-header img {
    height: 32px;
}
.lk-mobile-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--lk-charcoal);
    cursor: pointer;
    line-height: 1;
}
.lk-mobile-nav-list {
    flex: 1;
    padding: 16px 0;
}
.lk-mobile-nav-list > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lk-charcoal) !important;
    border-bottom: 1px solid var(--lk-gray-100);
    transition: var(--lk-transition);
}
.lk-mobile-nav-list > li > a:hover {
    color: var(--lk-green) !important;
    background: rgba(48,152,57,0.04);
}
.lk-mobile-sub {
    padding: 0;
}
.lk-mobile-sub li a {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 0.875rem;
    color: var(--lk-gray-600) !important;
    border-bottom: 1px solid var(--lk-gray-100);
}
.lk-mobile-sub li a:hover {
    color: var(--lk-green) !important;
}
.lk-mobile-menu-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--lk-gray-200);
}
.lk-mobile-menu-footer .lk-btn-quote {
    display: block;
    text-align: center;
    width: 100%;
}
.lk-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--lk-transition);
}
.lk-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== BANNER ===== */
.lk-banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--lk-black);
    position: relative;
}
.lk-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.lk-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
    pointer-events: none;
}
.lk-banner-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: var(--lk-max-width);
    padding: 0 0px;
    z-index: 2;
}
.lk-banner-title {
    font-size: 3.625rem;
    font-weight: 700;
    color: var(--lk-white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.lk-banner-divider {
    width: 90px;
    height: 4px;
    background: var(--lk-green);
    border-radius: 2px;
    margin-bottom: 24px;
}
.lk-banner-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255,255,255,0.92);
    margin-bottom: 20px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.lk-banner-features {
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
}
.lk-banner-features li {
    font-size: 1.0625rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    padding-left: 20px;
    position: relative;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.lk-banner-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background: var(--lk-green);
    border-radius: 50%;
}

/* Scroll Down Indicator */
.lk-scroll-down {
    position: absolute;
    right: 60px;
    bottom: 40px;
    width: 56px;
    height: 56px;
    z-index: 3;
    cursor: pointer;
}
.lk-scroll-ring {
    width: 56px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 0;
    animation: lk-ring-spin 4s linear infinite;
}
.lk-scroll-arc {
    animation: lk-arc-dash 4s ease-in-out infinite;
}
.lk-scroll-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
.lk-scroll-down:hover .lk-scroll-arrow {
    color: #309839;
    transition: color 0.3s ease;
}
@keyframes lk-ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes lk-arc-dash {
    0%, 100% { stroke-dasharray: 1 170; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 130 170; stroke-dashoffset: -40; }
}

/* ===== MARKET INSIGHT ===== */
.lk-insight {
    width: 100%;
    background: linear-gradient(165deg, #f0f7f1 0%, #e8f5ea 30%, #f5faf6 60%, #ffffff 100%);
    padding: 100px 60px 80px;
    position: relative;
    overflow: hidden;
}
.lk-insight::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(48,152,57,0.04);
    pointer-events: none;
}
.lk-insight::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(48,152,57,0.03);
    pointer-events: none;
}
.lk-insight-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.lk-insight-top {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 64px;
}
.lk-insight-left {
    flex: 1;
    min-width: 0;
}
.lk-insight-right {
    flex-shrink: 0;
    width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lk-insight-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 28px;
}
.lk-insight-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    line-height: 1.25;
    margin-bottom: 28px;
}
.lk-insight-title span {
    color: var(--lk-green);
}
.lk-insight-body {
    margin-bottom: 0;
}
.lk-insight-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--lk-gray-600);
    margin-bottom: 16px;
}
.lk-insight-body p:last-child {
    margin-bottom: 0;
}
.lk-insight-body strong {
    color: var(--lk-charcoal);
    font-weight: 600;
}

/* Insight Image */
.lk-insight-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(48,152,57,0.12));
}

/* Stats Bar */
.lk-insight-stats {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.lk-insight-stat {
    flex: 1;
    padding: 36px 32px;
    text-align: center;
    border-left: 1px solid rgba(48,152,57,0.1);
}
.lk-insight-stat:first-child {
    border-left: none;
}
.lk-insight-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-green);
    line-height: 1.1;
    display: inline;
}
.lk-insight-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lk-green);
    line-height: 1.1;
}
.lk-insight-unit {
    display: block;
    font-size: 0.875rem;
    color: var(--lk-gray-600);
    font-weight: 400;
    line-height: 1.4;
    margin-top: 10px;
}



/* ===== ABOUT US ===== */
.lk-about {
    width: 100%;
    background: #ffffff;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}
.lk-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(48,152,57,0.08) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    animation: lk-about-pulse 8s infinite alternate ease-in-out;
}
@keyframes lk-about-pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.1) translate(-2%, 2%); opacity: 1; }
}
.lk-about-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.lk-about-img-wrap {
    flex-shrink: 0;
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.lk-about-img {
    display: block;
    width: 100%;
    height: auto;
}
.lk-about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(30,32,33,0.5) 0%, transparent 100%);
    pointer-events: none;
}
.lk-about-content {
    flex: 1;
    min-width: 0;
    padding-top: 20px;
}
.lk-about-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48,152,57,0.15);
    color: var(--lk-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 28px;
}
.lk-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    line-height: 1.25;
    margin-bottom: 24px;
}
.lk-about-title span {
    color: var(--lk-green);
}
.lk-about-divider {
    width: 60px;
    height: 3px;
    background: var(--lk-green);
    border-radius: 2px;
    margin-bottom: 28px;
}
.lk-about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(30,32,33,0.75);
    margin-bottom: 16px;
}
.lk-about-text:last-of-type {
    margin-bottom: 28px;
}
.lk-about-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.lk-about-highlights li {
    font-size: 0.9375rem;
    color: rgba(30,32,33,0.8);
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}
.lk-about-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--lk-green);
    border-radius: 3px;
}
.lk-about-highlights strong {
    color: var(--lk-green);
    font-weight: 600;
}

/* About Button */
.lk-btn-about {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #309839 0%, #1e6a25 100%);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(48,152,57,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lk-btn-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: none;
}
.lk-btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48,152,57,0.4);
    color: #fff;
}
.lk-btn-about:hover::before {
    animation: lk-shimmer 0.6s ease forwards;
}

/* ===== Core Strengths Section ===== */
.lk-strengths {
    position: relative;
    padding: 120px 60px;
    overflow: hidden;
    padding-bottom: 150px;
}
.lk-strengths-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.lk-strengths-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.lk-strengths-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(30,32,33,0.92) 0%, rgba(30,32,33,0.85) 40%, rgba(30,32,33,0.78) 100%);
    z-index: 1;
}
.lk-strengths-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.lk-strengths-header {
    text-align: center;
    margin-bottom: 64px;
}
.lk-strengths-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48,152,57,0.15);
    color: var(--lk-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}
.lk-strengths-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.lk-strengths-title span {
    color: var(--lk-green);
}
.lk-strengths-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.lk-strengths-divider {
    width: 60px;
    height: 3px;
    background: var(--lk-green);
    margin: 0 auto;
    border-radius: 2px;
}
.lk-strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.lk-strength-item {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 28px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.lk-strength-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lk-green), rgba(48,152,57,0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.lk-strength-item::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(48,152,57,0.06);
    pointer-events: none;
    transition: transform 0.5s ease;
}
.lk-strength-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(48,152,57,0.25);
}
.lk-strength-item:hover::before {
    transform: scaleX(1);
}
.lk-strength-item:hover::after {
    transform: scale(1.3);
}
.lk-strength-icon {
    width: 56px;
    height: 56px;
    background: rgba(48,152,57,0.15);
    color: var(--lk-green);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.lk-strength-icon i {
    line-height: 1;
}
.lk-strength-item:hover .lk-strength-icon {
    background: var(--lk-green);
    color: #fff;
    transform: scale(1.08);
}
.lk-strength-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}
.lk-strength-item-title {
    font-size: 1.1875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.35;
}
.lk-strength-desc {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* ===== RECYCLABLE CATEGORIES ===== */
.lk-categories {
    width: 100%;
    background: #fff;
    padding: 120px 60px;
    position: relative;
}
.lk-categories-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
}
.lk-categories-header {
    text-align: center;
    margin-bottom: 64px;
}
.lk-categories-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}
.lk-categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 15px;
}
.lk-categories-title span {
    color: var(--lk-green);
}
.lk-categories-subtitle {
    font-size: 1.0625rem;
    color: var(--lk-gray-600);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.lk-categories-divider {
    width: 60px;
    height: 3px;
    background: var(--lk-green);
    margin: 0 auto;
    border-radius: 2px;
}
.lk-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
/* Carousel mode */
.lk-categories-grid.lk-cat-carousel {
    display: flex;
    gap: 28px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding-bottom: 30px;
}
.lk-cat-carousel .lk-cat-slide {
    flex: 0 0 calc(25% - 21px);
    min-width: calc(25% - 21px);
}
.lk-cat-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.lk-cat-prev,
.lk-cat-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--lk-green);
    background: #fff;
    color: var(--lk-green);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.lk-cat-prev:hover,
.lk-cat-next:hover {
    background: var(--lk-green);
    color: #fff;
    transform: scale(1.1);
}
.lk-cat-dots {
    display: flex;
    gap: 8px;
}
.lk-cat-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(48,152,57,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}
.lk-cat-dot.active {
    background: var(--lk-green);
    transform: scale(1.2);
}
.lk-category-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lk-category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.lk-category-img-wrap {
    width: 100%;
    aspect-ratio: 6 / 7;
    overflow: hidden;
    position: relative;
}
.lk-category-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(30,32,33,0.1) 0%, transparent 100%);
    pointer-events: none;
}
.lk-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.lk-category-item:hover .lk-category-img-wrap img {
    transform: scale(1.08);
}
.lk-category-info {
    padding: 24px 20px;
    position: relative;
}
.lk-category-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--lk-green), rgba(48,152,57,0.2));
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.lk-category-item:hover .lk-category-info::before {
    transform: scaleX(1);
}
.lk-category-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    margin-bottom: 12px;
    line-height: 1.35;
}
.lk-category-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lk-green);
    cursor: pointer;
    transition: gap 0.3s ease;
}
.lk-category-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}
.lk-category-item:hover .lk-category-link {
    gap: 10px;
}
.lk-category-item:hover .lk-category-link i {
    transform: translateX(2px);
}

/* ===== LATEST UPDATES / BLOG ===== */
.lk-blog {
    width: 100%;
    background: linear-gradient(165deg, #f8f9f8 0%, #f0f7f1 50%, #f5faf6 100%);
    padding: 120px 60px;
    position: relative;
}
.lk-blog-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
}
.lk-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}
.lk-blog-header-left {
    display: flex;
    flex-direction: column;
}
.lk-blog-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.lk-blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    line-height: 1.2;
}
.lk-blog-title span {
    color: var(--lk-green);
}
.lk-blog-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--lk-green);
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid var(--lk-green);
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
    white-space: nowrap;
}
.lk-blog-more:hover {
    background: var(--lk-green);
    color: #fff;
    gap: 12px;
}
.lk-blog-more i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.lk-blog-more:hover i {
    transform: translateX(3px);
}
.lk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lk-blog-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lk-blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.lk-blog-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
}
.lk-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.lk-blog-item:hover .lk-blog-img-wrap img {
    transform: scale(1.06);
}
.lk-blog-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(48,152,57,0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}
.lk-blog-info {
    padding: 28px 24px;
}
.lk-blog-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.lk-blog-item:hover .lk-blog-item-title {
    color: var(--lk-green);
}
.lk-blog-excerpt {
    font-size: 0.9375rem;
    color: var(--lk-gray-600);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CTA / MISSION ===== */
.lk-cta {
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
}
.lk-cta-img {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.lk-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.lk-cta:hover .lk-cta-img img {
    transform: scale(1.05);
}
.lk-cta-content {
    flex: 1;
    background: linear-gradient(135deg, #309839, #1e6a25);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.lk-cta-content::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    pointer-events: none;
}
.lk-cta-content::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    bottom: -60px;
    left: -40px;
    pointer-events: none;
}
.lk-cta-content-inner {
    padding: 48px 56px;
    position: relative;
    z-index: 1;
}
.lk-cta-label {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 20px;
}
.lk-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}
.lk-cta-title span {
    color: rgba(255,255,255,0.85);
}
.lk-cta-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
}
.lk-btn-cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: rgba(255,255,255,0.95);
    color: var(--lk-green);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease, gap 0.3s ease;
    z-index: 2;
}
.lk-btn-cta i {
    transition: transform 0.3s ease;
}
.lk-btn-cta:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    background: #fff;
    gap: 14px;
}
.lk-btn-cta:hover i {
    transform: translateX(4px);
}
/* pulse ring */
.lk-btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    transform: translate(-50%, -50%);
    animation: lk-cta-pulse 2s ease-out infinite;
    pointer-events: none;
}
@keyframes lk-cta-pulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 140%; height: 160%; opacity: 0; }
}

/* ===== FOOTER ===== */

/* ===== FLOATING ACTION BUTTONS ===== */
.lk-fab {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.lk-fab.lk-fab-hidden {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
    pointer-events: none;
}
.lk-fab.lk-fab-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.lk-fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    position: relative;
}
.lk-fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
/* WhatsApp - official green */
.lk-fab-whatsapp {
    background: #25D366;
}
.lk-fab-whatsapp:hover {
    background: #20BD5A;
}
/* Email */
.lk-fab-email {
    background: var(--lk-charcoal);
}
.lk-fab-email:hover {
    background: #3a3a3a;
}
/* Back to Top */
.lk-fab-top {
    background: var(--lk-green);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.lk-fab-top.visible {
    opacity: 1;
    visibility: visible;
}
.lk-fab-top:hover {
    background: var(--lk-green-hover);
}
/* tooltip */
.lk-fab-btn::after {
    content: attr(title);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    padding: 6px 14px;
    background: var(--lk-charcoal);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 400;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}
.lk-fab-btn:hover::after {
    opacity: 1;
    visibility: visible;
}
/* Mobile */
@media (max-width: 768px) {
    .lk-fab {
        right: 16px;
        gap: 10px;
    }
    .lk-fab-btn {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        border-radius: 12px;
    }
    .lk-fab-btn::after {
        display: none;
    }
}

/* ===== FOOTER ===== */
.lk-footer {
    width: 100%;
    background: #0f1a1c; /* Deep dark blue-green */
    position: relative;
    overflow: hidden;
}
.lk-footer::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(48, 152, 57, 0.15) 0%, rgba(15, 26, 28, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.lk-footer-main {
    padding: 100px 60px 80px;
    position: relative;
    z-index: 1;
}
.lk-footer-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
/* Left: Logo + Slogan + Social */
.lk-footer-left {
    flex-shrink: 0;
    max-width: 600px; /* Increased to accommodate large slogan */
}
.lk-footer-logo img {
    height: 60px;
    margin-bottom: 40px;
}
.lk-footer-slogan {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}
.lk-btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}
.lk-btn-outline:hover {
    border-color: var(--lk-green);
    color: var(--lk-green);
    background: rgba(48,152,57,0.05);
}
.lk-footer-social {
    display: flex;
    gap: 16px;
}
.lk-footer-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.lk-footer-social-link:hover {
    color: var(--lk-green);
}
/* Right: 3-column nav */
.lk-footer-nav {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
    padding-top: 10px;
}
.lk-footer-col {
    min-width: 140px;
    max-width: 170px;
}
.lk-footer-links {
    list-style: none;
}
.lk-footer-links li {
    margin-bottom: 14px;
}
.lk-footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.lk-footer-links a:hover {
    color: var(--lk-green);
}
/* Bottom Bar */
.lk-footer-bottom {
    padding: 30px 60px 40px;
    position: relative;
    z-index: 1;
}
.lk-footer-bottom-inner {
    max-width: var(--lk-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lk-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    flex: 1;
    margin-bottom: 0px;
}
.lk-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}
.lk-footer-bottom-links a {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}
.lk-footer-bottom-links a:hover {
    color: #fff;
}
.lk-footer-lang {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.lk-lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}
.lk-lang-current:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}
.lk-lang-current i {
    font-size: 1rem;
}
.lk-lang-arrow {
    font-size: 0.75rem !important;
    transition: transform 0.3s ease;
}
.lk-lang-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 12px;
    background: rgba(15, 26, 28, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 100;
}
.lk-footer-lang:hover .lk-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lk-footer-lang:hover .lk-lang-arrow {
    transform: rotate(180deg);
}
.lk-lang-dropdown a {
    display: block;
    padding: 8px 20px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}
.lk-lang-dropdown a:hover,
.lk-lang-dropdown a.active {
    background: rgba(255,255,255,0.05);
    color: var(--lk-green);
}

/* ===== GENERIC PAGE STYLES (Shared between About/Contact etc.) ===== */
/* Common Page Banner */
.lk-page-banner {
    position: relative;
    padding: 300px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    margin-top: -80px; /* Offset for absolute header */
}
.lk-page-banner-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,26,28,0.9) 0%, rgba(48,152,57,0.6) 100%);
    /*background: rgba(15, 26, 28, 0.65);*/
}
.lk-page-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.lk-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.lk-page-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

/* Generic Section Styles */
.lk-section {
    padding: 100px 20px;
    position: relative;
}
.lk-container {
    max-width: var(--lk-max-width);
    margin: 0 auto;
}
.lk-section-header {
    margin-bottom: 50px;
}
.lk-section-header.text-center {
    text-align: center;
}
.lk-sub-heading {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.lk-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 20px;
}
.lk-heading span {
    color: var(--lk-green);
}
.lk-heading-divider {
    width: 60px;
    height: 4px;
    background: var(--lk-green);
    border-radius: 2px;
}
.lk-heading-divider.center {
    margin: 0 auto;
}
.lk-section-desc {
    font-size: 1.125rem;
    color: #666;
    margin-top: 25px;
    line-height: 1.7;
    max-width: 700px;
}
.lk-section-desc.center {
    margin-left: auto;
    margin-right: auto;
}

/* Container fluid */
.lk-container-fluid {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

/* ===== ABOUT US PAGE STYLES ===== */
/* Profile Section */
.lk-profile {
    background: #fff;
}
.lk-profile-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}
.lk-profile-content {
    flex: 1;
}
.lk-profile-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.lk-profile-image {
    flex: 1;
    position: relative;
}
.lk-profile-image img {
    width: 100%;
    border-radius: 8px;
}
.lk-profile-experience {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--lk-green);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(48,152,57,0.3);
}
.lk-exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}
.lk-exp-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Factory Section */
.lk-factory {
    background: #f8f9fa;
}
.lk-section-desc {
    font-size: 1.125rem;
    color: #666;
    margin-top: 20px;
}
.lk-factory-content {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}
.lk-factory-text {
    flex: 1;
}
.lk-factory-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}
.lk-factory-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.lk-factory-feature {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.lk-factory-feature i {
    font-size: 2rem;
    color: var(--lk-green);
    margin-bottom: 15px;
}
.lk-factory-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    margin-bottom: 10px;
}
.lk-factory-feature p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Global Section */
.lk-global {
    background: #fff;
}
.lk-global-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}
.lk-global-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lk-global-map {
    width: 300px;
    height: 300px;
    background: rgba(48,152,57,0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--lk-green);
    font-size: 150px;
    box-shadow: 0 0 0 40px rgba(48,152,57,0.02), 0 0 0 80px rgba(48,152,57,0.01);
}
.lk-global-content {
    flex: 1;
}
.lk-global-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Quality Control Section */
.lk-qc {
    background: #0f1a1c;
    color: #fff;
}
.lk-qc .lk-heading {
    color: #fff;
}
.lk-qc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.lk-qc-item {
    background: rgba(255,255,255,0.05);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
}
.lk-qc-item:hover {
    transform: translateY(-10px);
    background: rgba(48,152,57,0.1);
    border-color: rgba(48,152,57,0.3);
}
.lk-qc-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    margin-bottom: 20px;
    line-height: 1;
}
.lk-qc-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}
.lk-qc-item p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Footer */
@media (max-width: 1024px) {
    .lk-profile-inner,
    .lk-factory-content,
    .lk-global-inner {
        flex-direction: column;
        gap: 50px;
    }
    .lk-profile-experience {
        left: 20px;
        bottom: -20px;
        padding: 20px;
    }
    .lk-exp-num {
        font-size: 2rem;
    }
    
    .lk-footer-inner {
        flex-direction: column;
        gap: 60px;
    }
    .lk-footer-left {
        max-width: 100%;
    }
    .lk-footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 40px;
    }
    .lk-footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .lk-footer-lang {
        justify-content: center;
    }
    .lk-lang-dropdown {
        right: auto;
        left: 50%;
        transform: translate(-50%, 10px);
    }
    .lk-footer-lang:hover .lk-lang-dropdown {
        transform: translate(-50%, 0);
    }

    /* About Page Mobile QC Adjustment */
    .lk-container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
    .lk-qc-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1400px) {
    .lk-header-inner {
        max-width: calc(100% - 40px);
        margin: 0 20px;
    }
}
@media (max-width: 1100px) {
    .lk-nav { display: none; }
    .lk-hamburger { display: flex; }
    .lk-header-actions .lk-btn-quote { display: none; }
    .lk-header-inner {
        padding: 0 20px;
    }
    .lk-banner-title {
        font-size: 2.625rem;
    }
    .lk-banner-subtitle {
        font-size: 1.125rem;
    }
    .lk-banner-content {
        padding: 0 40px;
    }
    .lk-insight {
        padding: 80px 40px 60px;
    }
    .lk-insight-top {
        gap: 50px;
    }
    .lk-insight-title {
        font-size: 2rem;
    }
    .lk-insight-right {
        width: 260px;
    }
    .lk-insight-img {
        max-width: 260px;
    }
    .lk-about {
        padding: 100px 40px;
    }
    .lk-about-inner {
        gap: 50px;
    }
    .lk-about-title {
        font-size: 2rem;
    }
    .lk-strengths {
        padding: 100px 40px;
    }
    .lk-strengths-title {
        font-size: 2rem;
    }
    .lk-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lk-strength-item {
        padding: 32px 24px;
    }
    .lk-categories {
        padding: 100px 40px;
    }
    .lk-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lk-cat-carousel .lk-cat-slide {
        flex: 0 0 calc(50% - 14px);
        min-width: calc(50% - 14px);
    }
    .lk-categories-title {
        font-size: 2rem;
    }
    .lk-blog {
        padding: 100px 40px;
    }
    .lk-blog-title {
        font-size: 2rem;
    }
    .lk-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lk-cta {
        max-height: none;
        flex-direction: column;
    }
    .lk-cta-img {
        height: 220px;
    }
    .lk-cta-content-inner {
        padding: 40px;
    }
    .lk-cta-title {
        font-size: 1.5rem;
    }
    .lk-footer-main {
        padding: 60px 40px 36px;
    }
    .lk-footer-inner {
        gap: 48px;
    }
    .lk-footer-nav {
        gap: 48px;
    }
    .lk-footer-bottom {
        padding: 18px 40px;
    }
}
@media (max-width: 768px) {
    .lk-scroll-down { display: none; }
    .lk-header {
        top: 12px;
    }
    .lk-header-inner {
        height: 60px;
        border-radius: 6px;
    }
    .lk-logo img {
        height: 40px;
    }
    .lk-banner {
        height: auto;
        max-height: 70vh;
    }
    .lk-banner img {
        height: 70vh;
        object-position: center 30%;
    }
    .lk-banner-content {
        padding: 0 24px;
        position: absolute;
        top: auto;
        bottom: 20%;
        left: 0;
        transform: none;
        width: 100%;
    }
    .lk-banner-title {
        font-size: 1.625rem;
        margin-bottom: 12px;
        line-height: 1.25;
    }
    .lk-banner-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 12px;
    }
    .lk-banner-subtitle {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }
    .lk-banner-features {
        flex-direction: column;
        gap: 8px;
    }
    .lk-banner-features li {
        font-size: 0.8125rem;
        padding-left: 16px;
    }
    .lk-banner-features li::before {
        width: 7px;
        height: 7px;
    }
    .lk-insight {
        padding: 60px 24px 40px;
    }
    .lk-insight-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }
    .lk-insight-right {
        width: 100%;
        justify-content: flex-start;
    }
    .lk-insight-img {
        max-width: 160px;
    }
    .lk-insight-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    .lk-insight-label {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    .lk-insight-body p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    .lk-insight-stats {
        flex-direction: column;
        border-radius: 10px;
    }
    .lk-insight-stat {
        border-left: none;
        border-top: 1px solid rgba(48,152,57,0.1);
        padding: 24px 20px;
    }
    .lk-insight-stat:first-child {
        border-top: none;
    }
    .lk-insight-num {
        font-size: 2rem;
    }
    .lk-insight-suffix {
        font-size: 1.25rem;
    }
    .lk-about {
        padding: 60px 24px;
    }
    .lk-about-inner {
        flex-direction: column;
        gap: 32px;
    }
    .lk-about-img-wrap {
        width: 100%;
        max-height: 260px;
    }
    .lk-about-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .lk-about-divider {
        width: 40px;
        margin-bottom: 20px;
    }
    .lk-about-label {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    .lk-about-text {
        font-size: 0.9375rem;
        line-height: 1.7;
    }
    .lk-about-highlights li {
        font-size: 0.875rem;
        padding-left: 22px;
    }
    .lk-about-highlights li::before {
        width: 10px;
        height: 10px;
        top: 13px;
    }
    
    .lk-strengths {
        padding: 60px 24px;
    }
    .lk-strengths-title {
        font-size: 1.75rem;
    }
    .lk-strengths-subtitle {
        font-size: 0.9375rem;
    }
    .lk-strengths-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lk-strength-item {
        padding: 28px 20px;
    }
    .lk-strength-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        border-radius: 10px;
        margin-bottom: 16px;
    }
    .lk-strength-item-title {
        font-size: 1.0625rem;
    }
    .lk-strength-num {
        font-size: 2rem;
    }
    .lk-strength-desc {
        font-size: 0.875rem;
    }
    .lk-categories {
        padding: 60px 24px;
    }
    .lk-categories-title {
        font-size: 1.75rem;
    }
    .lk-categories-subtitle {
        font-size: 0.9375rem;
    }
    .lk-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .lk-cat-carousel .lk-cat-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .lk-category-img-wrap {
        aspect-ratio: 6 / 7;
    }
    .lk-category-title {
        font-size: 1rem;
    }
    .lk-category-info {
        padding: 20px 16px;
    }
    .lk-blog {
        padding: 60px 24px;
    }
    .lk-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .lk-blog-title {
        font-size: 1.75rem;
    }
    .lk-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lk-blog-item-title {
        font-size: 1.0625rem;
    }
    .lk-blog-excerpt {
        font-size: 0.875rem;
    }
    .lk-blog-info {
        padding: 20px 16px;
    }
    .lk-cta-content-inner {
        padding: 32px 24px;
    }
    .lk-cta-title {
        font-size: 1.25rem;
    }
    .lk-cta-text {
        font-size: 0.8125rem;
    }
    .lk-btn-cta {
        padding: 10px 24px;
        font-size: 0.875rem;
    }
    .lk-footer-main {
        padding: 48px 24px 32px;
    }
    .lk-footer-inner {
        flex-direction: column;
        gap: 40px;
    }
    .lk-footer-left {
        max-width: none;
    }
    .lk-footer-nav {
        gap: 40px;
        flex-wrap: wrap;
    }
    .lk-footer-bottom {
        padding: 16px 24px;
    }
    .lk-footer-bottom-inner {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .lk-banner-title {
        font-size: 1.375rem;
        margin-bottom: 10px;
    }
    .lk-banner-divider {
        width: 40px;
        margin-bottom: 10px;
    }
    .lk-banner-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 10px;
    }
    .lk-banner-features li {
        font-size: 0.75rem;
    }
    .lk-insight {
        padding: 48px 20px 32px;
    }
    .lk-insight-title {
        font-size: 1.25rem;
    }
    .lk-insight-img {
        max-width: 120px;
    }
    .lk-insight-num {
        font-size: 1.75rem;
    }
    .lk-insight-unit {
        font-size: 0.8125rem;
    }
    .lk-about {
        padding: 48px 20px;
    }
    .lk-about-title {
        font-size: 1.25rem;
    }
    .lk-about-img-wrap {
        max-height: 200px;
    }
    .lk-about-highlights li {
        font-size: 0.8125rem;
    }
    .lk-btn-about {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    .lk-strengths {
        padding: 48px 20px;
    }
    .lk-strengths-title {
        font-size: 1.375rem;
    }
    .lk-categories {
        padding: 48px 20px;
    }
    .lk-categories-title {
        font-size: 1.375rem;
    }
    .lk-categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .lk-cat-carousel .lk-cat-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }
    .lk-category-img-wrap {
        aspect-ratio: 6 / 7;
    }
    .lk-blog {
        padding: 48px 20px;
    }
    .lk-blog-title {
        font-size: 1.375rem;
    }
    .lk-cta-img {
        height: 180px;
    }
    .lk-cta-content-inner {
        padding: 28px 20px;
    }
    .lk-cta-title {
        font-size: 1.125rem;
    }
    .lk-footer-slogan {
        font-size: 2.25rem;
    }
    .lk-footer-main {
        padding: 60px 24px 40px;
    }
    .lk-footer-nav {
        flex-direction: column;
        gap: 30px;
    }
    .lk-footer-bottom {
        padding: 24px 20px;
    }
    
    /* About Page Mobile */
    .lk-page-banner {
        padding: 120px 0 60px;
    }
    .lk-page-title {
        font-size: 2.25rem;
    }
    .lk-section {
        padding: 60px 20px;
    }
    .lk-heading {
        font-size: 1.75rem;
    }
    .lk-global-map {
        width: 200px;
        height: 200px;
        font-size: 100px;
    }
}


/* ===== CONTACT US PAGE STYLES ===== */
.lk-contact-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.lk-contact-info {
    flex: 1;
}
.lk-contact-desc {
    font-size: 1.0625rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    margin-top: 20px;
}
.lk-contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.lk-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.lk-contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.lk-contact-item:hover .lk-contact-icon {
    background: var(--lk-green);
    color: #fff;
    transform: translateY(-3px);
}
.lk-contact-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    margin-bottom: 5px;
}
.lk-contact-text p, .lk-contact-text a {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.lk-contact-text a:hover {
    color: var(--lk-green);
}

.lk-contact-form-wrap {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.lk-contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    margin-bottom: 30px;
}
.lk-form-row {
    display: flex;
    gap: 20px;
}
.lk-form-row .lk-form-group {
    flex: 1;
}
.lk-form-group {
    margin-bottom: 20px;
}
.lk-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}
.lk-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: inherit;
}
.lk-form-control:focus {
    outline: none;
    border-color: var(--lk-green);
    box-shadow: 0 0 0 3px rgba(48,152,57,0.1);
}
textarea.lk-form-control {
    resize: vertical;
}
.lk-btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

@media (max-width: 992px) {
    .lk-contact-inner {
        flex-direction: column;
    }
    .lk-contact-form-wrap {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .lk-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.lk-captcha-row {
    display: flex;
    gap: 15px;
    align-items: center;
}
.lk-captcha-input {
    flex: 1;
}
.lk-captcha-img {
    height: 48px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.lk-captcha-img:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* ===== FAQS PAGE STYLES ===== */

.lk-faqs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 992px) {
    .lk-faqs-wrapper {
        grid-template-columns: 1fr;
    }
}

.lk-faq-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.lk-faq-item.active {
    border-color: rgba(48,152,57,0.3);
    box-shadow: 0 10px 30px rgba(48,152,57,0.1);
}
.lk-faq-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}
.lk-faq-header:hover {
    background: #fcfcfc;
}
.lk-faq-q-icon {
    width: 36px;
    height: 36px;
    background: rgba(48,152,57,0.1);
    color: var(--lk-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-right: 15px;
}
.lk-faq-item.active .lk-faq-q-icon {
    background: var(--lk-green);
    color: #fff;
}
.lk-faq-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lk-charcoal);
    margin: 0;
    line-height: 1.5;
}
.lk-faq-title-zh {
    display: block;
    font-size: 0.9375rem;
    color: #888;
    font-weight: 400;
    margin-top: 4px;
}
.lk-faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.25rem;
    transition: transform 0.3s ease, color 0.3s ease;
}
.lk-faq-item.active .lk-faq-toggle {
    transform: rotate(180deg);
    color: var(--lk-green);
}
.lk-faq-body {
    display: none;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}
.lk-faq-answer {
    padding: 25px;
}
.lk-faq-answer p {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 1rem;
}
.lk-faq-answer p:last-child {
    margin-bottom: 0;
}
.lk-faq-en {
    color: #444;
}
.lk-faq-zh {
    color: #666;
    font-size: 0.9375rem;
}
.lk-faq-answer strong {
    color: var(--lk-green);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .lk-faq-header {
        padding: 15px;
    }
    .lk-faq-title {
        font-size: 1rem;
    }
    .lk-faq-title-zh {
        font-size: 0.875rem;
    }
    .lk-faq-answer {
        padding: 15px;
    }
}



/* ==========================================================================
   NEWS LIST PAGE STYLES
   ========================================================================== */
.lk-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.lk-news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lk-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.lk-news-img {
    position: relative;
    padding-top: 60%; /* 5:3 Aspect ratio */
    overflow: hidden;
    background: #eee;
}
.lk-news-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.lk-news-card:hover .lk-news-img img {
    transform: scale(1.05);
}
.lk-news-content {
    padding: 25px;
}
.lk-news-meta {
    display: flex;
    gap: 15px;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 15px;
}
.lk-news-meta i {
    color: var(--lk-green);
    margin-right: 5px;
}
.lk-news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.lk-news-title a {
    color: var(--lk-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-news-title a:hover {
    color: var(--lk-green);
}
.lk-news-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-news-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lk-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}
.lk-news-more:hover {
    gap: 12px;
}

/* Pagination */
.lk-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 50px;
}
.lk-page-btn, .page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.lk-page-btn:hover, .page-num:hover, .page-num-current {
    background: var(--lk-green);
    border-color: var(--lk-green);
    color: #fff;
}

/* ==========================================================================
   ARTICLE DETAIL PAGE STYLES
   ========================================================================== */
.lk-page-banner-sm {
    padding: 200px 0 100px;
}
.lk-article-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    margin-top: -80px; /* Overlap banner slightly */
    position: relative;
    z-index: 5;
}
.lk-article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}
.lk-article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 20px;
    line-height: 1.3;
}
.lk-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
    font-size: 0.9375rem;
}
.lk-article-meta i {
    color: var(--lk-green);
    margin-right: 6px;
}
.lk-article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}
.lk-article-body p {
    margin-bottom: 8px;
}
.lk-article-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}
.lk-article-body h2, .lk-article-body h3, .lk-article-body h4 {
    color: var(--lk-charcoal);
    margin: 40px 0 20px;
    font-weight: 600;
}
.lk-article-body ul, .lk-article-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.lk-article-body li {
    margin-bottom: 10px;
}
.lk-article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}
.lk-article-nav {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.lk-nav-prev, .lk-nav-next {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.lk-nav-next {
    text-align: right;
}
.lk-nav-label {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 5px;
}
.lk-nav-prev a, .lk-nav-next a {
    color: var(--lk-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.lk-nav-prev a:hover, .lk-nav-next a:hover {
    color: var(--lk-charcoal);
}

@media (max-width: 992px) {
    .lk-news-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-article-wrapper { padding: 40px 30px; }
}

@media (max-width: 768px) {
    .lk-news-grid { grid-template-columns: 1fr; }
    .lk-article-wrapper { padding: 30px 20px; margin-top: -40px; }
    .lk-article-title { font-size: 1.75rem; }
    .lk-article-nav { flex-direction: column; gap: 20px; }
    .lk-nav-next { text-align: left; }
}



/* ==========================================================================
   SUSTAINABILITY PAGE STYLES
   ========================================================================== */
.lk-banner-large {
    padding: 240px 0 140px;
}
.lk-sustain-vision {
    padding: 100px 0;
}
.lk-vision-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}
.lk-vision-text {
    flex: 1;
}
.lk-vision-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--lk-green);
    margin-bottom: 25px;
    line-height: 1.6;
}
.lk-vision-desc {
    font-size: 1.0625rem;
    color: #666;
    line-height: 1.8;
}
.lk-vision-image {
    flex: 1;
    position: relative;
}
.lk-vision-img-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.lk-vision-img-inner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}
.lk-vision-img-inner:hover img {
    transform: scale(1.05);
}
.lk-vision-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 25px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}
.lk-vision-badge i {
    font-size: 2.5rem;
    color: var(--lk-green);
}
.lk-vision-badge span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lk-charcoal);
}

.lk-sustain-pillars {
    padding: 100px 0;
}
.lk-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.lk-pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.lk-pillar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--lk-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}
.lk-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.lk-pillar-card:hover::before {
    transform: scaleX(1);
}
.lk-pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(48, 152, 57, 0.1);
    color: var(--lk-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.lk-pillar-card:hover .lk-pillar-icon {
    background: var(--lk-green);
    color: #fff;
}
.lk-pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 15px;
}
.lk-pillar-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.lk-sustain-metrics {
    padding: 80px 0;
}
.lk-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.lk-metric-item {
    padding: 20px;
}
.lk-metric-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--lk-green);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}
.lk-metric-label {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .lk-vision-wrapper { flex-direction: column; }
    .lk-vision-badge { bottom: 20px; left: 20px; }
    .lk-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .lk-pillars-grid { grid-template-columns: 1fr; }
    .lk-metrics-grid { grid-template-columns: 1fr; }
    .lk-metric-num { font-size: 2.5rem; }
}



/* ==========================================================================
   PRODUCTS PAGE STYLES
   ========================================================================== */
.lk-prod-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.lk-filter-btn {
    padding: 8px 24px;
    border-radius: 30px;
    background: #f8f9fa;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.lk-filter-btn:hover, .lk-filter-btn.active {
    background: var(--lk-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(48, 152, 57, 0.3);
}

.lk-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.lk-prod-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lk-prod-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.lk-prod-img {
    position: relative;
    padding-top: 100%; /* 4:3 Aspect ratio */
    overflow: hidden;
    background: #f4f4f4;
}
.lk-prod-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.lk-prod-card:hover .lk-prod-img img {
    transform: scale(1.08);
}
.lk-prod-hover-action {
    position: absolute;
    bottom: 20px; right: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.lk-prod-card:hover .lk-prod-hover-action {
    opacity: 1;
    transform: translateY(0);
}
.lk-btn-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--lk-green);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(48, 152, 57, 0.4);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.lk-btn-circle:hover {
    transform: scale(1.1);
    color: #fff;
}
.lk-prod-content {
    padding: 25px;
}
.lk-prod-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    min-height: 48px;
}
.lk-prod-title a {
    color: var(--lk-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}
.lk-prod-title a:hover {
    color: var(--lk-green);
}
.lk-prod-desc {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}

/* Product Details */
.lk-product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.lk-product-main-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    background: #f8f9fa;
    position: relative;
    padding-top: 100%;
}
.lk-product-main-img img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.lk-product-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin: 15px 0 20px;
    line-height: 1.3;
}
.lk-product-short-desc {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.lk-product-meta-list {
    background: #f8f9fa;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 35px;
}
.lk-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.9375rem;
}
.lk-meta-item:last-child {
    margin-bottom: 0;
}
.lk-meta-item i {
    color: var(--lk-green);
    font-size: 1.125rem;
}
.lk-product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lk-product-details-content {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
    margin-bottom: 50px;
}
.lk-details-header {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.lk-details-header h2 {
    font-size: 1.5rem;
    color: var(--lk-charcoal);
    font-weight: 700;
    margin: 0;
}

@media (max-width: 992px) {
    .lk-prod-grid { grid-template-columns: repeat(2, 1fr); }
    .lk-product-hero { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
    .lk-prod-grid { grid-template-columns: 1fr; }
    .lk-product-details-content { padding: 30px 20px; }
}



/* ==========================================================================
   COOPERATION PROCESS TIMELINE
   ========================================================================== */
.lk-process {
    padding: 100px 0;
}
.lk-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}
.lk-process-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #e9ecef;
    border-radius: 2px;
}
.lk-process-step {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lk-process-step:last-child {
    margin-bottom: 0;
}
.lk-process-step:nth-child(odd) {
    flex-direction: row-reverse;
}
.lk-process-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: #fff;
    border: 4px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a0aab2;
    z-index: 2;
    transition: all 0.4s ease;
}
.lk-process-step:hover .lk-process-icon,
.lk-process-step.active .lk-process-icon {
    background: var(--lk-green);
    border-color: rgba(48, 152, 57, 0.2);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(48, 152, 57, 0.1);
}
.lk-process-content {
    width: calc(50% - 60px);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    transition: all 0.3s ease;
}
.lk-process-step:nth-child(odd) .lk-process-content {
    text-align: right;
}
.lk-process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
}
.lk-process-step:nth-child(even) .lk-process-content::before {
    right: -20px;
    border-left-color: #fff;
}
.lk-process-step:nth-child(odd) .lk-process-content::before {
    left: -20px;
    border-right-color: #fff;
}
.lk-process-step:hover .lk-process-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.lk-process-num {
    font-size: 3rem;
    font-weight: 800;
    color: #f4f6f8;
    position: absolute;
    top: -15px;
    line-height: 1;
    z-index: 0;
    transition: color 0.3s ease;
}
.lk-process-step:nth-child(even) .lk-process-num { right: 20px; }
.lk-process-step:nth-child(odd) .lk-process-num { left: 20px; }
.lk-process-step:hover .lk-process-num { color: rgba(48, 152, 57, 0.1); }

.lk-process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.lk-process-desc {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .lk-process-timeline::before { left: 30px; }
    .lk-process-step { flex-direction: column !important; align-items: flex-end; }
    .lk-process-icon { left: 30px; }
    .lk-process-content { width: calc(100% - 80px); text-align: left !important; }
    .lk-process-step:nth-child(even) .lk-process-content::before,
    .lk-process-step:nth-child(odd) .lk-process-content::before {
        left: -20px; right: auto; border-right-color: #fff; border-left-color: transparent;
    }
    .lk-process-step:nth-child(even) .lk-process-num,
    .lk-process-step:nth-child(odd) .lk-process-num { left: 20px; right: auto; }
}


.lk-product-specs {
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.lk-specs-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lk-charcoal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lk-specs-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--lk-green);
    border-radius: 2px;
}
.lk-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}
.lk-spec-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}
.lk-spec-item:hover {
    background: var(--lk-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(48, 152, 57, 0.2);
}
.lk-spec-label {
    display: block;
    font-size: 0.8125rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.lk-spec-value {
    display: block;
    font-size: 1.125rem;
    color: var(--lk-charcoal);
    font-weight: 700;
    transition: color 0.3s ease;
}
.lk-spec-item:hover .lk-spec-label,
.lk-spec-item:hover .lk-spec-value {
    color: #fff;
}
