/* =========================================
   24. REVIEWS PAGE STYLING (bali-reviews-page.css)
   ========================================= */

/* Wrapper */
.bl-rev-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Delight', sans-serif;
}

/* Hero Section */
.bl-rev-hero {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bl-rev-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    padding: 8px 16px;
    border-radius: 50px;
    color: #00b67a;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 14px;
}

.bl-rev-h1 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bl-rev-sub {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- BUTTONS & LINKS (Updated) --- */
.bl-rev-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Primary Button (Blue) - No Underline */
.bl-rev-btn-primary {
    background: #7d8dff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important; /* Forces no underline */
    transition: transform 0.2s;
}

.bl-rev-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(125, 141, 255, 0.3);
    color: #fff;
}

/* Text Link with Orange Underline & Arrow */
.bl-rev-link {
    color: #333;
    font-weight: 700;
    text-decoration: none !important; /* Removes default link underline */
    border-bottom: 2px solid #FFA685; /* YOUR ORANGE UNDERLINE */
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.bl-rev-link:hover {
    opacity: 0.8;
}

.bl-rev-link .arrow-icon {
    display: block;
    margin-top: 2px; /* Slight alignment tweak */
}

/* Grid Layout */
.bl-rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.bl-rev-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bl-rev-cat-title {
    font-size: 18px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

/* Review Card */
.bl-rev-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: transform 0.2s;
}

.bl-rev-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bl-rev-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.bl-rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.bl-rev-meta {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
}

.bl-rev-verified {
    font-size: 11px;
    color: #00b67a;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

/* STARS: Changed to Trustpilot Green */
.bl-rev-stars {
    color: #00b67a; /* Trustpilot Green */
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 14px;
}

.bl-rev-quote {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.bl-rev-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Footer CTA */
.bl-rev-footer {
    text-align: center;
    background: #f9fafb;
    padding: 50px 20px;
    border-radius: 20px;
}

.bl-rev-footer h2 { font-size: 28px; margin-bottom: 10px; }
.bl-rev-footer p { font-size: 16px; color: #666; margin-bottom: 30px; }

/* Large Bottom Button - Changed to Orange */
.bl-rev-btn-large {
    background: #FFA685; /* YOUR BRAND ORANGE */
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important; /* No underline */
    display: inline-block;
    transition: background 0.2s;
}

.bl-rev-btn-large:hover {
    background: #ff966e; /* Slightly darker orange on hover */
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .bl-rev-grid {
        grid-template-columns: 1fr;
    }
    
    .bl-rev-cat-title {
        margin-top: 30px;
        text-align: left;
    }
    
    .bl-rev-h1 { font-size: 28px; }
    
    .bl-rev-cta-group {
        flex-direction: column;
        gap: 20px;
    }
}