/* 
  Custom CSS for Services Pages and Calculators
  Converted from Tailwind CSS 
*/

/* =========================================
   COMMON UTILITIES FOR SERVICES
   ========================================= */
.services-space-y > * + * {
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .services-space-y > * + * {
        margin-top: 4rem;
    }
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .faq-container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-container {
        padding: 4rem 2rem;
    }
}

.services-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .services-container {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .services-container {
        padding: 4rem 2rem;
    }
}

/* =========================================
   SERVICES OVERVIEW PAGE
   ========================================= */
.services-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.services-badge-primary {
    background-color: rgba(10, 110, 189, 0.1);
    color: #0A6EBD;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    display: inline-block;
}

.services-main-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #063B66;
    margin: 0;
}

@media (min-width: 640px) {
    .services-main-title {
        font-size: 2.25rem;
    }
}

.services-main-desc {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .services-main-desc {
        font-size: 1rem;
    }
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.services-comparison-section {
    background-color: #f3f4f6;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.services-comparison-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.services-comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #063B66;
    margin: 0;
}

@media (min-width: 640px) {
    .services-comparison-title {
        font-size: 1.875rem;
    }
}

.services-comparison-desc {
    color: #4b5563;
    font-size: 0.875rem;
    margin: 0;
}

.services-comparison-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-comparison-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-comp-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.75rem;
}

.service-comp-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #063B66;
    margin: 0;
}

.service-comp-link {
    color: #0A6EBD;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    transition: color 0.2s;
}

.service-comp-link:hover {
    color: #063B66;
}

.service-comp-link i {
    width: 0.875rem;
    height: 0.875rem;
}

.service-comp-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.service-comp-feature {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background-color: #f9fafb;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    font-size: 0.75rem;
    color: #374151;
}

.service-comp-feature i {
    width: 0.75rem;
    height: 0.75rem;
    color: #F5A623;
    flex-shrink: 0;
}

.service-comp-feature span {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.services-cta {
    background-image: linear-gradient(to right, #063B66, #0A6EBD);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .services-cta {
        flex-direction: row;
        text-align: left;
    }
}

.services-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .services-cta-content {
        text-align: left;
    }
}

.services-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 640px) {
    .services-cta-title {
        font-size: 1.875rem;
    }
}

.services-cta-desc {
    color: #dbeafe;
    font-size: 0.875rem;
    margin: 0;
}

.services-cta-btn {
    background-color: #F5A623;
    color: #17212B;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.services-cta-btn:hover {
    background-color: #e09419;
}

/* =========================================
   SERVICE DETAIL PAGES (Solar, CCTV, IT, etc.)
   ========================================= */
.service-intro-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .service-intro-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

.service-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .service-intro-text {
        grid-column: span 7 / span 7;
    }
}

.service-intro-badge {
    color: #0A6EBD;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.service-intro-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #063B66;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 640px) {
    .service-intro-title {
        font-size: 2.25rem;
    }
}

.service-intro-desc {
    color: #4b5563;
    line-height: 1.625;
    font-size: 0.875rem;
    margin: 0;
}

@media (min-width: 640px) {
    .service-intro-desc {
        font-size: 1rem;
    }
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1f2937;
    font-weight: 600;
}

.service-feature-item i {
    width: 1rem;
    height: 1rem;
    color: #F5A623;
    flex-shrink: 0;
}

.service-intro-actions {
    padding-top: 1rem;
}

.service-intro-btn {
    background-color: #F5A623;
    color: #17212B;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.service-intro-btn:hover {
    background-color: #e09419;
}

.service-intro-image-col {
    position: relative;
}

@media (min-width: 1024px) {
    .service-intro-image-col {
        grid-column: span 5 / span 5;
    }
}

.service-intro-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #fde68a; /* Default amber, override inline if needed */
}

.service-intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-intro-img-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.service-intro-img-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.service-intro-badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #063B66;
    display: block;
}

.service-intro-badge-desc {
    font-size: 0.6875rem;
    color: #4b5563;
}

/* Sub Services Section */
.sub-services-wrapper {
    background-color: rgba(243, 244, 246, 0.8);
}

.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sub-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .sub-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.sub-service-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.3s;
}

.sub-service-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.sub-service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.sub-service-icon.amber {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
}

.sub-service-icon.blue {
    background-color: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.sub-service-icon.emerald {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #d1fae5;
}

.sub-service-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.sub-service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #063B66;
    margin: 0;
}

