/* Pricing Page Currency Styling */
.currency-symbol {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* Currency Selector Styling */
#currency-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 45px !important;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#currency-selector:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

#currency-selector:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Prevent tab content collapse during transitions */
.tab-pane {
    min-height: auto;
    display: none;
}

.tab-pane.show {
    display: block;
}

.tab-pane.show.active {
    display: block !important;
    opacity: 1;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Feedback slider stability */
.feedback-slider-two {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.feedback-slider-two .item {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    display: flex;
}

/* Pricing column stability */
.pr-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: #fff;
    position: relative;
    transition: all 0.3s ease !important;
}

.pr-column:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

/* Ensure consistent heights during tab switching */
.tab-content .tab-pane {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing nav tabs smooth transition */
.pricing-nav-four {
    position: relative;
}

.pricing-nav-four .nav-link {
    transition: all 0.3s ease;
}

.pricing-nav-four .nav-link.active {
    border-color: #007bff;
    color: #007bff;
}
