/* =====================================================
   REVIEWS PAGE - Styles
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
  /* Primary - Green (Clean Pipes) */
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --primary-pale: #dcfce7;
  --primary-gradient: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);

  /* Accent - Orange (CTA/Emergency) */
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-light: #fb923c;
  --accent-pale: #ffedd5;
  --accent-gradient: linear-gradient(135deg, #f97316 0%, #fb923c 100%);

  /* Emergency Red */
  --emergency: #dc2626;
  --emergency-light: #fef2f2;
  --emergency-dark: #b91c1c;

  /* Neutrals */
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --container-padding: 24px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1400px;
  --site-max-width: 1920px;
  --site-min-width: 375px;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  min-width: var(--site-min-width);
  max-width: var(--site-max-width);
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* =====================================================
   HEADER - Pipeline Theme Design
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-base);
}

/* Emergency Top Bar */
.header__emergency {
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
  padding: 6px 0;
  position: relative;
  overflow: hidden;
}

.header__emergency::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: emergencyShine 3s infinite;
}

@keyframes emergencyShine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header__emergency-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header__emergency-pulse {
  width: 8px;
  height: 8px;
  background: #fef08a;
  border-radius: 50%;
  animation: emergencyPulse 1.5s infinite;
  box-shadow: 0 0 10px #fef08a;
}

@keyframes emergencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.header__emergency img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.header__emergency span {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.header__emergency a {
  color: #fef08a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__emergency a:hover {
  color: var(--white);
  text-decoration: underline;
}

.header__emergency-badge {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Header */
.header__main {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Logo with Pipe Design */
.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header__logo-pipe {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 2px solid #4b5563;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

.header__logo-pipe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(180deg, #1f2937 0%, #111827 50%, #1f2937 100%);
  transform: translateY(-50%);
  border-top: 2px solid #374151;
  border-bottom: 2px solid #374151;
}

.header__logo-flow {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 20px;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transform: translateY(-50%);
  border-radius: 4px;
  animation: pipeFlow 2s infinite linear;
  box-shadow: 0 0 10px var(--primary-light);
}

@keyframes pipeFlow {
  0% { left: -20px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 40px; opacity: 0; }
}

.header__logo-content {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.header__logo-name strong {
  color: var(--accent-light);
  font-weight: 800;
}

.header__logo-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-top: 2px;
}

/* Center Navigation */
.header__menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition-fast);
}

.header__menu-link::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-light);
  transform: translateX(-50%);
  transition: var(--transition-base);
  border-radius: 2px;
}

.header__menu-link:hover {
  background: rgba(255,255,255,0.1);
}

.header__menu-link:hover::before {
  width: calc(100% - 32px);
}

.header__menu-link--active::before {
  width: calc(100% - 32px);
}

.header__menu-link--accent {
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 16px;
}

.header__menu-link--accent::before {
  display: none;
}

.header__menu-link--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.header__menu-link--accent img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}

/* Action Zone */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__call:hover {
  background: rgba(255,255,255,0.2);
}

.header__call-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: callPulse 2s infinite;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
}

.header__call-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header__call-text {
  display: flex;
  flex-direction: column;
}

.header__call-text small {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.header__call-text strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.header__order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.header__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.header__order img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: var(--transition-fast);
}

.header__order:hover img {
  transform: translateX(3px);
}

/* Mobile Burger */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.header__burger:hover {
  background: rgba(255,255,255,0.2);
}

.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.header__drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0a3d1f 100%);
  z-index: 1001;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0,0,0,0.3);
}

.header__drawer.active {
  right: 0;
}

.header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header__drawer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.header__drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.header__drawer-close:hover {
  background: rgba(255,255,255,0.2);
}

.header__drawer-close img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.header__drawer-nav {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header__drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.header__drawer-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.header__drawer-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.header__drawer-cta {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}

.header__drawer-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--accent);
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header__drawer-phone:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

.header__drawer-phone img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.header__drawer-phone div {
  display: flex;
  flex-direction: column;
}

.header__drawer-phone small {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

.header__drawer-phone strong {
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.header__drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: var(--transition-fast);
}

.header__drawer-btn:hover {
  background: rgba(255,255,255,0.2);
}

.header__drawer-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header__drawer-info {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__drawer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
}

.header__drawer-badge img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Overlay */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  backdrop-filter: blur(4px);
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header Responsive */
@media (max-width: 1200px) {
  .header__menu-list {
    gap: 4px;
  }

  .header__menu-link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .header__call-text {
    display: none;
  }

  .header__call {
    padding: 8px;
    border-radius: 50%;
  }
}

@media (max-width: 1024px) {
  .header__menu,
  .header__actions {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__container {
    height: 64px;
  }
}

@media (max-width: 768px) {
  .header__emergency-badge {
    display: none;
  }

  .header__emergency-inner {
    gap: 8px;
  }

  .header__emergency span {
    font-size: 12px;
  }

  .header__drawer {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 480px) {
  .header__emergency {
    padding: 6px 0;
  }

  .header__emergency-pulse {
    display: none;
  }

  .header__emergency img {
    width: 14px;
    height: 14px;
  }

  .header__container {
    height: 60px;
    padding: 0 16px;
  }

  .header__logo-pipe {
    width: 40px;
    height: 40px;
  }

  .header__logo-name {
    font-size: 18px;
  }

  .header__logo-tagline {
    display: none;
  }

  .header__burger {
    width: 40px;
    height: 40px;
  }
}

/* =====================================================
   Container
   ===================================================== */
.fe-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =====================================================
   REVIEWS HERO
   ===================================================== */
.reviews-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d1f 100%);
  overflow: hidden;
}

.reviews-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reviews-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.reviews-hero__shape--1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.reviews-hero__shape--2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  bottom: -50px;
  left: -50px;
}

