/**
 * Budget Calculator Pro - Five Good Friends Exact Clone
 * 100% matching styling from the original build files
 */

/* CSS Variables - Exact match */
:root {
    --primary-color: rgb(29, 163, 170);
    --secondary-color: rgb(7, 64, 96);
    --tertiary-color: rgb(83, 116, 241);
    --success-color: rgb(0, 102, 51);
    --error-color: #ad1229;
    --background-color: #ffffff;
    --text-color: #074060;
    --sunrise: #FFFCDF;
    --sunset: #FFEEE5;
    --tint: #EAF9FE;
    --grey: #F5F5F5;
}

/* Base Calculator Wrapper */
.bcp-calculator-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
    box-sizing: border-box;
}

.bcp-calculator-wrapper *,
.bcp-calculator-wrapper *:before,
.bcp-calculator-wrapper *:after {
    box-sizing: border-box;
}

/* Main Calculator Layout */
.bcp-calculator {
    display: flex;
    flex-direction: row;
    gap: 10px;
    height: 100%;
    overflow: auto;
}

@media (max-width: 768px) {
    .bcp-calculator {
        flex-direction: column;
    }
}

/* Crumbtrail / Sidebar Navigation */
.bcp-crumbtrail {
    flex: 1.5;
    position: sticky;
    top: 0;
    padding: 0 20px;
    align-self: flex-start;
    min-width: 280px;
}

@media (max-width: 768px) {
    .bcp-crumbtrail {
        display: none;
    }
}

.bcp-crumbtrail-inner {
    padding: 25px 0;
}

.bcp-crumbtrail-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    margin: 0 0 2rem 0;
}

.bcp-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Vertical connecting line */
.bcp-steps-list::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background-color: #e0e0e0;
}

.bcp-steps-list li {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    position: relative;
    z-index: 1;
}

.bcp-step-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #999;
    flex-shrink: 0;
}