.sub-service-desc {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.benefit-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-icon.amber {
    background-color: #fef3c7;
    color: #b45309;
}

.benefit-icon.blue {
    background-color: #dbeafe;
    color: #1e3a8a;
}

.benefit-icon.emerald {
    background-color: #d1fae5;
    color: #065f46;
}

.benefit-icon i {
    width: 1.25rem;
    height: 1.25rem;
}

.benefit-title {
    font-weight: 700;
    color: #063B66;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
}

/* Process Section */
.process-section {
    background-color: #063B66;
    color: #ffffff;
    padding: 4rem 1.5rem;
    border-radius: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

@media (min-width: 640px) {
    .process-section {
        padding: 4rem 3rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.process-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-step-num {
    width: 2rem;
    height: 2rem;
    background-color: #F5A623;
    color: #17212B;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}

.process-desc {
    font-size: 0.6875rem;
    color: #dbeafe;
    line-height: 1.625;
    margin: 0;
}

/* Safety Section */
.safety-section {
    background-color: #063B66;
    color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .safety-section {
        padding: 3rem;
    }
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .safety-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

.safety-text-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .safety-text-col {
        grid-column: span 8 / span 8;
    }
}

.safety-badge {
    background-color: #F5A623;
    color: #111827;
    font-weight: 800;
    font-size: 0.625rem;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
}

.safety-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

@media (min-width: 640px) {
    .safety-title {
        font-size: 1.875rem;
    }
}

.safety-desc {
    font-size: 0.875rem;
    color: #dbeafe;
    line-height: 1.625;
    margin: 0;
}

.safety-icon-col {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .safety-icon-col {
        grid-column: span 4 / span 4;
    }
}

.safety-icon-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.safety-icon-card i {
    width: 3rem;
    height: 3rem;
    color: #F5A623;
}

.safety-icon-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}

.safety-icon-desc {
    font-size: 0.75rem;
    color: #bfdbfe;
    margin: 0;
}

/* IT Infrastructure specific */
.it-features-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .it-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .it-features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.it-feature-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s;
}

.it-feature-card:hover {
    transform: translateY(-0.25rem);
}

.it-feature-icon {
    padding: 0.75rem;
    background-color: #eff6ff;
    border-radius: 0.75rem;
    width: fit-content;
    border: 1px solid #dbeafe;
}

.it-feature-icon i {
    width: 2rem;
    height: 2rem;
    color: #0A6EBD;
}

.it-feature-title {
    font-weight: 700;
    color: #063B66;
    font-size: 1rem;
    margin: 0;
}

.it-feature-desc {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.625;
    margin: 0;
}

/* =========================================
   CALCULATORS (Solar & CCTV)
   ========================================= */
.calculator-container {
    background-image: linear-gradient(to bottom right, rgba(245, 166, 35, 0.1), #ffffff, #eff6ff);
    border: 1px solid #fde68a;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-container.cctv {
    background-image: linear-gradient(to bottom right, rgba(10, 110, 189, 0.1), #ffffff, #eff6ff);
    border-color: #bfdbfe;
}

@media (min-width: 640px) {
    .calculator-container {
        padding: 2rem;
    }
}

.calculator-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(2rem, -2rem);
    opacity: 0.1;
    z-index: 0;
}

.calculator-bg-icon i {
    width: 16rem;
    height: 16rem;
}

.calculator-bg-icon.solar i {
    color: #F5A623;
}

.calculator-bg-icon.cctv i {
    color: #0A6EBD;
}

.calculator-content {
    position: relative;
    z-index: 10;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.calculator-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calculator-icon-box.solar {
    background-color: #F5A623;
    color: #17212B;
}

.calculator-icon-box.cctv {
    background-color: #063B66;
    color: #ffffff;
}

.calculator-icon-box i {
    width: 1.5rem;
    height: 1.5rem;
}

.calculator-badge {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.calculator-badge.solar {
    color: #063B66;
}

.calculator-badge.cctv {
    color: #0A6EBD;
}

.calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #063B66;
    margin: 0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .calculator-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .calculator-controls {
        grid-column: span 6 / span 6;
    }
}

.calc-control-group {
    display: flex;
    flex-direction: column;
}

.calc-control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.calc-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
}

.calc-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #063B66;
}

.calc-value.secondary {
    font-size: 1rem;
    color: #0A6EBD;
}

.calc-range {
    width: 100%;
    height: 0.625rem;
    border-radius: 0.5rem;
    appearance: none;
    cursor: pointer;
}

.calc-range.solar {
    background-color: #fde68a;
    accent-color: #F5A623;
}

.calc-range.cctv {
    background-color: #bfdbfe;
    accent-color: #0A6EBD;
}

.calc-range::-webkit-slider-thumb {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    cursor: pointer;
}

.calc-range.solar::-webkit-slider-thumb {
    background: #F5A623;
}

.calc-range.cctv::-webkit-slider-thumb {
    background: #0A6EBD;
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.calc-info-box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #fde68a;
    font-size: 0.75rem;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-info-box.cctv {
    border-color: #bfdbfe;
}

.calc-info-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #063B66;
    font-weight: 700;
}

.calc-info-title i {
    width: 1rem;
    height: 1rem;
}

.calc-info-title.solar i {
    color: #F5A623;
}

.calc-info-title.cctv i {
    color: #0A6EBD;
}

.calc-info-box p {
    margin: 0;
}

.calculator-results {
    background-color: #063B66;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .calculator-results {
        grid-column: span 6 / span 6;
    }
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    text-align: center;
}

.calc-result-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
}

.calc-result-label {
    font-size: 0.6875rem;
    color: #bfdbfe;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.25rem;
}

.calc-result-value {
    font-size: 1.5rem;
    font-weight: 900;
}

@media (min-width: 640px) {
    .calc-result-value {
        font-size: 1.875rem;
    }
}

.calc-result-value.primary {
    color: #F5A623;
}

.calc-result-value.success {
    color: #34d399;
}

.calc-result-value.cctv-primary {
    color: #60a5fa;
}

.calc-summary-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-summary-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.calc-summary-label.small {
    font-size: 0.75rem;
    color: #bfdbfe;
    font-weight: 400;
}

.calc-summary-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #F5A623;
}

.calc-summary-value.small {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6ee7b7;
}

.calc-summary-value.cctv {
    color: #60a5fa;
}

.calc-btn-container {
    padding-top: 0.5rem;
}

.calc-btn {
    width: 100%;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.calc-btn.solar {
    background-color: #F5A623;
    color: #17212B;
}

.calc-btn.solar:hover {
    background-color: #e09419;
}

.calc-btn.cctv {
    background-color: #0A6EBD;
    color: #ffffff;
}

.calc-btn.cctv:hover {
    background-color: #085596;
}
