/* 
 * Advocate Popup Styles - Sharks of Law
 */

.sol-adv-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Header Section */
.adv-modal-header {
    background: #0d1a26; /* Dark navy charcoal */
    color: #fff;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

.adv-header-img {
    width: 42%;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.adv-header-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.adv-header-info {
    width: 58%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adv-header-info .name {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.adv-header-info .title {
    font-size: 1.15rem;
    color: #44cc00; /* Vibrant green from screenshot */
    font-weight: 600;
    margin-bottom: 25px;
}

.adv-header-info .bio {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

.adv-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 1rem;
}

.adv-meta-item i {
    font-size: 1.2rem;
    width: 20px;
}

.adv-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    max-width: 400px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(68, 204, 0, 0.1);
    border-radius: 50%;
}

.dot {
    width: 14px;
    height: 14px;
    background: #44cc00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(68, 204, 0, 0.5);
}

.btn-consult-green {
    background: #3ac31a;
    color: #fff;
    border-radius: 50px;
    padding: 10px 45px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.btn-consult-green:hover {
    background: #2ea814;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(58, 195, 26, 0.3);
}

/* Details Section */
.adv-modal-body {
    padding: 60px 40px;
    background: #fff;
}

.adv-body-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.adv-why-section h3 {
    font-weight: 800;
    color: #13134a;
    margin-bottom: 30px;
}

.adv-why-list {
    list-style: none;
    padding: 0;
}

.adv-why-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    gap: 10px;
}

.adv-why-list li strong {
    color: #13134a;
}

.adv-why-list li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Reviews Styling */
.adv-reviews-card {
    background: #fdfaf5; /* Matches beige background */
    border-radius: 20px;
    padding: 30px;
}

.adv-reviews-card h4 {
    color: #00a4fb;
    font-weight: 700;
    margin-bottom: 20px;
}

.review-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-stars {
    color: #00a4fb;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.view-more-review {
    color: #00a4fb;
    font-size: 0.75rem;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .adv-modal-header { flex-direction: column; }
    .adv-header-img { width: 100%; height: 350px; align-items: center; }
    .adv-header-img img { height: 100%; width: auto; }
    .adv-header-info { width: 100%; padding: 40px 25px; }
    .adv-header-info .name { font-size: 2.22rem; }
    .adv-header-info .bio { font-size: 0.95rem; margin-bottom: 25px; }
    
    .adv-modal-body { padding: 40px 20px; }
    .adv-body-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .adv-status-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-consult-green { width: 100%; }
}

@media (max-width: 576px) {
    .adv-header-img { height: 280px; }
    .adv-header-info .name { font-size: 1.8rem; }
    .adv-why-section h3 { font-size: 1.4rem; }
    .adv-why-list li { font-size: 1rem; }
}
