/* ============================================================
   LANDING SOLUTION — Hero Section
   ============================================================ */

/* ----- Hero Wrapper ----- */
.ls-hero {
    /* background: linear-gradient(135deg, #2d3a4a 0%, #3d4f63 40%, #4a5e74 70%, #3a5068 100%); */
    background: linear-gradient(135deg, #0a3d2e 0%, #1a6b4e 50%, #23A455 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

/* Decorative blobs */
.ls-hero::before,
.ls-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}

.ls-hero::before {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #6b8fa8, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.ls-hero::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #90b4cc, transparent 70%);
    top: -60px;
    right: 5%;
}

/* ----- Inner flex row ----- */
.ls-hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* ----- Left column ----- */
.ls-hero-left {
    flex: 1 1 0;
    min-width: 0;
    color: #ffffff;
}

/* Title */
.ls-hero-title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.ls-hero-desc .number {
    font-size: 40px;
    text-align: center;
}

.ls-hero-desc .text-number {
    font-size: 12px;
    text-align: center;
}

/* Description */
.ls-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    max-width: 500px;
}

.ls-hero-desc .ck-content {
    font-size: 18px;
}

/* Feature badges row */
.ls-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
}

.ls-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.ls-badge-check {
    color: #f0a500;
    font-weight: 700;
}

/* Sub paragraph */
.ls-hero-sub {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    max-width: 500px;
}

/* CTA buttons */
.ls-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ls-btn {
    display: inline-block;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.ls-btn-primary {
    background-color: #008b46;
    color: #ffffff;
    border: 2px solid #008b46;
}

.ls-btn-primary:hover {
    background-color: #006f38;
    border-color: #006f38;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 139, 70, 0.35);
    transform: translateY(-1px);
}

.ls-btn-secondary {
    background-color: #f0a500;
    color: #ffffff;
    border: 2px solid #f0a500;
}

.ls-btn-secondary:hover {
    background-color: #d49200;
    border-color: #d49200;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(240, 165, 0, 0.35);
    transform: translateY(-1px);
}

/* ----- Right column (image) ----- */
.ls-hero-right {
    flex: 0 0 520px;
    max-width: 520px;
}

.ls-hero-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ls-hero-img-wrap:hover .ls-hero-img {
    transform: scale(1.03);
}

/* SVG Placeholder (shown when image is absent) */
.ls-hero-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 30px; */
}

