/*--------------------------------------------------------------
# Partner Client Page Styles
--------------------------------------------------------------*/
.logo-img {
    height: 40px;
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: var(--secondary-color) !important;
}

/* Simulation Card */
.simulation-card {
    background-color: #f6f6f8;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray6);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-selection {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem;
    border-radius: 0.7rem;
    margin-bottom: 1.5rem;
}

.product-selection .icon-wrapper {
    background-color: rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: bold;
    font-size: 1rem;
}

.product-vendor {
    font-size: 0.85rem;
    opacity: 0.8;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--gray5);
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--gray2);
}

.total-price {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.total-price .fw-bolder {
    font-size: 1.2rem;
    color: #000;
}

.installment-display {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 1.25rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 0.7rem;
}

.btn-success {
    background-color: #27AE60;
    border-color: #27AE60;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-success:hover {
    background-color: #219d55;
    border-color: #219d55;
}

/* Features List */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background-color: var(--gray8);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* How it Works Section */
.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.carousel-indicator {
    background-color: #cfcfcf;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: none;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: #888;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #f6f6f8;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray2);
    margin: 0;
}