.astrologer-card {
    max-width: 320px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
}

.profile-header {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.online-status {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
}

.chat-icon {
    position: absolute;
    top: -10px;
    right: -80px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FF9800, #FF6F00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-icon:hover {
    transform: scale(1.1);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFF3E0;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #F57C00;
}

.rating i {
    color: #FF9800;
}

.astrologer-name {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin: 16px 0 8px;
}

.specialization {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.info-section {
    text-align: left;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;


}

.info-row:first-child {
    border-top: 1px solid #f0f0f0;
    padding: 10px 0 5px 0;
}
.info-row:last-child {
    border-bottom: 1px solid #f0f0f0;
    padding: 5px 0 10px 0;
}

.info-label {
    color: #212121;
    font-weight: 600;
    font-size: 14px;
}

.info-value {
    color: #666;
    font-size: 14px;
}

.pricing-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #212121;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.call-btn {
    flex: 1;
    background: linear-gradient(135deg, #FF9800, #FF6F00);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}



/* ASTRO FILTER */

.accordion-container {
    max-width: 320px;
    margin: 0 auto;
}

.language-accordion {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 18px 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    width: 100%;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin: 0;
}

.accordion-icon {
    color: #FF9800;
    font-size: 18px;
    transition: transform 0.3s;
}

.accordion-header.collapsed .accordion-icon {
    transform: rotate(0deg);
}

.accordion-header:not(.collapsed) .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0;
    border-top: 1px solid #f0f0f0;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    padding: 14px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: #fafafa;
}

.language-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.language-radio {
    appearance: none !important;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.language-radio:hover {
    border-color: #FF9800;
}

.language-radio:checked {
    border-color: #FF9800;
    background: #FF9800;
}

.language-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.language-name {
    font-size: 15px;
    color: #424242;
    font-weight: 400;
}

.language-radio:checked ~ .language-name {
    font-weight: 500;
    color: #212121;
}


/* Features are css */


.features-container {
    max-width: 1320px;
    margin: 0 auto;
}

.features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 25px;
    /* flex: 1; */
    min-width: 280px;
}


.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFE5CC, #FFD9B3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 32px;
    color: #FF9800;
}

.feature-text {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    line-height: 1.3;
}

.search-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.search-wrapper {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    color: #757575;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: #FF9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        gap: 30px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }

    .search-section {
        justify-content: center;
    }

    .search-wrapper {
        max-width: 100%;
    }
}