.ls-hero-img-placeholder svg {
    width: 100%;
    max-width: 220px;
    opacity: 0.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet landscape */
@media (max-width: 1024px) {
    .ls-hero-right {
        flex: 0 0 380px;
        max-width: 380px;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .ls-hero {
        padding: 50px 0 45px;
        min-height: auto;
    }

    .ls-hero-inner {
        flex-direction: column;
        gap: 36px;
    }

    .ls-hero-left {
        text-align: center;
    }

    .ls-hero-desc,
    .ls-hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .ls-hero-badges {
        justify-content: center;
    }

    .ls-hero-actions {
        justify-content: center;
    }

    .ls-hero-right {
        flex: 0 0 100%;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .ls-hero {
        padding: 40px 0 36px;
    }

    .ls-hero-title {
        font-size: 24px;
    }

    .ls-hero-badges {
        gap: 10px;
    }

    .ls-badge {
        font-size: 12px;
    }

    .ls-btn {
        padding: 11px 20px;
        font-size: 13px;
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.ls-services {
    background-color: #f4f5f7;
    padding: 50px 0;
}

.ls-services.bg-white {
    background-color: #fff;
}

.ls-services.bg-white .ls-svc-card {
    background-color: #f5f5f5;
}

/* ============================================================
   SHARED SECTION HEAD STYLING
   ============================================================ */

.ls-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.ls-section-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

/* Orange accent line below title */
.ls-section-accent {
    display: inline-block;
    width: 44px;
    height: 3px;
    background-color: #f0a500;
    border-radius: 2px;
    margin: 0 auto;
}

/* ----- Cards Grid ----- */
.ls-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ----- Individual Card ----- */
.ls-svc-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 28px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ls-svc-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Green icon */
.ls-svc-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
}

.ls-svc-icon svg {
    width: 100%;
    height: 100%;
}

/* Card title */
.ls-svc-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Card description */
.ls-svc-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ----- Responsive: Services ----- */
@media (max-width: 900px) {
    .ls-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ls-services {
        padding: 50px 0 55px;
    }

    .ls-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ls-svc-card {
        padding: 24px 20px 22px;
    }

    .ls-svc-name {
        font-size: 16px;
    }
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */

.ls-benefits {
    background-color: #ffffff;
    padding: 60px 0;
}

/* Benefits Grid (2 Columns) */
.ls-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
    row-gap: 45px;
}

/* Benefit Flex Item */
.ls-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Icon Container */
.ls-benefit-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.ls-benefit-icon svg {
    width: 100%;
    height: 100%;
}

/* Benefit Text Content */
.ls-benefit-content {
    flex: 1 1 0;
    min-width: 0;
}

.ls-benefit-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ls-benefit-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #4f5e71;
    margin: 0;
}

/* ----- Responsive: Benefits ----- */
@media (max-width: 900px) {
    .ls-benefits-grid {
        column-gap: 30px;
        row-gap: 35px;
    }
}

@media (max-width: 768px) {
    .ls-benefits {
        padding: 55px 0 60px;
    }

    .ls-benefits-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .ls-benefit-item {
        gap: 16px;
    }

    .ls-benefit-item-title {
        font-size: 16px;
    }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */

.ls-process {
    background-color: #f4f5f7;
    padding: 60px 0;
}

.ls-process-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -24px auto 60px;
    font-size: 15px;
    line-height: 1.6;
    color: #4f5e71;
}

.ls-process-timeline {
    position: relative;
}

/* Horizontal green line connector */
.ls-process-line {
    position: absolute;
    top: 35px;
    /* Half of circle size (70px) */
    left: 10%;
    right: 10%;
    height: 1.5px;
    background-color: #008b46;
    z-index: 1;
}

.ls-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Individual Process Step */
.ls-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Step Circle Number */
.ls-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #008b46;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #008b46;
    margin-bottom: 24px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.ls-process-step:hover .ls-step-number {
    background-color: #008b46;
    color: #ffffff;
    transform: scale(1.05);
}

/* Step Header */
.ls-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 12px;
    /* Standardize alignment for titles */
}

/* Step Body */
.ls-step-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4f5e71;
    margin: 0;
}

/* ----- Responsive: Process ----- */
@media (max-width: 1024px) {
    .ls-process-line {
        display: none;
        /* Hide horizontal connector on mobile/tablets */
    }

    .ls-process-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 600px;
        margin: 0 auto;
    }

    .ls-process-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }

    .ls-step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ls-step-title {
        min-height: auto;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .ls-process {
        padding: 55px 0 60px;
    }

    .ls-process-subtitle {
        margin-top: -30px;
        margin-bottom: 40px;
        font-size: 14px;
    }

    .ls-step-number {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .ls-step-title {
        font-size: 16px;
    }

    .ls-step-desc {
        font-size: 13px;
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.ls-cta {
    /* background: linear-gradient(135deg, #2d3a4a 0%, #3d4f63 50%, #2a3848 100%); */
    background: linear-gradient(135deg, #0a3d2e 0%, #1a6b4e 50%, #23A455 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Accent shapes for CTA background */
.ls-cta::before,
.ls-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    pointer-events: none;
}

.ls-cta::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #6b8fa8, transparent 70%);
    bottom: -60px;
    left: -40px;
}

.ls-cta::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #90b4cc, transparent 70%);
    top: -50px;
    right: -20px;
}

/* Override section head colors for dark background */
.ls-cta .ls-section-title {
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(24px, 3.5vw, 36px);
}

.ls-cta .ls-section-accent {
    background-color: #f0a500;
}

.ls-cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: -24px auto 35px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Button container */
.ls-cta-btn-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.ls-btn-cta {
    background-color: #f0a500;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.25);
    border: 2px solid #f0a500;
}

.ls-btn-cta:hover {
    background-color: #d49200;
    border-color: #d49200;
    box-shadow: 0 6px 20px rgba(240, 165, 0, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
}

@media (max-width: 576px) {
    .ls-cta {
        padding: 60px 0;
    }

    .ls-cta-subtitle {
        margin-top: -30px;
        margin-bottom: 25px;
        font-size: 13.5px;
    }

    .ls-btn-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */

.ls-projects {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.ls-projects-subtitle {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 40px;
    font-size: 15px;
    line-height: 1.65;
    color: #4f5e71;
}

/* Tabs / Filters */
.ls-projects-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.ls-tab-btn {
    background-color: #ffffff;
    border: 1.5px solid #008b46;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ls-tab-btn:hover {
    background-color: rgba(0, 139, 70, 0.05);
}

.ls-tab-btn.active {
    background-color: #008b46;
    color: #ffffff;
}

/* Grid Layout */
.ls-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card Styling */
.ls-project-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f5;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ls-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Card Image */
.ls-project-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f1f3f5;
}

.ls-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ls-project-card:hover .ls-project-image {
    transform: scale(1.04);
}

/* Orange badge */
.ls-project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #f0a500;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(240, 165, 0, 0.2);
}

/* Card Content */
.ls-project-content {
    padding: 24px 28px 28px;
}

/* Location style */
.ls-project-location {
    color: #008b46;
    font-size: 13.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ls-loc-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Title style */
.ls-project-title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Key Specifications Grid */
.ls-project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
    margin-bottom: 20px;
}

.ls-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ls-spec-item:not(:last-child) {
    border-right: 1px solid #eef0f3;
}

.ls-spec-value {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    color: #008b46;
    line-height: 1.2;
}

.ls-spec-label {
    font-size: 12px;
    color: #8a94a6;
    font-weight: 600;
    text-transform: capitalize;
}

/* Project Description */
.ls-project-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4f5e71;
    margin-bottom: 24px;
    min-height: 46px;
    /* Keep heights consistent on similar cards */
}

/* Project Details Button */
.ls-project-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #008b46;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid #008b46;
}

.ls-project-btn:hover {
    background-color: #007038;
    border-color: #007038;
    box-shadow: 0 6px 16px rgba(0, 139, 70, 0.25);
    color: #ffffff;
}

/* Micro-animations */
@keyframes lsFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

.ls-project-card.fade-in {
    animation: lsFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* ============================================================
   RESPONSIVE: PROJECTS SECTION
   ============================================================ */

@media (max-width: 992px) {
    .ls-projects {
        padding: 60px 0;
    }

    .ls-projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 580px;
        margin: 0 auto;
    }

    .ls-project-content {
        padding: 20px 24px 24px;
    }

    .ls-project-desc {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .ls-projects {
        padding: 50px 0;
    }

    .ls-projects-subtitle {
        margin-top: -24px;
        margin-bottom: 30px;
        font-size: 13.5px;
    }

    .ls-projects-tabs {
        margin-bottom: 36px;
        gap: 8px;
    }

    .ls-tab-btn {
        font-size: 13px;
        padding: 8px 18px;
    }

    .ls-project-title {
        font-size: 18px;
    }

    .ls-spec-value {
        font-size: 16px;
    }
}

.ls-footprint {
    padding: 40px 0;
}

/* ============================================================
   NEW ENERGY BENEFITS SECTION
   ============================================================ */
.ls-new-benefits {
    background-color: #ffffff;
    padding: 70px 0 60px;
}

.ls-new-benefits-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.ls-new-benefits-accent {
    width: 60px;
    height: 4px;
    background-color: #f0a500;
    border-radius: 2px;
    flex-shrink: 0;
}

.ls-new-benefits-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.25;
}

.ls-new-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 40px;
}

.ls-nb-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ls-nb-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-nb-icon svg {
    width: 100%;
    height: 100%;
    color: #10b981;
    /* Premium Emerald Green */
    display: block;
}

.ls-nb-content {
    flex: 1 1 0;
    min-width: 0;
}

.ls-nb-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 8px;
    margin-top: 0;
}

.ls-nb-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4f5e71;
    margin: 0;
}

/* Responsive: New Benefits */
@media (max-width: 991px) {
    .ls-new-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        row-gap: 35px;
    }
}

@media (max-width: 768px) {
    .ls-new-benefits {
        padding: 50px 0 40px;
    }

    .ls-new-benefits-head {
        margin-bottom: 35px;
        gap: 12px;
    }

    .ls-new-benefits-accent {
        width: 45px;
        height: 3.5px;
    }

    .ls-new-benefits-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .ls-nb-item-title {
        font-size: 16px;
    }
}
