/* reviews.css — page-specific styles only.
   Tokens/reset/base + shared buttons live in base.css;
   site chrome lives in header.css / footer.css. */

:root { --muted: #64748b; }
body { line-height: 1.65; }

/* ============================================================
   reviews.css — Google Reviews carousel page
   Alex's Dry Cleaning Valet · alexdryclean.net/reviews/
   Edit this file directly — push-adv syncs it to the server.
   ============================================================ */

/* ── Header ───────────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────── */
.reviews-hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: #fff;
  text-align: center;
  padding: var(--hero-pt) 2rem 3.5rem;
}

.reviews-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-stars {
  color: var(--gold-accent);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.hero-rating {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-count {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.hero-google-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
  text-decoration: none;
}

.hero-google-tag:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ── Carousel section ─────────────────────────────────────── */
.reviews-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 3rem;
  position: relative;
}

.reviews-carousel-wrapper {
  position: relative;
}

.reviews-track-outer {
  overflow: hidden;
  border-radius: 14px;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Review card ──────────────────────────────────────────── */
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 220px;
}

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

.reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviewer-name a {
  color: inherit;
  text-decoration: none;
}

.reviewer-name a:hover { color: var(--navy-dark); }

.review-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  color: var(--gold-accent);
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1;
}

.review-body { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

.review-text {
  font-size: 0.86rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.review-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  align-self: flex-start;
  font-family: inherit;
}

.review-toggle:hover { color: var(--gold-accent); }

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0ed;
}

/* ── Arrows ───────────────────────────────────────────────── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: background 0.15s, transform 0.15s;
  user-select: none;
}

.carousel-arrow:hover {
  background: var(--gold-accent);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev { left: -1.6rem; }
.carousel-arrow.next { right: -1.6rem; }

/* ── Dots ─────────────────────────────────────────────────── */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.dot.active {
  background: var(--navy-dark);
  transform: scale(1.3);
}

/* ── Why section ─────────────────────────────────────────── */
.why-section {
  background: #fff;
  padding: 3.5rem 2rem;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy-dark);
  margin: 0 0 0.6rem;
}

.why-subhead {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 2.4rem;
  line-height: 1.65;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.differentiator {
  background: var(--bg-page);
  border-radius: 10px;
  padding: 1.25rem 1.25rem 1.4rem;
  border-top: 3px solid var(--gold-accent);
}

.diff-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.differentiator p {
  margin: 0;
  font-size: 0.84rem;
  color: #4b5563;
  line-height: 1.6;
}

.pro-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pro-card {
  background: var(--bg-page);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--gold-accent);
}

.pro-quote {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 0 0.85rem;
}

.pro-cite {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--muted);
  text-transform: uppercase;
  font-style: normal;
}

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

@media (max-width: 639px) {
  .differentiators-grid { grid-template-columns: 1fr; }
  .pro-testimonials { grid-template-columns: 1fr; }
}

/* ── Footer ───────────────────────────────────────────────── */

/* ── Service area section ─────────────────────────────────── */
.service-area-section {
  background: var(--navy-dark);
  color: #fff;
  margin-top: 1rem;
  padding: 3rem 2rem;
}

.service-area-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-area-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
}

.service-area-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 0 1.8rem;
}

.service-area-desc a {
  color: var(--gold-accent);
  text-decoration: none;
}

.service-area-desc a:hover { text-decoration: underline; }

.area-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.area-links-grid a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.area-links-grid a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

/* ── CTA strip ────────────────────────────────────────────── */
.reviews-cta {
  text-align: center;
  margin: 2.5rem 0 3rem;
}

.btn-leave-review {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--navy-dark);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-leave-review:hover { background: var(--gold-accent); color: var(--navy-dark); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .reviews-section { padding: 0 2.5rem; }
  .review-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 639px) {
  .reviews-section { padding: 0 2rem; }
  .review-card { flex: 0 0 100%; }
  .carousel-arrow.prev { left: -0.9rem; }
  .carousel-arrow.next { right: -0.9rem; }
  .reviews-hero { padding: var(--hero-pt) 1.2rem 2.5rem; }

  

  
  

  

  
}
