/* Astrologer Registration Page */
.registration-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.registration-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.section-title {
    border-bottom: 2px solid #fbd91a;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

.form-label {
    font-weight: 600;
    color: #555;
}

.form-control:focus {
    border-color: #fbd91a;
    box-shadow: 0 0 0 0.2rem rgba(251, 217, 26, 0.25);
}

.btn-register {
    background: #fbd91a;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.image-preview {
    max-width: 150px;
    max-height: 150px;
    margin-top: 10px;
    border-radius: 10px;
    display: none;
    border: 2px dashed #ddd;
    padding: 5px;
}

.select-multiple {
    min-height: 150px;
}

/* Astrologer Thank You Page */
.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #fbd91a;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.thanks-title {
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.thanks-message {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    background: #fff9db;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h5 {
    font-weight: 700;
    color: #856404;
    margin-bottom: 15px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-number {
    background: #fbd91a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.btn-home {
    background: #fbd91a;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-home:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Astrologer Profile (Show) Page */
:root {
    --primary-gold: #c5a059;
    --dark-bg: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --hero-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.profile-hero {
    background: var(--hero-gradient);
    padding: 5rem 0 3rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.profile-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #f8f9fa, transparent);
}

.astrologer-pp-container {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.astrologer-pp {
    width: 180px;
    height: 180px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background: white;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.verified-badge {
    background: #00d2ff;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-pills-custom .nav-link {
    color: #4a5568;
    font-weight: 600;
    border-radius: 1rem;
    padding: 12px 24px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav-pills-custom .nav-link.active {
    background: var(--hero-gradient);
    color: white;
    box-shadow: 0 8px 15px rgba(30, 60, 114, 0.2);
}

.btn-premium-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 1rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-premium-chat {
    background: linear-gradient(135deg, #2af598 0%, #009efd 100%);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 1rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    color: white;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.online {
    background: #2af598;
    box-shadow: 0 0 10px #2af598;
}

.offline {
    background: #cbd5e0;
}

.spec-badge {
    background: rgba(235, 244, 255, 1);
    color: #2b6cb0;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
    display: inline-block;
}