/* ============================================================
   PRIMUS REVIEWS PAGE – ADDITIONAL STYLES
   reviews.css — supplements style.css
   ============================================================ */

/* =================== REVIEWS HERO =================== */
.reviews-hero {
  position: relative;
  height: 520px;
  margin-top: 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.reviews-hero-bg {
  position: absolute;
  inset: 0;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.reviews-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite;
  transform-origin: center center;
}
.reviews-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}

.reviews-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px 64px;
}

.reviews-hero-label {
  display: inline-block;
  padding: 6px 20px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.reviews-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.reviews-hero-content p {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* =================== FILTER BAR =================== */
.reviews-filter-bar {
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.reviews-filter-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--body-gray);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.filter-tab:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  background: var(--white);
  flex: 1;
  max-width: 360px;
  margin-left: auto;
  transition: border-color var(--transition);
}
.filter-search:focus-within { border-color: var(--primary); }
.filter-search i { color: var(--body-gray); font-size: 14px; }
.filter-search input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  flex: 1;
  background: transparent;
}

/* =================== REVIEWS GRID =================== */
.reviews-grid-section {
  padding: 60px 0;
  background: var(--surface-cream);
}

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

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

/* =================== REVIEW CARD =================== */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid rgba(218,192,200,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(130,26,82,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
  object-fit: cover;
}

.reviewer-meta {
  flex: 1;
  min-width: 0;
}
.reviewer-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.reviewer-role {
  font-size: 12px;
  color: var(--body-gray);
  margin-top: 2px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  color: #22a75a;
  letter-spacing: 0.04em;
}
.verified-badge i { font-size: 11px; }

.review-stars {
  font-size: 16px;
  color: #F5A623;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13.5px;
  color: var(--body-gray);
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(218,192,200,0.4);
  gap: 8px;
}

.review-project {
  font-size: 10px;
  font-weight: 500;
  color: var(--body-gray);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.review-project strong {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.review-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(130,26,82,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-align: right;
  white-space: nowrap;
}

.reviews-see-more {
  text-align: center;
  padding-top: 8px;
}
.see-more-btn {
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 14px 48px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.see-more-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* =================== BLUE ZONE SECTION =================== */
.bluezone-section {
  padding: 100px 0;
  background: var(--white);
}

.bluezone-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.bluezone-img {
  flex: 0 0 auto;
  width: 360px;
}
.bluezone-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.bluezone-content { flex: 1; }
.bluezone-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}
.bluezone-content p {
  font-size: 16px;
  color: var(--body-gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.bluezone-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.bz-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-cream);
}
.bz-tag i { color: var(--primary); }

/* =================== ARTISTIC HUBS SECTION =================== */
.artistic-hubs-section {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.artistic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artistic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(98,0,58,0.88) 0%, rgba(130,26,82,0.65) 50%, transparent 100%);
}

.artistic-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  max-width: 500px;
  padding: 0 24px;
}

.artistic-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.artistic-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
}

.artistic-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--transition);
}
.artistic-btn:hover { background: var(--gold-dark); color: var(--white); }

/* =================== NEXT CHAPTER CTA =================== */
.next-chapter-section {
  padding: 100px 0;
  background: var(--white);
}

