/* Bare Trust Form Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.bt-container {
    font-family: 'Inter', sans-serif !important;
    max-width: 1100px;
    margin: 40px auto;
    color: #1a1f36;
}

/* Steps Progress Bar */
.bt-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}
.bt-steps-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}
.bt-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
}
.bt-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    font-size: 14px;
    transition: all 0.3s ease;
}
.bt-step.active .bt-step-circle {
    border-color: #ffaf42;
    background: #ffaf42;
    color: #fff;
}
.bt-step.completed .bt-step-circle {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}
.bt-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}
.bt-step.active .bt-step-label {
    color: #ffaf42;
}

/* Layout */
.bt-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}
@media (max-width: 900px) {
    .bt-content-grid {
        grid-template-columns: 1fr;
    }
}

.bt-main-col {
    background: #fff;
    min-height: 400px;
}

/* Single Pricing Card (Step 1) */
.bt-pricing-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.bt-pricing-card {
    background: #1a1f36;
    color: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-top: 6px solid #ffaf42;
}
.bt-pricing-card:hover {
    transform: translateY(-5px);
}
.bt-plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
}
.bt-plan-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 20px;
}
.bt-plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffaf42;
    margin-bottom: 5px;
}
.bt-plan-desc {
    font-size: 13px;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 30px;
}
.bt-plan-features-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.bt-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.bt-plan-features li {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.bt-plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #ffaf42;
}
.bt-select-btn {
    width: 100%;
    background: #ffaf42;
    color: #1a1f36;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.bt-select-btn:hover {
    background: #f59e0b;
}

/* Step 2+ Forms */
.bt-step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.bt-step-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bt-card-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    background: #fff;
}
.bt-card-box-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}
.bt-card-box-header svg {
    color: #475569;
    flex-shrink: 0;
}
.bt-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f36;
    margin: 0;
}
.bt-card-desc {
    font-size: 13px;
    color: #475569;
    margin: 5px 0 0 0;
}

/* Radio Cards (Yes/No) */
.bt-radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
.bt-radio-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #1a1f36;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}
.bt-radio-card:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.bt-radio-card.selected {
    border-color: #ffaf42;
    background: rgba(255, 175, 66, 0.05);
    color: #ffaf42;
}

/* Info Box */
.bt-info-box {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 15px 20px;
    border-radius: 4px 8px 8px 4px;
    margin-top: 20px;
}
.bt-info-box h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bt-info-box p {
    margin: 0;
    font-size: 13px;
    color: #334155;
    line-height: 1.5;
}

/* Disclaimer Box */
.bt-disclaimer-box {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 20px;
    border-radius: 4px 8px 8px 4px;
    margin-top: 25px;
}
.bt-disclaimer-box h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #9a3412;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bt-disclaimer-box p {
    margin: 0;
    font-size: 13px;
    color: #7c2d12;
    line-height: 1.6;
}

/* Standard Inputs */
.bt-field-group {
    margin-bottom: 20px;
}
.bt-field-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}
.bt-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1f36;
    font-family: inherit;
    transition: all 0.2s;
}
.bt-input:focus {
    outline: none;
    border-color: #ffaf42;
    box-shadow: 0 0 0 3px rgba(255, 175, 66, 0.2);
}

/* Action Bar */
.bt-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.bt-btn-back {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #1a1f36;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.bt-btn-back:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #1a1f36;
}
.bt-btn-next {
    background: #ffaf42;
    color: #1a1f36;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.bt-btn-next:hover {
    background: #f59e0b;
}

/* --- The New Order Summary Design --- */
.bt-summary-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.bt-summary-header {
    background: #1a1f36; /* Dark blue from user's image */
    color: #fff;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
}

.bt-summary-body {
    padding: 25px 20px;
}

.bt-service-period {
    background: #f8fafc;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 12px;
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.bt-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    margin-bottom: 12px;
}
.bt-summary-row span:last-child {
    font-weight: 700;
    color: #1a1f36;
}

.bt-total-box {
    background: #fffbeb; /* Light yellow background */
    border: 1px solid #fef3c7;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    margin: 25px 0;
}
.bt-total-box-label {
    font-size: 11px;
    font-weight: 800;
    color: #d97706;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.bt-total-box-price {
    font-size: 36px;
    font-weight: 800;
    color: #d97706; /* Orange total */
    margin-bottom: 5px;
}
.bt-total-box-desc {
    font-size: 10px;
    font-weight: 800;
    color: #d97706;
}

.bt-package-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.bt-package-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1f36;
}
.bt-package-price {
    font-size: 15px;
    font-weight: 800;
    color: #1a1f36;
}
.bt-package-sub {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 15px;
}

.bt-summary-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}
.bt-summary-features li {
    font-size: 11px;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.bt-summary-features li svg {
    color: #22c55e; /* Green ticks */
    flex-shrink: 0;
    margin-top: 2px;
}

.bt-need-help {
    margin-top: 15px;
}
.bt-need-help h4 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 800;
    color: #1a1f36;
}
.bt-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #1a1f36;
    font-weight: 600;
    margin-bottom: 10px;
}
.bt-contact-item svg {
    color: #64748b;
}

.bt-trust-badge-container {
    text-align: center;
    margin-top: 30px;
}
.bt-trust-badge-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #22c55e;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bt-trust-badge-icon svg {
    color: #22c55e;
}
.bt-stars {
    color: #ffaf42;
    font-size: 14px;
    margin-bottom: 5px;
}
.bt-trust-text {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
}