.bcp-step-label {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

/* Active step - filled bullet */
.bcp-steps-list li.active .bcp-step-marker {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.bcp-steps-list li.active .bcp-step-marker::before {
    content: '●';
    font-size: 8px;
}

.bcp-steps-list li.active .bcp-step-label {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Completed step */
.bcp-steps-list li.completed .bcp-step-marker {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.bcp-steps-list li.completed .bcp-step-label {
    color: var(--secondary-color);
}

/* Inactive step */
.bcp-steps-list li.inactive {
    pointer-events: none;
}

/* Disclaimer */
.bcp-disclaimer {
    margin-top: 2rem;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.bcp-disclaimer p {
    margin: 0 0 8px 0;
}

.bcp-disclaimer p:last-child {
    margin-bottom: 0;
}

.bcp-disclaimer strong {
    color: var(--secondary-color);
}

/* Main Content Area */
.bcp-main {
    flex: 3;
    padding: 20px;
}

/* Aside / Summary Sidebar */
.bcp-aside {
    flex: 2;
    position: sticky;
    top: 0;
    padding: 20px;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .bcp-aside {
        display: none;
    }
}

/* Title Section */
.bcp-title h2 {
    font-size: 2em;
    line-height: 1.2;
    margin-bottom: 1em;
    font-weight: 400;
    color: var(--text-color);
}

.bcp-title h2 span {
    display: block;
    font-weight: 400;
}

@media (max-width: 768px) {
    .bcp-title h2 {
        font-size: 1.6em;
    }
}

.bcp-title h3 {
    display: none;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2em 0 -1em;
}

.bcp-title h3.visible {
    display: block;
}

@media (max-width: 768px) {
    .bcp-title h3 {
        display: block;
        font-size: 0.8em;
        font-weight: 400;
    }
}

.bcp-title p {
    margin: 1em 0 3em;
    font-size: 18px;
    line-height: 150%;
}

/* Custom Select Dropdown - Exact Match */
.bcp-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.bcp-select-selected {
    padding: 16px 18px;
    cursor: pointer;
    border: 1px solid #074060;
    border-radius: 16px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.bcp-select-selected:hover {
    border-color: #888;
}

.bcp-select-selected svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.bcp-select-selected.open svg {
    transform: rotate(180deg);
}

.bcp-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10000;
}

.bcp-select-dropdown.open {
    display: block;
}

.bcp-select-option {
    font-size: 18px;
    padding: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
}

.bcp-select-option:hover {
    background-color: #f1f1f1;
}

.bcp-select-option.active {
    background-color: #d3f9d8;
    font-weight: 700;
}

/* Form Label */
.bcp-label {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    margin-top: 32px;
}

.bcp-label:first-child {
    margin-top: 0;
}

/* Radio Options - Exact Match */
.bcp-options,
.bcp-card-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcp-option {
    display: flex;
    border: 1px solid rgba(7, 64, 96, 0.15);
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    font-size: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bcp-option:hover {
    border-color: rgba(7, 64, 96, 0.5);
}

.bcp-option.active {
    border-color: var(--text-color);
}

.bcp-option strong {
    font-weight: 400;
}

.bcp-option span {
    font-size: 0.8em;
    opacity: 0.5;
    line-height: 120%;
}

.bcp-option input[type="radio"] {
    display: none;
}

/* Card Options (horizontal) */
.bcp-card-options {
    flex-direction: row;
}

@media (max-width: 768px) {
    .bcp-card-options {
        flex-direction: column;
    }
}

.bcp-card-options > div {
    flex: 1;
}

/* Navigation Buttons - Exact Match */
.bcp-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    width: 100%;
    position: sticky;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 1000;
    margin-top: 60px;
}

.bcp-nav-btn {
    flex: 0 0 75px;
    padding: 12px 24px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    font-size: 16px;
    background: transparent;
    text-decoration: none;
}

@media (max-width: 768px) {
    .bcp-nav-btn {
        flex: 0 0 50px;
        height: 50px;
    }
}

.bcp-nav-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.bcp-nav-btn.next {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.bcp-nav-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    border-color: #ccc;
    color: #666;
}

.bcp-nav-btn.next.disabled {
    background: #ccc;
    color: #666;
}

@media (max-width: 768px) {
    .bcp-nav-btn.prev span {
        display: none;
    }
    .bcp-nav-btn.next svg {
        display: none;
    }
}

/* Summary Box - Exact Match */
.bcp-summary {
    background-color: var(--tint);
    padding: 30px;
    border-radius: 10px;
}

.bcp-summary-tag-wrapper {
    border-bottom: 1px dashed var(--text-color);
    margin-bottom: 28px;
    padding-bottom: 24px;
    padding-top: 4px;
}

.bcp-summary-tag {
    display: inline-block;
    border: 1px solid var(--text-color);
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background-color: #fff;
    margin-block-end: 0;
}

.bcp-summary-tag:first-of-type {
    margin-right: 8px;
}

.bcp-summary h2 {
    font-size: 1.8em;
    margin: 0;
    font-weight: 400;
}

.bcp-summary p {
    font-size: 18px;
}

.bcp-summary h3 {
    font-size: 1em;
    text-transform: uppercase;
    margin: 1.5em 0;
}

.bcp-summary-table {
    --padding: 24px;
    display: flex;
    flex-direction: column;
    gap: var(--padding);
}

.bcp-summary-table > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    gap: 10px;
}

.bcp-summary-table > div strong {
    font-weight: 400;
}

.bcp-summary-table .remaining {
    padding-top: var(--padding);
    border-top: 2px solid var(--text-color);
}

/* Spend Chart */
.bcp-spend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px dashed rgba(7, 64, 96, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    background-color: #fff;
}

.bcp-spend-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.bcp-spend-line-item strong {
    font-weight: 500;
}

.bcp-spend-key {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bcp-spend-key > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 18px;
}

.bcp-spend-key > div:last-child {
    align-items: flex-end;
}

.bcp-spend-key > div strong {
    font-size: 0.8em;
    font-weight: 400;
}

.bcp-spend-chart {
    height: 10px;
    background: var(--grey);
    border-radius: 10px;
    overflow: hidden;
}

.bcp-spend-chart > div {
    height: 100%;
    background: var(--text-color);
    border-right: 3px solid #fff;
}

/* Contributions Chart */
.bcp-contributions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px dashed rgba(7, 64, 96, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    background-color: #fff;
}

.bcp-contributions h4 {
    font-size: 14px;
    margin: 0;
    opacity: 0.5;
    font-weight: 500;
}

.bcp-contributions-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.bcp-contributions-line-item strong {
    font-weight: 500;
}

.bcp-contributions-line-item.govt {
    color: var(--primary-color);
}

.bcp-contributions-chart {
    height: 20px;
    background: var(--primary-color);
    border-radius: 6px;
    overflow: hidden;
}

.bcp-contributions-chart > div {
    height: 100%;
    background: var(--secondary-color);
    border-right: 3px solid #fff;
}

/* Services Section - Exact Match */
.bcp-services p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 40px;
}

.bcp-management-type-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.bcp-management-label {
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bcp-management-toggle {
    display: inline-flex;
    border: 1px solid var(--secondary-color);
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
}

.bcp-toggle-option {
    position: relative;
    font-size: 16px;
    padding: 12px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border-radius: 40px;
}

.bcp-toggle-option input {
    display: none;
}

.bcp-toggle-option.active {
    background: var(--secondary-color);
    color: #fff;
}

.bcp-toggle-option:hover {
    background: rgba(7, 64, 96, 0.08);
}

.bcp-toggle-option.active:hover {
    background: var(--secondary-color);
}

/* Service Category - Exact Match */
.bcp-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcp-category-header {
    margin-bottom: 20px;
    padding: 0 16px;
    border-radius: 16px;
}

.bcp-category h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.6em;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.bcp-category h3 span {
    flex: 1;
}

.bcp-category h3 small {
    font-size: 16px;
    font-weight: 400;
}

.bcp-category h3 svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.bcp-category h3 svg.expanded {
    transform: rotate(0);
}

.bcp-category h3:hover {
    color: var(--primary-color);
}

.bcp-category-services {
    flex-direction: column;
    gap: 20px;
}

.bcp-category-services:last-child {
    margin-bottom: 32px;
}

/* Service Item - Exact Match */
.bcp-service {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 16px;
    border-radius: 10px;
    transition: background-color 0.2s ease;
}

.bcp-service:hover {
    background-color: rgba(7, 64, 96, 0.05);
}

.bcp-service img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bcp-service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bcp-service-info span {
    line-height: 150%;
    margin-bottom: 4px;
}

.bcp-service-info strong {
    font-size: 1.1em;
}

.bcp-service-info small {
    opacity: 0.5;
    font-size: 16px;
}

.bcp-service-add-btn {
    background: var(--grey);
    padding: 16px 24px;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bcp-service-add-btn:hover {
    background: rgba(7, 64, 96, 0.1);
}

.bcp-service.expanded .bcp-service-add-btn {
    display: none;
}

.bcp-service-close {
    display: none;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
}

.bcp-service.expanded .bcp-service-close {
    display: block;
    transform: rotate(45deg);
}

/* Service Form - Exact Match */
.bcp-service-form {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--tint);
    border-radius: 10px;
    margin-top: 10px;
}

.bcp-service-form.visible {
    display: flex;
}

@media (max-width: 768px) {
    .bcp-service-form {
        flex-direction: column;
        align-items: unset;
    }
}

.bcp-service-form > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcp-service-form > div label {
    font-size: 0.9em;
    font-weight: 500;
}

.bcp-service-form > div .input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .bcp-service-form > div .input-group {
        flex-direction: row-reverse;
    }
}

.bcp-service-form > div .input-group span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bcp-service-form > div .input-group span a {
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: rgba(29, 163, 170, 0.2);
    padding: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    user-select: none;
}

.bcp-service-form > div .input-group span a:hover {
    background-color: rgba(29, 163, 170, 0.4);
}

.bcp-service-form > div input,
.bcp-service-form > div select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid rgba(0, 102, 51, 0.5);
    border-radius: 10px;
    font-size: 16px;
}

.bcp-service-form > div select {
    appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
    cursor: pointer;
}

/* Contribution Slider */
.bcp-contribution-slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.bcp-contribution-slider strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 18px;
}

.bcp-contribution-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 3px;
    background: rgba(29, 163, 170, 0.25);
    border-radius: 999px;
    outline: none;
    --slider-size: 20px;
}

