/* Modern User Profile Page - Modern Theme Colors */

.user-profile-page-modern {
    min-height: 100vh;
    background: #f9fafb;
}

/* Profile Header with Modern Theme Gradient (Gold/Brown) */
.profile-header-modern {
    background: linear-gradient(135deg, #1a1410 0%, #2c2518 40%, #4a3d2a 70%, #7a6844 100%);
    padding: 2.5rem 0 1.5rem;
    margin-top: -1rem;
}

.profile-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.profile-main-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
}

/* Photo Section */
.profile-photo-section {
    flex-shrink: 0;
}

.profile-photo-wrapper-modern {
    position: relative;
    width: 180px;
    height: 180px;
}

.profile-photo-modern {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verified-badge-modern {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #10b981;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.verified-badge-modern i {
    color: white;
    font-size: 16px;
}

/* Info Section */
.profile-info-section {
    color: white;
    position: relative;
}

.super-agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.share-profile-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-profile-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.profile-name-modern {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Rating Section */
.rating-section-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.rating-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.star-filled {
    color: #fbbf24;
}

.star-empty {
    color: rgba(255, 255, 255, 0.3);
}

.rating-count {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Location & Experience */
.location-experience {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Response Time Indicator */
.response-time-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Action Buttons */
.action-buttons-modern {
    display: flex;
    gap: 1rem;
}

.btn-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #25d366;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp-modern:hover {
    background: #25d366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.btn-view-properties-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-properties-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Brokerage Section */
.brokerage-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 200px;
}

.brokerage-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 1rem;
}

.brokerage-card {
    text-align: center;
}

.brokerage-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brokerage-logo-placeholder {
    width: 100px;
    height: 100px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.brokerage-logo-placeholder i {
    font-size: 2.5rem;
    color: #9ca3af;
}

.brokerage-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.brokerage-link {
    color: #b7a56a;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Statistics Bar */
.statistics-bar-modern {
    background: linear-gradient(135deg, #1a1410 0%, #2c2518 50%, #3d3123 100%);
    padding: 2rem 0;
    margin-top: -1px;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-card-modern {
    text-align: center;
    color: white;
    padding: 1rem;
}

.stat-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Content Cards */
.content-card-modern {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-title-modern i {
    color: #b7a56a;
}

.about-text {
    color: #4b5563;
    line-height: 1.8;
    white-space: pre-wrap;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Contact Form */
.response-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-form-modern {
    margin-bottom: 2rem;
}

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: #b7a56a;
    box-shadow: 0 0 0 3px rgba(183, 165, 106, 0.1);
}

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #b7a56a 0%, #d4c599 100%);
    color: #2c2518;
    border: none;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(183, 165, 106, 0.3);
}

/* Social Links */
.divider-modern {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.connect-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-links-modern {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #b7a56a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-main-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brokerage-section {
        order: -1;
    }
    
    .profile-photo-section {
        text-align: center;
    }
    
    .share-profile-btn {
        position: static;
        margin-bottom: 1rem;
        display: block;
        width: fit-content;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-divider {
        border-left: none;
    }
}

@media (max-width: 768px) {
    .profile-header-modern {
        padding: 1.5rem 0;
    }
    
    .profile-card-modern {
        padding: 1.5rem;
    }
    
    .profile-photo-wrapper-modern {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .profile-name-modern {
        font-size: 2rem;
        text-align: center;
    }
    
    .rating-section-modern {
        justify-content: center;
    }
    
    .location-experience {
        text-align: center;
    }
    
    .response-time-indicator {
        justify-content: center;
        text-align: center;
    }
    
    .action-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .profile-name-modern {
        font-size: 1.75rem;
    }
}