.next-chapter-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.next-chapter-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
}
.next-chapter-inner p {
  font-size: 16px;
  color: var(--body-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.next-chapter-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-solid {
  display: inline-block;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  transition: background var(--transition);
}
.btn-primary-solid:hover { background: var(--primary-dark); }

.btn-primary-outline {
  display: inline-block;
  padding: 16px 36px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Footer tagline */
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 260px;
}
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
}
.footer-bottom-social {
  display: flex;
  gap: 16px;
}
.footer-bottom-social a {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  transition: color var(--transition);
}
.footer-bottom-social a:hover { color: var(--gold); }

/* =================== REVIEWS RESPONSIVE =================== */
@media (max-width: 768px) {
  .reviews-hero { height: 400px; }
  .reviews-filter-bar .container { flex-direction: column; align-items: stretch; gap: 16px; }
  .filter-tabs { flex-wrap: wrap; justify-content: center; width: 100%; gap: 10px; }
  .filter-search { margin-left: 0; max-width: 100%; width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .bluezone-inner { flex-direction: column; gap: 32px; }
  .bluezone-img { width: 100%; }
  .artistic-hubs-section { height: 400px; }
  .artistic-overlay {
    background: linear-gradient(to bottom, rgba(98,0,58,0.8) 0%, rgba(130,26,82,0.7) 100%);
  }
  .artistic-content { position: static; transform: none; max-width: 100%; padding: 48px 24px; }
  .artistic-hubs-section { height: auto; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .review-card { padding: 20px 16px; }
  .reviews-hero-content { padding: 0 16px 48px; }
}

/* Active Navigation Link Styling */
.nav-links > li > a.active {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
  font-weight: 600;
}
.mobile-nav-links li a.active {
  color: var(--primary) !important;
  font-weight: 700;
}

/* Dark Theme Compatibility Overrides */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #ffffff !important;
    color: #1A1A1A !important;
  }
  .navbar {
    background: rgba(255,255,255,0.97) !important;
    border-bottom-color: rgba(218, 192, 200, 0.3) !important;
  }
  .nav-links > li > a {
    color: #1A1A1A !important;
  }
  .nav-links > li > a.enquiry-btn {
    color: #ffffff !important;
  }
  .nav-links > li > a.active {
    color: var(--primary) !important;
  }
  .reviews-filter-bar {
    background: #ffffff !important;
    border-bottom-color: var(--border) !important;
  }
  .filter-tab {
    background: #ffffff !important;
    color: var(--body-gray) !important;
    border-color: var(--border) !important;
  }
  .filter-tab.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
  }
  .filter-search {
    background: #ffffff !important;
    border-color: var(--border) !important;
  }
  .filter-search input {
    background: #ffffff !important;
    color: #1A1A1A !important;
  }
  .filter-search i {
    color: var(--body-gray) !important;
  }
  .reviews-grid-section {
    background: var(--surface-cream) !important;
  }
  .review-card {
    background: #ffffff !important;
    border-color: rgba(218,192,200,0.4) !important;
  }
  .reviewer-name {
    color: #1A1A1A !important;
  }
  .reviewer-role, .review-text, .review-project {
    color: var(--body-gray) !important;
  }
  .review-project strong {
    color: #1A1A1A !important;
  }
  .bluezone-section, .next-chapter-section {
    background: #ffffff !important;
  }
  .bluezone-content h2, .next-chapter-inner h2 {
    color: #1A1A1A !important;
  }
  .artistic-content h2 {
    color: #ffffff !important;
  }
  .bluezone-content p, .next-chapter-inner p {
    color: var(--body-gray) !important;
  }
  .bz-tag {
    background: var(--surface-cream) !important;
    border-color: var(--border) !important;
    color: #1A1A1A !important;
  }
  .footer {
    background: #ffffff !important;
    color: #1A1A1A !important;
  }
  .footer a {
    color: #1A1A1A !important;
  }
  .footer-tagline {
    color: var(--body-gray) !important;
  }
  .footer-bottom {
    border-top-color: var(--border) !important;
  }
  .footer-bottom p {
    color: var(--body-gray) !important;
  }
  .mobile-menu {
    background: #ffffff !important;
  }
  .mobile-nav-links a {
    color: #1A1A1A !important;
  }
  .mobile-has-children > span {
    color: #1A1A1A !important;
  }
  .mobile-submenu a {
    color: #1A1A1A !important;
  }
  .see-more-btn {
    background: var(--primary) !important;
    color: #ffffff !important;
  }
  .reviews-hero-content h1 {
    color: #ffffff !important;
  }
  .reviews-hero-content p {
    color: rgba(255,255,255,0.85) !important;
  }
  .reviews-hero-label {
    color: #ffffff !important;
  }
  .verified-badge {
    color: var(--primary) !important;
  }
  .review-tag {
    background: var(--surface-cream) !important;
    color: var(--primary) !important;
  }
  .review-stars {
    color: var(--gold) !important;
  }
  .btn-primary-solid {
    background: var(--primary) !important;
    color: #ffffff !important;
  }
  .btn-primary-outline {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background: transparent !important;
  }
}