.bcp-contribution-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--slider-size);
    height: var(--slider-size);
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.bcp-contribution-slider input[type="range"]::-moz-range-thumb {
    width: var(--slider-size);
    height: var(--slider-size);
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.bcp-contribution-slider ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bcp-contribution-slider ul li {
    opacity: 0.5;
}

/* Category Background Colors */
.bcp-bg-tint {
    background-color: var(--tint);
}

.bcp-bg-sunset {
    background-color: var(--sunset);
}

.bcp-bg-sunrise {
    background-color: var(--sunrise);
}

/* Final Summary Page */
.bcp-final-summary h2 {
    font-weight: 500;
}

.bcp-final-summary p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 0;
}

.bcp-final-summary .check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--success-color);
}

.bcp-final-summary .check svg {
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.bcp-final-summary .available {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(7, 64, 96, 0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-top: 32px;
}

.bcp-final-summary .available > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bcp-final-summary .available > div strong {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.bcp-final-summary .available > div span {
    opacity: 0.5;
    font-size: 16px;
}

.bcp-final-summary .available > div span:first-of-type {
    opacity: 1;
}

.bcp-final-summary .available > div:last-child {
    text-align: right;
}

.bcp-final-summary .line-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 18px;
}

.bcp-final-summary .line-item strong {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.bcp-final-summary .services-detail {
    margin-top: 10px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcp-final-summary .services-detail .header {
    font-size: 14px;
}

.bcp-final-summary .services-detail .datarow {
    opacity: 0.5;
    font-size: 16px;
    line-height: 150%;
}

.bcp-final-summary .services-detail .service-row {
    display: flex;
    gap: 10px;
}

.bcp-final-summary .services-detail .service-row span {
    flex: 0 0 80px;
    text-align: right;
}

.bcp-final-summary .services-detail .service-row span:nth-child(1) {
    flex: 1;
    text-align: left;
}

.bcp-final-summary .services-detail .service-row span:nth-child(3) {
    flex: 0 0 60px;
}

.bcp-final-summary .remaining-total {
    border-top: 1px dashed rgba(7, 64, 96, 0.5);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 1.2em;
}

.bcp-final-summary .remaining-total .over {
    color: var(--error-color);
}

/* Call to Action */
.bcp-cta {
    background-color: var(--tint);
    padding: 40px 30px;
    border-radius: 10px;
    margin-top: 1.2em;
}

.bcp-cta > img {
    display: block;
    width: 144px;
}

.bcp-cta h2 {
    font-size: 32px;
    display: flex;
    flex-direction: column;
}

.bcp-cta h2 span {
    font-weight: 200;
}

.bcp-cta p {
    font-size: 18px;
    line-height: 150%;
}

.bcp-cta p strong {
    font-weight: 500;
}

.bcp-cta p.error {
    color: #d56d58;
}

.bcp-cta input {
    padding: 16px 18px;
    font-size: 18px;
    color: var(--text-color);
    border: 1px solid var(--text-color);
    border-radius: 16px;
    width: 100%;
}

.bcp-cta button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 32px 18px;
    border-radius: 100px;
    text-decoration: none;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 24px;
    border: none;
    cursor: pointer;
}

.bcp-cta button:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.bcp-cta button.book {
    background-color: var(--tertiary-color);
}

/* Tooltip */
.bcp-tooltip {
    position: relative;
    line-height: 1;
    display: inline-block;
}

.bcp-tooltip:hover .bcp-tooltip-popup {
    display: block;
}

.bcp-tooltip-icon {
    cursor: pointer;
}

.bcp-tooltip-icon.small svg {
    width: 16px;
    height: 16px;
}

.bcp-tooltip-icon.medium svg {
    width: 20px;
    height: 20px;
}

.bcp-tooltip-icon.large svg {
    width: 24px;
    height: 24px;
}

.bcp-tooltip-popup {
    position: fixed;
    display: none;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 200px;
    font-size: 13px;
    line-height: 1.5;
    transform: translate(-50%, -100%);
    margin-top: -10px;
}

.bcp-tooltip-popup.show {
    display: block;
}

/* Disclaimer */
.bcp-disclaimer {
    margin-top: 2.5rem;
    border: 1px dashed #D2D2D2;
    border-radius: 1rem;
    padding: 1rem;
}

.bcp-disclaimer p {
    font-size: 16px;
    margin-top: 0;
    line-height: 150%;
}

.bcp-disclaimer p:last-of-type {
    margin-bottom: 0;
}

/* Hidden */
.bcp-hidden {
    display: none !important;
}

/* Step visibility */
.bcp-step {
    display: none;
}

.bcp-step.active {
    display: block;
}

/* Mobile Navigation Summary */
.bcp-nav-summary {
    flex: 1;
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
}

.bcp-nav-summary > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.bcp-nav-summary > div strong {
    font-size: 14px;
}

.bcp-nav-summary > div:last-child {
    opacity: 0.5;
}

/* Contact Form - Step 4 */
.bcp-contact-form {
    margin-top: 40px;
    padding: 30px;
    background: var(--tint);
    border-radius: 12px;
}

.bcp-contact-form h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.bcp-contact-form > p {
    color: #666;
    margin: 0 0 25px 0;
}

.bcp-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .bcp-form-fields {
        grid-template-columns: 1fr;
    }
}

.bcp-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bcp-form-field:last-child {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .bcp-form-field:last-child {
        grid-column: span 1;
    }
}

.bcp-form-field label {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 14px;
}

.bcp-form-field input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.bcp-form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.bcp-form-consent {
    margin-bottom: 25px;
}

.bcp-form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.bcp-form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.bcp-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bcp-submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.bcp-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.bcp-submit-btn.loading span {
    opacity: 0.7;
}

.bcp-form-message {
    margin-top: 20px;
    display: none;
}

.bcp-form-message p {
    margin: 0;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.bcp-form-message p.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bcp-form-message p.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Final Summary Styling */
.bcp-final-summary {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bcp-summary-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bcp-summary-check svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.bcp-summary-check span {
    font-size: 1.1em;
    font-weight: 500;
    color: var(--secondary-color);
}

.bcp-summary-available {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--tint);
    border-radius: 8px;
    margin-bottom: 20px;
}

.bcp-summary-available strong {
    font-size: 1.1em;
    color: var(--secondary-color);
}

.bcp-summary-available .summary-frequency {
    display: block;
    font-size: 13px;
    color: #666;
}

.bcp-summary-available .summary-budget-amount {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}

.bcp-summary-services-list {
    margin-bottom: 20px;
}

.bcp-summary-services-list .line-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.bcp-summary-services-list .services-detail {
    padding-left: 20px;
    margin-bottom: 15px;
}

.bcp-summary-services-list .service-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.bcp-summary-remaining {
    padding-top: 15px;
    border-top: 2px solid var(--secondary-color);
}

.bcp-summary-remaining .line-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1em;
}

.bcp-summary-remaining .summary-remaining-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.bcp-nav-summary > div .remaining {
    color: var(--primary-color);
}

.bcp-nav-summary > div .over {
    color: var(--error-color);
}

@media (max-width: 768px) {
    .bcp-nav-summary {
        display: flex;
    }
}

/* Arrow icons */
.bcp-arrow-down {
    width: 16px;
    height: 16px;
}

.bcp-arrow-left,
.bcp-arrow-right {
    width: 20px;
    height: 20px;
}
