 /* ===== WHY CHOOSE SECTION ===== */
        .why-choose-section {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 4rem auto;
            padding: 0 2rem;
            
        }

        .why-choose-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            color: var(--eco-green);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .why-choose-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #056f37, #2d8f5f);
            border-radius: 2px;
        }

        .why-choose-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .why-choose-item {
            display: flex;
            flex-direction: column;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 4px solid #056f37;
            position: relative;
            overflow: hidden;
            min-height: 220px;
        }

        .why-choose-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #056f37, #2d8f5f);
        }

        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .why-choose-item:nth-child(1) {
            border-left-color: #4ba1f8;
        }

        .why-choose-item:nth-child(2) {
            border-left-color: #2d8f5f;
        }

        .why-choose-item:nth-child(3) {
            border-left-color: #034a24;
        }

        .why-choose-item:nth-child(1)::before {
            background: linear-gradient(90deg, #4ba1f8, #056f37);
        }

        .why-choose-item:nth-child(2)::before {
            background: linear-gradient(90deg, #2d8f5f, #034a24);
        }

        .why-choose-item:nth-child(3)::before {
            background: linear-gradient(90deg, #034a24, #056f37);
        }

        .why-choose-content {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .why-icon {
            font-size: 2.5rem;
            margin-right: 1.5rem;
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #e6f4ec;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }

        .why-choose-item:nth-child(1) .why-icon {
            background: rgba(75, 161, 248, 0.1);
        }

        .why-choose-item:nth-child(2) .why-icon {
            background: rgba(45, 143, 95, 0.1);
        }

        .why-choose-item:nth-child(3) .why-icon {
            background: rgba(3, 74, 36, 0.1);
        }

        .why-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #1a1a1a;
            font-weight: 500;
            flex: 1;
            margin-top: 0.5rem;
        }

        .why-text strong {
            color: #056f37;
            font-weight: 700;
        }

        .why-choose-item:nth-child(1) .why-text strong {
            color: #4ba1f8;
        }

        .why-choose-item:nth-child(2) .why-text strong {
            color: #2d8f5f;
        }

        .why-choose-item:nth-child(3) .why-text strong {
            color: #034a24;
        }

        .why-learn-more {
            align-self: flex-end;
            margin-top: auto;
        }

        .learn-more-btn {
            background: linear-gradient(135deg, #056f37 0%, #2d8f5f 100%);
            color: white;
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(5, 111, 55, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .why-choose-item:nth-child(1) .learn-more-btn {
            background: linear-gradient(135deg, #4ba1f8 0%, #056f37 100%);
            box-shadow: 0 4px 15px rgba(75, 161, 248, 0.2);
        }

        .why-choose-item:nth-child(2) .learn-more-btn {
            background: linear-gradient(135deg, #2d8f5f 0%, #034a24 100%);
            box-shadow: 0 4px 15px rgba(45, 143, 95, 0.2);
        }

        .why-choose-item:nth-child(3) .learn-more-btn {
            background: linear-gradient(135deg, #034a24 0%, #056f37 100%);
            box-shadow: 0 4px 15px rgba(3, 74, 36, 0.2);
        }

        .learn-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(5, 111, 55, 0.3);
        }

        .why-choose-item:nth-child(1) .learn-more-btn:hover {
            box-shadow: 0 8px 25px rgba(75, 161, 248, 0.3);
        }

        .why-choose-item:nth-child(2) .learn-more-btn:hover {
            box-shadow: 0 8px 25px rgba(45, 143, 95, 0.3);
        }

        .why-choose-item:nth-child(3) .learn-more-btn:hover {
            box-shadow: 0 8px 25px rgba(3, 74, 36, 0.3);
        }

        /* Modal Styles */
        .why-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .why-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .why-modal-content {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: all 0.3s ease;
        }

        .why-modal-overlay.active .why-modal-content {
            transform: scale(1);
        }

        .why-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #e6f4ec;
            padding-bottom: 1rem;
        }

        .why-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #056f37;
        }

        .why-modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666666;
            padding: 0.5rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .why-modal-close:hover {
            background: #e6f4ec;
            color: #056f37;
        }

        .why-modal-body {
            color: #1a1a1a;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 0 1rem;
            }

            .why-choose-list {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .why-choose-item {
                padding: 1.5rem;
                min-height: 180px;
            }

            .why-icon {
                font-size: 2rem;
                width: 50px;
                height: 50px;
                margin-right: 1rem;
            }

            .why-text {
                font-size: 1rem;
            }

            .why-choose-title {
                margin-bottom: 2rem;
            }

            .why-choose-title::after {
                width: 80px;
            }

            .why-modal-content {
                margin: 1rem;
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .why-choose-item {
                min-height: 160px;
            }

            .why-choose-content {
                flex-direction: column;
                text-align: center;
            }

            .why-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }

            .why-text {
                margin-top: 0;
            }
        }
        /* ===== SCOPED STYLES FOR WATER SAVINGS SECTION ===== */
        .water-savings-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: transparent;
            padding: 6rem 0 4rem 0; /* Added padding above */
            padding-bottom: 60px;
        }

        .water-savings-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 0;
            padding-bottom: 0;
            padding-right: 2rem;
            padding-left: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: stretch;
        }

        /* ===== LEFT CONTENT ===== */
        .water-savings-content {
            color: var(--text-dark);
        }

        .section-main-title {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--eco-green);
            margin-bottom: 3rem;
            line-height: 1.1;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .section-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--eco-green), var(--eco-accent));
            border-radius: 2px;
        }

        .water-savings-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--eco-green);
            margin-bottom: 3rem;
            line-height: 1.2;
            text-align: center;
            white-space: nowrap;
        }

        .water-savings-statement {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .water-savings-calculator {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(5, 111, 55, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .calculator-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--eco-green);
            margin-bottom: 1rem;
            text-align: center;
        }

        .calculator-input-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .calculator-description {
            margin-bottom: 1.5rem;
            padding: 0.8rem 1rem;
            background: rgba(75, 161, 248, 0.05);
            border-radius: 8px;
            border-left: 3px solid #4ba1f8;
        }

        .description-text {
            font-size: 0.9rem;
            color: #666666;
            font-style: italic;
            margin: 0;
            line-height: 1.4;
        }

        .calculator-label {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
            min-width: 200px;
        }

        .calculator-input {
            padding: 0.8rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1.1rem;
            background: white;
            color: var(--text-dark);
            min-width: 120px;
            transition: all 0.3s ease;
        }

        .calculator-input:focus {
            outline: none;
            border-color: var(--eco-green);
            box-shadow: 0 0 0 3px rgba(5, 111, 55, 0.1);
        }

        .calculator-input::placeholder {
            color: var(--text-light);
        }

        .calculator-results {
            display: grid;
            gap: 0.8rem;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem;
            background: #e6f4ec;
            border-radius: 8px;
            border-left: 4px solid #056f37;
        }

        .result-label {
            font-size: 1rem;
            color: #1a1a1a;
            font-weight: 500;
        }

        .result-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #056f37;
        }

        .household-context {
            background: rgba(75, 161, 248, 0.1);
            padding: 0.8rem;
            border-radius: 8px;
            margin-top: 0.8rem;
            border-left: 4px solid #4ba1f8;
        }

        .household-context-text {
            font-size: 0.9rem;
            color: #666666;
            margin-bottom: 0.5rem;
        }

        .household-comparison {
            font-size: 1rem;
            font-weight: 400;
            color: #4ba1f8;
            margin-bottom: 0.5rem;
        }

        .household-comparison:last-child {
            margin-bottom: 0;
        }

        .household-comparison strong {
            font-weight: 700;
            color: #056f37;
        }

        /* ===== RIGHT VISUAL - BAR COMPARISON ===== */
        .water-savings-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(5, 111, 55, 0.1);
            height: 100%;
        }

        .visual-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--eco-green);
            margin-bottom: 1rem;
            text-align: center;
        }

        .comparison-bars {
            display: flex;
            align-items: end;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .bar-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
        }

        .bar-wrapper {
            width: 60px;
            height: 200px;
            background: #f5f5f5;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            border: 2px solid #e0e0e0;
            margin-bottom: 1rem;
        }

        .bar-fill {
            position: absolute;
            bottom: 0;
            width: 100%;
            border-radius: 8px;
            transition: all 2s ease-in-out;
        }

        .bar-fill.traditional {
            height: 100%;
            background: linear-gradient(180deg, #ff6b6b 0%, #d63031 100%);
        }

        .bar-fill.eco {
            height: 8%;
            background: linear-gradient(180deg, #2d8f5f 0%, #056f37 100%);
        }

        .bar-value {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .bar-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            line-height: 1.3;
        }

        .savings-highlight {
            background: var(--eco-light);
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid var(--eco-green);
            text-align: center;
            width: 100%;
        }

        .savings-percentage {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--eco-green);
            margin-bottom: 0.3rem;
        }

        .savings-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .comparison-bars {
                gap: 2rem;
            }
            
            .bar-container {
                min-width: 100px;
            }
        }

        @media (max-width: 768px) {
            .section-main-title {
                font-size: clamp(2.5rem, 8vw, 4rem);
                margin-bottom: 2rem;
                letter-spacing: 1px;
            }

            .section-main-title::after {
                width: 60px;
                height: 3px;
            }

            .water-savings-title {
                font-size: clamp(1.5rem, 4vw, 2rem);
                white-space: normal;
                text-align: center;
            }

            .water-savings-section {
                padding: 4rem 0 2rem 0;
            }

            .water-savings-container {
                grid-template-columns: 1fr;
                gap: 4rem;
                padding-top: 0;
                padding-bottom: 0;
                padding-right: 1rem;
                padding-left: 1rem;
            }

            .calculator-input-group {
                flex-direction: column;
                align-items: stretch;
            }

            .calculator-label {
                min-width: auto;
                text-align: center;
            }

            .comparison-bars {
                gap: 1.5rem;
            }

            .bar-container {
                min-width: 80px;
            }

            .bar-wrapper {
                width: 50px;
                height: 180px;
            }

            .result-item {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .water-savings-container {
                gap: 3rem;
                padding-top: 0;
                padding-bottom: 0;
                padding-right: 1rem;
                padding-left: 1rem;
            }

            .water-savings-calculator,
            .water-savings-visual {
                padding: 1.5rem;
            }

            .calculator-input-group {
                gap: 1rem;
            }

            .bar-wrapper {
                height: 200px;
            }
        }