 
:root { --cc-yellow: #0b7dda; --cc-bg: #f9f9f9; --cc-dark: #111; }

.cr-reviews-sec { padding: 80px 5%; background: #fff; font-family: 'Space Grotesk', sans-serif; }

.cr-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.cr-title h2 { font-size: 3rem; font-weight: 900; letter-spacing: -2px; line-height: 1; }

/* Review Grid */
.cr-review-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-bottom: 40px;
}

.cr-card { 
    background: var(--cc-bg); 
    padding: 30px; 
    border-radius: 24px; 
    border: 1px solid #eee;
    transition: 0.3s;
}
.cr-card:hover { transform: translateY(-5px); border-color: var(--cc-yellow); }
.cr-card h4 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; }
.cr-card p { color: #555; line-height: 1.6; font-size: 0.95rem; }

/* Form Modal Styling */
.cr-modal { 
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0,0,0,0.8); z-index: 1000; align-items: center; justify-content: center; 
}
.cr-form-box { 
    background: #fff; padding: 40px; border-radius: 30px; width: 90%; max-width: 450px; 
}
.cr-form-box input, .cr-form-box textarea { 
    width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; 
    border-radius: 12px; font-family: inherit; outline: none;
}
.cr-form-box input:focus { border-color: var(--cc-yellow); }

/* Buttons */
.cr-btn { 
    background: var(--cc-dark); color: #fff; padding: 15px 30px; 
    border: none; border-radius: 12px; font-weight: 800; cursor: pointer; transition: 0.3s;
}
.cr-btn:hover { background: var(--cc-yellow); color: #000; }

/* Pagination Dots */
.cr-dots { display: flex; justify-content: center; gap: 8px; }
.cr-dot { width: 10px; height: 10px; background: #ddd; border-radius: 50%; cursor: pointer; }
.cr-dot.active { background: var(--cc-dark); width: 25px; border-radius: 10px; }

/* MOBILE RESPONSIVE 2/2 GRID */
@media (max-width: 768px) {
    .cr-review-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cr-card { padding: 15px; }
    .cr-card h4 { font-size: 1rem; }
    .cr-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
