/* Profile Page Redesign - Light Theme (Site Standard) */
:root {
    --bg-light: #ffffff;
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --primary: #A00D4B;
    --primary-hover: #800a3c;
    --border: #eeeeee;
    --radius-lg: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile-page-wrapper {
    background-color: #fcfcfc;
    color: var(--text-main);
    padding: 30px 0 80px;
    font-family: 'Inter', sans-serif;
}

/* Breadcrumbs */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 8px;
}

.breadcrumb .active {
    color: var(--primary);
    font-weight: 600;
}

/* Grid Layout */
.profile-layout-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* Main Column Cards */
.gallery-card, 
.profile-header-card, 
.info-table-card, 
.about-me-card, 
.safety-tips-card, 
.report-card, 
.services-card,
.reviews-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Image Gallery */
.main-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: #f0f0f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-btn.prev { left: 15px; }
.nav-btn.next { right: 15px; }

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnails img.active {
    opacity: 1;
    border-color: var(--primary);
}

/* Profile Header */
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.title-row h1 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 800;
    color: var(--primary);
}

.wishlist-btn {
    background: #fdf2f6;
    border: 1px solid #f9d5e3;
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background: var(--primary);
    color: white;
}

.meta-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-location { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.badge-verified { background: #ecfdf5; color: #10b981; border: 1px solid #d1fae5; }
.badge-live { background: #f0fdf4; color: #22c55e; border: 1px solid #dcfce7; }

.premium-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.p-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
}

.p-pro { background: #10b981; color: #fff; }
.p-diamond { background: #3b82f6; color: #fff; }
.p-premium { background: #f59e0b; color: #fff; }

.ad-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Info Table */
.profile-data-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-data-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.profile-data-table .label {
    color: var(--text-muted);
    width: 150px;
    font-weight: 600;
}

.profile-data-table .value {
    color: var(--text-main);
    text-align: right;
    font-weight: 700;
}

/* Sections Style */
h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h3 .icon { color: var(--primary); font-size: 0.8rem; }

.about-content {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-content ul {
    list-style: none;
    padding: 15px 0;
}

.about-content li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.about-content li::before {
    content: "❤";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Services */
.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.services-list li {
    background: #fdf2f6;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    /* text-align: center; */
    border: 1px solid #f9d5e3;
    transition: all 0.2s;
}

.services-list li:hover {
    background: var(--primary);
    color: white;
}

/* Safety Tips */
.safety-tips-card {
    background: #fff9db;
    border-color: #ffe066;
}

.safety-badge {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.safety-content {
    color: #856404;
    font-weight: 500;
}

/* Sidebar */
.sidebar-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.card-header {
    padding: 12px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
}

.card-header.red { background: #fff5f5; color: #fa5252; border-bottom: 1px solid #ffe3e3; }

.card-body { padding: 20px; }

.card-body ul {
    list-style: none;
    padding: 0;
}

.card-body li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-card {
    padding: 25px;
    text-align: center;
}

.btn-call-now {
    background: #22c55e;
    color: white;
    display: block;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 800;
    margin-top: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.btn-call-now:hover { 
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}

/* Reviews */
.empty-reviews {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.star-icon {
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.no-reviews { font-weight: 800; font-size: 1.2rem; color: var(--text-main); }
.be-first { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* Reviews Redesign */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.rating-score {
    text-align: center;
}

.rating-score .score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    display: block;
    line-height: 1;
}

.rating-score .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin: 5px 0;
}

.rating-score .count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-bars {
    flex: 1;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.rating-bar-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    width: 20px;
}

.rating-bar-container {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f1f5f9;
    transition: transform 0.2s;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.reviewer-meta p {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: var(--text-main);
}

.reviewer-meta .status {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-rating-date {
    text-align: right;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.review-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 576px) {
    .reviews-summary {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    .review-rating-date {
        text-align: left;
    }
}

.review-prompt {
    text-align: center;
    padding-top: 30px;
}

.review-prompt .small { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

.prompt-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-sign-in {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sign-in:hover { background: var(--primary-hover); }

.btn-create {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-create:hover { background: #fdf2f6; }

/* Report Ad */
.report-card h3 { color: #dc3545; }

.report-card ul {
    list-style: none;
    padding: 0;
}

.report-card li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.report-card a { color: var(--primary); font-weight: 600; }

.btn-whatsapp {
    background: #22c55e;
    color: white;
    display: block;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 800;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}

.report-profile-section {
    text-align: center;
    margin-top: 20px;
}

.report-profile-link {
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    border: 1px solid #dc3545;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: #f8f8f8;
}

.report-profile-link:hover {
    color: #fff;
    background-color: #dc3545; 
}

/* Responsive */
@media (max-width: 992px) {
    .profile-layout-grid {
        display:block;
        grid-template-columns: 1fr;
    } 
    .badge-verified{
        display:none;
    }
}

@media (max-width: 768px) {
    .main-image-container { height: 400px; }
    .title-row h1 { font-size: 1.2rem; }
    
.rating-bars {
    display:none;
}

.container{
    padding: 0 10px;
}

.gallery-card, .profile-header-card, .info-table-card, .about-me-card, .safety-tips-card, .report-card, .services-card, .reviews-card{
    padding: 5px;
}
}


/* Related Profiles Section */
.related-profiles-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.related-profiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-mini-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    background: #fdfdfd;
}

.profile-mini-link:hover {
    background: #fff5f8;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.profile-mini-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.profile-mini-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .related-profiles-grid {
        grid-template-columns: 1fr;
    }
}