html,
body {
    overflow: auto;
    background-color: #f8f9fa;
}

:root {
    --calc-blue: #1c2b52;
    --calc-green: #27ae60;
    --calc-bg-light: #e8f5e9;
    --calc-border: #81c784;
    --text-dark: #1c2b52;
}

.calculator-section {
    padding: 100px 20px 60px;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-nav {
    width: 100%;
    max-width: 1000px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb-nav i {
    margin: 0 5px;
    font-size: 12px;
}

.main-header-green {
    color: var(--calc-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.calculator-main-container {
    max-width: 1000px;
    width: 100%;
    background-color: var(--calc-bg-light);
    border: 1px solid var(--calc-border);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.calc-step-section {
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.calc-step-section.border-top {
    border-top: 1px solid #ccc;
    padding-top: 30px;
}

.step-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--calc-blue);
    margin-bottom: 20px;
}

.option-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .option-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .or-text {
        display: none;
    }
}

.option-item {
    background: #ccc;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    flex: 1;
    min-height: 70px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.option-item.active {
    background: var(--calc-green);
}

.custom-checkbox {
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 14px;
    visibility: hidden;
}

.option-item.active .custom-checkbox {
    visibility: visible;
}

.or-text {
    font-size: 14px;
    color: var(--calc-blue);
    font-weight: bold;
}

.dynamic-input-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dynamic-input-row input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
    font-size: 16px;
    background: #fff;
    color: var(--calc-blue);
}

.dynamic-input-row span {
    font-size: 16px;
    color: #333;
}

.input-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .input-row-grid {
        grid-template-columns: 1fr;
    }
}

.styled-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    color: var(--calc-blue);
    outline: none;
}

.calc-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.calculate-btn-green {
    background-color: var(--calc-green);
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.calculate-btn-green:hover {
    background-color: #219150;
    transform: translateY(-2px);
}

/* New Results Layout Styles */
.results-container-new {
    max-width: 1000px;
    width: 100%;
    background: #fff;
    border: 1px solid var(--calc-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.results-header {
    background: #fff;
    padding: 20px;
    border-bottom: 2px solid var(--calc-green);
    text-align: center;
}


.results-header h3 {
    color: var(--calc-blue);
    font-size: 24px;
    margin: 0;
}

.results-header h3 span {
    color: var(--calc-green);
}

.results-list {
    display: flex;
    flex-direction: column;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    font-size: 16px;
    color: var(--calc-blue);
    border-bottom: 1px solid #eee;
}

.result-row.gray-bg {
    background-color: #f7f7f7;
}

.row-label {
    font-weight: 500;
}

.row-value {
    font-weight: 700;
}

.highlight-green {
    color: var(--calc-green);
    font-size: 18px;
}

.results-actions {
    display: flex;
    gap: 20px;
    padding: 30px;
    justify-content: center;
}

@media (max-width: 600px) {
    .results-actions {
        flex-direction: column;
    }
}

.btn-report,
.btn-expert {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 16px;
}

.btn-report {
    background: #fff;
    color: var(--calc-blue);
    border: 1px solid #ccc;
}

.btn-report:hover {
    background: #f0f0f0;
}

.btn-expert {
    background: var(--calc-green);
    color: #fff;
}

.btn-expert:hover {
    background: #219150;
}

/* Lead Capture Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-card {
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-card h2 {
    font-size: 20px;
    color: var(--calc-blue);
    margin-bottom: 15px;
    line-height: 1.4;
    padding-right: 20px;
    font-weight: 800;
}

.modal-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.modal-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.modal-submit-btn {
    width: 100%;
    background: var(--calc-green);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.modal-submit-btn:hover {
    background: #219150;
}

/* Detailed Results Modal Specifics */
.detailed-results-card {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
}

.modal-header-title {
    text-align: center;
    padding: 20px;
    margin: 0 !important;
    background: #fff;
    border-bottom: 2px solid var(--calc-green);
    position: sticky;
    top: 0;
    z-index: 10;
}

.detailed-results-content {
    padding: 20px 40px;
}

@media (max-width: 600px) {
    .detailed-results-content {
        padding: 15px;
    }
}

.radiation-info {
    font-size: 13px;
    color: var(--calc-blue);
    text-align: center;
    margin-bottom: 5px;
}

.gen-summary {
    font-size: 13px;
    color: var(--calc-blue);
    text-align: center;
    margin-bottom: 20px;
}

.report-box {
    background: #f1f8e9;
    border: 1px solid #c8e6c9;
    padding: 20px;
    margin-bottom: 20px;
}

.section-heading {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
}

.report-section {
    margin-bottom: 20px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-box .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.report-box .row:last-child {
    border-bottom: none;
}

.savings-note {
    font-size: 12px;
    color: #333;
    padding: 0 15px 10px;
    line-height: 1.4;
}

.table-rows {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.environment-impact {
    border: 2px solid var(--calc-green);
    border-radius: 10px;
    padding: 15px 30px;
    margin-bottom: 20px;
}

.env-row {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.env-row:last-child {
    margin-bottom: 0;
}

.disclaimer-box {
    border: 1px solid var(--calc-green);
    padding: 10px;
    font-size: 11px;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Products Section */
.products-title {
    text-align: center;
    border: 2px solid var(--calc-green);
    padding: 8px;
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--calc-blue);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    max-width: 120px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-name {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 1.3;
}

.product-price {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.product-save {
    font-size: 13px;
    font-weight: 700;
    color: var(--calc-green);
}

.modal-footer-simple {
    padding: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

.close-footer-text {
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.contact-slide {
    background: #1c2b52;
}
/* Informational Section Styles */
.calc-info-section {
    max-width: 1000px;
    width: 100%;
    margin-top: 60px;
    padding: 40px 0;
}

.info-main-title {
    color: var(--calc-blue);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.info-intro {
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-header {
    background: var(--calc-bg-light);
    padding: 25px;
    text-align: center;
    border-bottom: 2px solid var(--calc-green);
}

.info-card-header h3 {
    color: var(--calc-blue);
    font-size: 20px;
    margin: 10px 0 5px;
}

.info-card-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.type-badge {
    background: var(--calc-green);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.type-badge.blue {
    background: var(--calc-blue);
}

.info-card-body {
    padding: 25px;
}

.info-card-body p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.info-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-card-body ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card-body ul li i {
    color: var(--calc-green);
    font-size: 16px;
}

.info-example {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
    border-left: 4px solid var(--calc-green);
}
