/* =============================================
   Homeland Tree Care — Reviews Section
============================================= */

.reviews-section{
    padding:80px 0;
}


.reviews-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}


/* ---- Left Side ---- */
.reviews-left h2 {
  font-weight: 600;
  color: #1A2CA3;
  line-height: 1.35;
  margin-bottom: 16px;
}

.reviews-left p {
  color: #000;
  line-height: 1.75;
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-block;
  background: #FFB300;
  color: #3d2c00;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-cta:hover {
  background: #1A2CA3;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---- Right Side Cards ---- */
.reviews-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e2e2e2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 44, 163, 0.09);
}

/* ---- Avatar ---- */
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #EEEEEE;
}

/* ---- Card Body ---- */
.review-body {
  flex: 1;
}

/* ---- Stars ---- */
.review-stars {
  color: #FFB300;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* ---- Quote ---- */
.review-quote-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.review-quote-mark {
  color: #FFB300;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -3px;
}

.review-text {
  color: #000;
  line-height: 1.65;
  margin-bottom: 8px;
}

/* ---- Reviewer Name ---- */
.review-author {
  font-size: 12px;
  font-weight: 600;
  color: #1A2CA3;
}

/* Customer Review Card with Background Image */
.customer-review-card {
    position: relative;
    background: url('https://img.freepik.com/premium-photo/close-up-human-hand-with-thumb-up-front-green_28658-215.jpg') center/cover no-repeat;
    border-radius: 20px;
    padding: 50px 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 800px;
}

/* Dark overlay for text readability */
.customer-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Text content - appears on top of background */
.customer-review-card > * {
    position: relative;
    z-index: 2;
}

.review-title {
    font-weight: 700;
    color: #ffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-top: 200px;
}

.review-quote-text {
    line-height: 1.6;
    color: #fff !important;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

/* Stats Section */
.review-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 25px 0;
    padding: 30px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    border-radius: 10%;
    margin-top: 40px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #1A2CA3;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: #FFB300;
    margin-top: 5px;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 900px;
        padding: 0 15px;
    }
    
    .customer-review-card {
        min-height: 700px;
        padding: 40px 35px;
    }
    
    .review-title {
        margin-top: 150px;
    }
    
    .review-quote-text {
        font-size: 18px;
    }
    
    .review-stats {
        padding: 25px 30px;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 0;
    }
    
    .reviews-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .reviews-left {
        text-align: center;
    }
    
    .reviews-left h2 {
        margin-bottom: 14px;
    }
    
    .reviews-left p {
        margin-bottom: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-cta {
        padding: 10px 22px;
        font-size: 14px;
    }
    
    .reviews-right {
        gap: 14px;
    }
    
    .review-card {
        padding: 15px 18px;
        gap: 12px;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
    }
    
    .review-stars {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .review-quote-mark {
        font-size: 24px;
    }
    
    
    
    .review-author {
        font-size: 11px;
    }
    
    .customer-review-card {
        min-height: 600px;
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .review-title {
        margin-top: 120px;
        margin-bottom: 12px;
    }
    
    .review-quote-text {
        line-height: 1.5;
    }
    
    .review-stats {
        padding: 20px 25px;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
        border-radius: 8%;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-inner {
        gap: 30px;
        padding: 0 15px;
    }
    
    .reviews-left h2 {
    }
    
    .reviews-left p {
        line-height: 1.6;
    }
    
    .btn-cta {
        padding: 9px 20px;
        font-size: 14px;
    }
    
    .btn-cta:hover {
        transform: translateY(-1px);
    }
    
    .reviews-right {
        gap: 12px;
    }
    
    .review-card {
        padding: 14px 15px;
        gap: 10px;
    }
    
    .review-avatar {
        width: 44px;
        height: 44px;
    }
    
    .review-stars {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .review-quote-mark {
        font-size: 20px;
    }
    
    .review-text {
        line-height: 1.5;
    }
    
    .customer-review-card {
        min-height: 500px;
        padding: 25px 20px;
        border-radius: 14px;
    }
    
    .review-title {
        margin-top: 100px;
    }
    
    .review-quote-text {
        line-height: 1.5;
    }
    
    .review-stats {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
        margin-top: 25px;
        border-radius: 6%;
    }
    
    .stat-item {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
    
    .stat-number {
        display: inline-block;
        font-size: 22px;
        min-width: 60px;
    }
    
    .stat-label {
        display: inline-block;
        font-size: 11px;
        margin-top: 0;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .reviews-section {
        padding: 35px 0;
    }
    
    .reviews-inner {
        gap: 25px;
    }
    .review-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .review-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-stars {
        font-size: 14px;
    }
    
    .customer-review-card {
        min-height: 450px;
        padding: 20px 15px;
    }
    
    .review-title {
        margin-top: 80px;
    }
    
    .review-quote-text {
        font-size: 18px;
    }
    
    .review-stats {
        padding: 20px;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 22px;
        min-width: 50px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Very Small Mobile Devices (400px and below) */
@media (max-width: 400px) {
    .reviews-section {
        padding: 30px 0;
    }
    
    
    .btn-cta {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-avatar {
        width: 36px;
        height: 36px;
    }
    
    .review-stars {
        font-size: 14px;
    }
    
    .review-quote-mark {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 18px;
    }
    
    .customer-review-card {
        min-height: 400px;
        padding: 20px 12px;
    }
    
    .review-title {
        margin-top: 60px;
    }
    
    .review-quote-text {
        font-size: 18px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .customer-review-card {
        min-height: 450px;
    }
    
    .review-title {
        margin-top: 80px;
    }
    
    .review-stats {
        flex-direction: row;
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        display: block;
    }
    
    .stat-label {
        display: block;
        margin-top: 5px;
    }
}

/* Print Styles (Optional) */
@media print {
    .reviews-section {
        padding: 20px 0;
    }
    
    .reviews-inner {
        display: block;
    }
    
    .review-card {
        box-shadow: none;
        border: 1px solid #fff;
        page-break-inside: avoid;
    }
    
    .customer-review-card {
        background: #fff;
        min-height: auto;
        padding: 20px;
    }
    
    .customer-review-card::before {
        display: none;
    }
    
    .review-title,
    .review-quote-text {
        color: #000 !important;
    }
    
    .review-stats {
        border: 1px solid #ddd;
        background: #fff;
    }
    
    .btn-cta {
        background: #f0f0f0;
        color: #000;
        border: 1px solid #ddd;
    }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.reviews-section h2, .review-header h2, .section-title h2 { font-size: 40px !important; }
.reviews-section h3, .review-card h3, .review-title, .section-title h3 { font-size: 22px !important; }
.reviews-section p, .review-card p, .review-header p, .review-quote-text, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
.reviews-section li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .reviews-section h2, .review-header h2, .section-title h2 { font-size: 35px !important; }
    .reviews-section h3, .review-card h3, .review-title, .section-title h3 { font-size: 22px !important; }
    .reviews-section p, .review-card p, .review-header p, .review-quote-text, .section-title p { font-size: 18px !important; line-height: 1.6 !important; }
    .reviews-section li { font-size: 18px !important; line-height: 1.6 !important; }
}