﻿/* Extracted from inline styles - reviews.html */

/* ═══════════════════════════════════════════════════════════
   REVIEWS PAGE — WHITE PREMIUM 2026 THEME (matches news page)
═══════════════════════════════════════════════════════════ */

/* ── HERO HEADER — deep blue banner ── */
.reviews-hero {
  position: relative;
  z-index: 2;
  padding: 140px 56px 80px;
  text-align: center;
  background: linear-gradient(135deg, #0033CC 0%, #0055FF 50%, #0044DD 100%);
  overflow: hidden;
}

.reviews-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.reviews-hero > * { position: relative; z-index: 1; }

.reviews-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.reviews-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  animation: reviewPulse 2s ease-in-out infinite;
}

@keyframes reviewPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.reviews-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.reviews-hero-title .title-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.8), #ffffff);
  background-size: 200% 100%;
  animation: gradFlow 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Stats row */
.reviews-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.reviews-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 24px;
}

.reviews-hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews-hero-stat-num .star-gold {
  color: #ffd166;
  font-size: 26px;
}

.reviews-hero-stat-lbl {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.reviews-hero-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* Write review CTA in hero */
.reviews-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #0033CC;
  border: none;
  border-radius: 100px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}

.reviews-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.reviews-hero-cta:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Verification message */
.verification-message {
  display: none;
  margin-top: 16px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.verification-message p { margin: 0; }

/* ── MAIN CONTENT AREA ── */
.reviews-content-area {
  position: relative;
  z-index: 2;
  padding: 60px 56px 100px;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

/* ── REVIEWS GRID ── */
.reviews-grid {
  display: grid;
  gap: 20px;
}

/* ── REVIEW CARD — Dark design ── */
.review-card {
  background: #141414;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 36px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* Left accent bar */
.review-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0055FF, #0088FF);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 0 2px 2px 0;
}

/* Top accent line */
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #0055FF 30%, #0088FF 50%, #0055FF 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 85, 255, 0.22);
  box-shadow:
    0 16px 48px rgba(0, 40, 120, 0.12),
    0 4px 16px rgba(0, 40, 120, 0.06);
}

.review-card:hover::before { transform: scaleY(1); }
.review-card:hover::after { opacity: 1; }

/* ── REVIEW HEADER ── */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055FF, #0033CC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 85, 255, 0.25);
}

.reviewer-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(39, 201, 63, 0.08);
  color: #1a9e30;
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(39, 201, 63, 0.2);
}

.review-date {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

/* Star rating display */
.star-rating {
  display: flex;
  gap: 3px;
  align-items: center;
}

.star {
  font-size: 20px;
  color: #f6ad55;
  line-height: 1;
}

.star.empty {
  color: rgba(255, 255, 255, 0.15);
}

/* Review content */
.review-content {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
  padding-left: 16px;
  border-left: 3px solid rgba(0, 85, 255, 0.3);
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: rgba(0, 0, 0, 0.3);
  background: #f8faff;
  border: 1.5px solid rgba(0, 60, 180, 0.08);
  border-radius: 20px;
}

.empty-state h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.empty-state p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
  line-height: 1.7;
}

/* ── REVIEW MODAL ── */
.review-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.review-modal.active { display: flex; }

.review-modal-content {
  background: #ffffff;
  border: 1.5px solid rgba(0, 85, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 40, 120, 0.2);
  position: relative;
}

/* Blue top accent on modal */
.review-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #0055FF 30%, #0088FF 50%, #0055FF 70%, transparent 100%);
  border-radius: 24px 24px 0 0;
}

.review-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.review-modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #0a1628;
  letter-spacing: 0.06em;
}

.review-modal-close {
  background: #f4f7ff;
  border: 1px solid rgba(0, 60, 180, 0.1);
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.review-modal-close:hover {
  background: rgba(0, 85, 255, 0.06);
  color: #0055FF;
  border-color: rgba(0, 85, 255, 0.2);
}

.review-form-group {
  margin-bottom: 24px;
}

.review-form-label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.star-rating-input {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.star-input {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.star-input:hover,
.star-input.selected {
  color: #f6ad55;
  transform: scale(1.15);
}

.review-textarea {
  width: 100%;
  min-height: 150px;
  padding: 16px 20px;
  background: #f8faff;
  border: 1.5px solid rgba(0, 60, 180, 0.12);
  border-radius: 12px;
  color: #0a1628;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
  line-height: 1.7;
}

.review-textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.review-textarea:focus {
  border-color: rgba(0, 85, 255, 0.4);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.08);
  background: #ffffff;
}

.review-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0055FF, #0033CC, #0055FF);
  background-size: 200% 200%;
  animation: gradFlow 6s ease infinite;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 24px rgba(0, 85, 255, 0.35);
}

.review-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 85, 255, 0.45);
}

.review-submit-btn:disabled {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.3);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  animation: none;
}

/* ── CUSTOM MODAL (notification) ── */
.custom-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.custom-modal-overlay.active { display: flex; }

.custom-modal {
  background: #ffffff;
  border: 1.5px solid rgba(0, 85, 255, 0.2);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 40px 100px rgba(0, 40, 120, 0.2);
}

.custom-modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0, 60, 180, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-modal-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: #0a1628;
  letter-spacing: 0.08em;
}

.custom-modal-close {
  background: #f4f7ff;
  border: 1px solid rgba(0, 60, 180, 0.1);
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.custom-modal-close:hover {
  background: rgba(0, 85, 255, 0.06);
  color: #0055FF;
  border-color: rgba(0, 85, 255, 0.2);
}

.custom-modal-body {
  padding: 24px 28px;
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.custom-modal-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(0, 60, 180, 0.08);
  display: flex;
  justify-content: flex-end;
}

.custom-modal-btn {
  padding: 10px 28px;
  background: linear-gradient(135deg, #0055FF, #0033CC);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.custom-modal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 85, 255, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .reviews-hero { padding: 120px 24px 60px; }
  .reviews-content-area { padding: 40px 24px 80px; }
  .review-card { padding: 24px 20px; }
  .reviews-hero-stats { flex-wrap: wrap; gap: 8px; }
  .reviews-hero-stat-div { display: none; }
  .reviews-hero-stat { padding: 8px 16px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; }
}

@media (max-width: 640px) {
  .reviews-hero-title { font-size: clamp(56px, 14vw, 80px); }
  .review-header { flex-direction: column; gap: 12px; }
  .review-modal-content { padding: 28px 20px; }
}

