/* ============================================================
   LANDING COMMERCIAL & INDUSTRIAL — CSS STYLING
   ============================================================ */

.lci-hero-section {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

/* Left Column Styling */
.lci-hero-left {
    width: 50%;
    background: linear-gradient(180deg, #0284c7 0%, #38bdf8 65%, #bae6fd 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
}

.lci-bg-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: clamp(80px, 16vw, 240px);
    font-weight: 900;
    color: #ffffff;
    opacity: 0.12;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
}

.lci-left-header {
    position: relative;
    z-index: 10;
}

.lci-left-title {
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.lci-left-subtitle {
    font-size: clamp(16px, 1.8vw, 24px);
    font-weight: 700;
    color: #e0f2fe;
    margin: 0;
    text-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
}

.lci-cabinet-container {
    flex: 1;
    display: flex;
    position: relative;
    z-index: 5;
}

.lci-cabinet-svg {
    width: 90%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.18));
}

/* Right Column Styling */
.lci-hero-right {
    width: 50%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    box-sizing: border-box;
}

.lci-right-content {
    max-width: 480px;
    width: 100%;
}

.lci-right-tagline {
    font-size: clamp(14px, 1.5vw, 17px);
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.lci-right-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    color: #1b9d4a;
    /* Brand green */
    line-height: 1.35;
    margin: 0 0 45px 0;
}

.lci-cta-wrapper {
    display: flex;
}

.lci-contact-btn {
    display: inline-block;
    border: 1px solid #1b9d4a;
    background-color: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 45px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.lci-contact-btn:hover {
    background-color: #1b9d4a;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(27, 157, 74, 0.4);
    transform: translateY(-2px);
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .lci-hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .lci-hero-left,
    .lci-hero-right {
        width: 100%;
    }

    .lci-hero-left {
        min-height: 60vh;
    }

    .lci-cabinet-svg {
        max-width: 220px;
    }

    .lci-hero-right {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .lci-right-content {
        max-width: 100%;
        text-align: center;
    }

    .lci-cta-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lci-hero-left {
        min-height: 50vh;
    }

    .lci-left-title {
        font-size: 20px;
    }

    .lci-left-subtitle {
        font-size: 15px;
    }

    .lci-cabinet-svg {
        max-width: 180px;
    }

    .lci-hero-right {
        padding: 40px 15px 50px 15px;
    }

    .lci-right-title {
        margin-bottom: 35px;
    }

    .lci-contact-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* ============================================================
   POWER ENERGY FULLY EVOLVED SECTION
   ============================================================ */

.lci-evolved-section {
    background-color: #dbe2e9;
    padding: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.lci-evolved-container {
    width: 100%;
    max-width: 1200px;
    background-color: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lci-evolved-header {
    background-color: #1b9d4a;
    /* Matches brand green */
    color: #ffffff;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    text-align: center;
    padding: 18px 24px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.lci-evolved-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
}

/* Left Side: Text and Diagram */
.lci-evolved-left {
    width: 55%;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.lci-evolved-text-content {
    margin-bottom: 35px;
}

.lci-evolved-text-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    /* Slate 600 */
    margin: 0 0 20px 0;
}

.lci-evolved-text-content p:last-child {
    margin-bottom: 0;
}

/* Diagram Styling */
.lci-diagram-card {
    background-color: #eceff1;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lci-diagram-svg-wrapper {
    width: 100%;
    max-width: 580px;
    height: auto;
}

/* Right Side: Product Showcase */
.lci-evolved-right {
    width: 45%;
    background-color: #8f9296;
    /* Seamless blend with image background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

.lci-product-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lci-product-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

/* ============================================================
   RESPONSIVE DESIGN FOR EVOLVED SECTION
   ============================================================ */

@media (max-width: 991px) {
    .lci-evolved-section {
        padding: 40px 15px;
    }

    .lci-evolved-grid {
        flex-direction: column;
    }

    .lci-evolved-left {
        width: 100%;
        padding: 40px 30px;
    }

    .lci-evolved-right {
        width: 100%;
        padding: 50px 30px;
    }

    .lci-product-image {
        max-width: 360px;
    }
}

@media (max-width: 576px) {
    .lci-evolved-left {
        padding: 30px 15px;
    }

    .lci-evolved-text-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .lci-diagram-card {
        padding: 12px;
    }

    .lci-evolved-right {
        padding: 40px 15px;
    }

    .lci-product-image {
        max-width: 280px;
    }
}

/* ============================================================
   ULTIMATE TEMPERATURE CONTROL SECTION
   ============================================================ */
.lci-temp-section {
    margin-bottom: 20px;
}


/* Green Header Bar */
.lci-temp-header {
    background-color: #1b9d4a;
    padding: 18px 40px;
}

.lci-temp-header-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Body layout */
.lci-temp-body {
    display: flex;
    flex-direction: row;
    gap: 40px;
    box-sizing: border-box;
    max-width: 1280px;
    margin: 0 auto;
}

/* LEFT: subtitle + cards grid */
.lci-temp-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
}

.lci-temp-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 24px 0;
    letter-spacing: 0.2px;
}

.lci-temp-subtitle strong {
    color: #1b9d4a;
}

/* 2×2 cards grid */
.lci-temp-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

/* Individual feature card */
.lci-temp-card {
    background-color: #ffffff;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 28px 22px 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lci-temp-card:hover {
    box-shadow: 0 8px 24px rgba(27, 157, 74, 0.12);
    transform: translateY(-3px);
}

.lci-temp-card-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background-color: #f0faf4;
    border-radius: 50%;
}

.lci-temp-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.lci-temp-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* RIGHT: product image */
.lci-temp-right {
    flex: 0 0 42%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lci-temp-product-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

/* ============================================================
   RESPONSIVE — TEMP SECTION
   ============================================================ */

@media (max-width: 1100px) {
    .lci-temp-body {
        padding: 32px 24px;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .lci-temp-body {
        flex-direction: column;
        padding: 30px 20px;
    }

    .lci-temp-left {
        flex: none;
        width: 100%;
    }

    .lci-temp-right {
        flex: none;
        width: 100%;
    }

    .lci-temp-product-img {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .lci-temp-header {
        padding: 14px 20px;
    }

    .lci-temp-body {
        padding: 20px 15px;
        gap: 20px;
    }

    .lci-temp-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lci-temp-card {
        padding: 22px 18px;
    }

    .lci-temp-card-title {
        font-size: 15px;
    }

    .lci-temp-product-img {
        max-width: 340px;
    }
}