.reviews-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.reviews-hero__breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition-fast);
}

.reviews-hero__breadcrumb-link:hover {
  color: var(--white);
}

.reviews-hero__breadcrumb-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.reviews-hero__breadcrumb-sep {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.reviews-hero__breadcrumb-current {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.reviews-hero__content {
  position: relative;
  z-index: 1;
}

.reviews-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.reviews-hero__label img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(89%) saturate(1029%) hue-rotate(346deg) brightness(101%) contrast(96%);
}

.reviews-hero__title {
  color: var(--white);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.reviews-hero__desc {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.reviews-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-hero__stat-value {
  color: var(--accent-light);
  font-size: 32px;
  font-weight: 800;
}

.reviews-hero__stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* =====================================================
   REVIEWS MAIN
   ===================================================== */
.reviews-main {
  padding: 60px 0;
  background: var(--gray-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Review Card */
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__avatar img {
  width: 24px;
  height: 24px;
  filter: sepia(1) hue-rotate(90deg) saturate(3);
}

.review-card__info {
  flex: 1;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.review-card__rating {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card__service {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: var(--primary-pale);
  border-radius: 8px;
}

.review-card__service img {
  width: 14px;
  height: 14px;
  filter: sepia(1) hue-rotate(90deg) saturate(3);
}

.review-card__text {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.review-card__date {
  color: var(--gray-400);
  font-size: 12px;
}

/* =====================================================
   PAGINATION
   ===================================================== */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-pagination__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.reviews-pagination__btn:hover {
  background: var(--primary);
  color: var(--white);
}

.reviews-pagination__btn:hover img {
  filter: brightness(0) invert(1);
}

.reviews-pagination__btn img {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.reviews-pagination__numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-pagination__num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.reviews-pagination__num:hover {
  background: var(--primary-pale);
  color: var(--primary);
}

.reviews-pagination__num--active {
  background: var(--primary);
  color: var(--white);
}

.reviews-pagination__ellipsis {
  color: var(--gray-400);
  font-size: 14px;
}

/* =====================================================
   REVIEW FORM
   ===================================================== */
.reviews-form {
  padding: 60px 0;
  background: var(--white);
}

.reviews-form__wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: 40px;
}

.reviews-form__header {
  text-align: center;
  margin-bottom: 32px;
}

.reviews-form__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.reviews-form__label img {
  width: 16px;
  height: 16px;
  filter: sepia(1) hue-rotate(90deg) saturate(3);
}

.reviews-form__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.reviews-form__desc {
  color: var(--gray-600);
  font-size: 15px;
}

#jqr_review_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#jqr_review_form input,
#jqr_review_form textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition-fast);
  background: var(--white);
}

#jqr_review_form input:focus,
#jqr_review_form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-pale);
}

#jqr_review_form textarea {
  resize: vertical;
  min-height: 120px;
}

#jqr_review_form button[type="submit"] {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

#jqr_review_form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.jqr_star-rating i {
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.jqr_star-rating i.fas,
.jqr_star-rating i:hover,
.jqr_star-rating i:hover ~ i {
  color: var(--accent);
}

/* =====================================================
   REVIEWS CTA
   ===================================================== */
.reviews-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.reviews-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.reviews-cta__text {
  flex: 1;
  min-width: 280px;
}

.reviews-cta__title {
  color: var(--white);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}

.reviews-cta__desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.reviews-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.reviews-cta__btn--primary {
  background: var(--accent);
  color: var(--white);
}

.reviews-cta__btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.reviews-cta__btn--primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.reviews-cta__btn--secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.reviews-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.25);
}

.reviews-cta__btn--secondary img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-hero {
    padding: 140px 0 50px;
  }

  .reviews-hero__stats {
    gap: 24px;
  }

  .reviews-hero__stat-value {
    font-size: 28px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-form__wrapper {
    padding: 24px;
  }

  .reviews-cta__content {
    flex-direction: column;
    text-align: center;
  }

  .reviews-cta__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .reviews-hero {
    padding: 120px 0 40px;
  }

  .reviews-hero__title {
    font-size: 24px;
  }

  .reviews-hero__desc {
    font-size: 15px;
  }

  .review-card {
    padding: 20px;
  }

  .reviews-pagination {
    gap: 8px;
  }

  .reviews-pagination__btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .reviews-pagination__btn span {
    display: none;
  }

  .reviews-pagination__num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
