/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  transition: all var(--transition-normal);
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary-red);
  color: #fff;
  box-shadow: 0 8px 24px rgba(242, 0, 51, 0.25);
  border: 2px solid var(--color-primary-red);
}

.btn-primary:hover {
  background-color: #b00025;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 0, 51, 0.4);
  color: #fff;
}

/* ==========================================
   BLUE LIGHT CARD (CAPSULE BUTTON)
   ========================================== */
.blc-capsule {
  position: relative;
  display: inline-flex;
  height: 90px; /* Increased height even more */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px; /* Slightly squared for card look */
  padding: 0 15px; /* Tight padding for image focus */
  text-decoration: none !important;
  align-items: center;
  transition: all var(--transition-normal);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-left: 10px;
}

.blc-capsule:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0, 0.1);
  border-color: #001A72;
}

.blc-capsule-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blc-capsule-logo {
  height: 80px; /* Significantly larger */
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.blc-capsule-tag {
  position: absolute;
  top: -28px;
  right: -8px;
  display: flex;
  transform: rotate(5deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
}

.tag-special {
  background: #C00000;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  padding: 1px 6px;
  font-weight: 900;
}

.tag-offer {
  background: var(--color-accent-yellow);
  color: var(--color-primary-red);
  font-family: var(--font-hero);
  font-size: 1.1rem; /* Increased size */
  padding: 4px 14px; /* Increased padding */
  font-weight: 800;
  border-radius: 4px;
}

@media (max-width: 576px) {
  .blc-capsule {
    margin: 0.5rem auto 0;
    width: 100%;
    max-width: 280px;
    height: 85px; /* Increased for mobile */
    padding: 0 1.5rem;
    justify-content: center;
    border-radius: 16px;
    background: #fdfdfb;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .blc-capsule-logo {
    height: 70px; /* Increased for mobile */
  }
  .blc-capsule-tag {
    top: -18px;
    right: 50%;
    transform: translateX(50%) rotate(-4deg);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
}

.btn-secondary {
  background-color: #fff;
  color: var(--color-text-dark);
  border: 2px solid var(--color-text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  background-color: var(--color-accent-yellow);
  border-color: var(--color-accent-yellow);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}

.btn-light {
  background-color: #fff;
  color: var(--color-primary-red);
}

.btn-light:hover {
  background-color: var(--color-bg-light);
  transform: translateY(-2px);
}

/* ==========================================
   CARDS
   ========================================== */
.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-yellow);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary-red);
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  filter: grayscale(1);
}

.card:hover .card-icon {
  background: var(--color-accent-yellow);
  color: var(--color-text-dark);
  border-color: var(--color-accent-yellow);
  filter: grayscale(0);
}

/* ==========================================
   CONTACT ICONS (MONOCHROME)
   ========================================== */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #222; /* Dark background to make white icon pop */
  color: #fff; /* Pure white as requested */
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  transition: all var(--transition-normal);
}

.contact-icon:hover {
  background-color: var(--color-primary-red);
  transform: scale(1.1);
}

.footer .contact-icon {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.contact-icon.whatsapp {
  background-color: #25D366; /* Official WhatsApp Green */
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4);
}

.contact-icon.whatsapp svg {
  fill: #fff;
  stroke: none;
  width: 16px;
  height: 16px;
}

/* WhatsApp number styling - removed color overrides to allow matching surrounding text */
.whatsapp-text, 
a.whatsapp-text, 
.footer-col ul li a.whatsapp-text {
  text-decoration: none !important;
  text-shadow: none;
}

.whatsapp-text:hover {
  text-decoration: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  background-color: transparent;
}

/* Specific hover effect for all contact-related links */
.contact-info-link {
  transition: color var(--transition-fast) !important;
}

.contact-info-link:hover {
  color: var(--color-accent-yellow) !important;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid var(--color-accent-yellow);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 85px; /* Boosted for better impact */
  width: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: scale(1.03);
}



.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: var(--color-text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-red);
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-primary-red);
}

.nav-links a:hover::after {
  width: 100%;
  background: var(--color-accent-yellow);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text-dark);
}

@media (max-width: 992px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    box-shadow: var(--shadow-md);
    gap: 0;
  }
  .nav-links.mobile-open {
    max-height: 400px;
    padding: 1rem 0;
  }
  .nav-links a {
    padding: 0.85rem 2rem;
    border-bottom: 1px solid var(--color-border);
  }
  .header .btn-primary {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ==========================================
   SCROLL TO TOP BUTTON
   ========================================== */
#scroll-top-btn {
  display: none !important; /* Hidden as per request to avoid overlap with chatbot */
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 140px; 
  background-color: rgba(249, 249, 246, 0.4); /* Semi-transparent to show particles */
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none; /* Let clicks pass through to buttons */
}

.hero-img-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding-right: 2rem;
}

.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Stat Circle */
.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  transition: transform var(--transition-normal);
}

.stat-circle:hover {
  transform: translateY(-6px);
}

.stat-num {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--color-primary-red);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

.circular-text text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  fill: var(--color-text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.3;
  padding: 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-text-dark);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer .logo {
  display: block;
  height: auto; /* Reverting to natural flow */
  width: auto;
  max-width: 380px; /* Enhanced visibility threshold */
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(60, 60, 60, 0.4); /* Solid yet translucent dark gray requested */
  border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle thin light border */
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition-normal);
  text-decoration: none !important;
}

.social-icon:hover {
  background-color: var(--color-accent-yellow);
  border-color: var(--color-accent-yellow);
  color: var(--color-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 180, 0, 0.3);
}

.social-icon i {
  line-height: 1;
}

.footer .logo img {
  display: block;
  content: url('../assets/images/hss-footer-logo-yellow.png'); /* User-provided yellow HD asset */
  height: 85px; /* Matched exactly to header logo height */
  width: auto;
  filter: none; /* Native colors used */
  mix-blend-mode: screen; /* Strips black background and renders only colored elements */
  object-fit: contain;
}

.footer-grid {
  margin-bottom: 4rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-accent-yellow) !important;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-accent-yellow);
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-bg-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ==========================================
   LOGO RIBBON (MARQUEE)
   ========================================== */
.logo-ribbon {
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.3); /* Even more transparent */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logo-track {
  display: flex;
  width: calc(250px * 26); /* 13 logos duplicated (13+13=26) */
  animation: scroll 35s linear infinite; /* Faster energy for the ribbon */
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-normal);
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 13)); } /* Scrolls half-way to reset perfectly on 13 items */
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-step {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.process-step:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary-red);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.6);
}

.process-number {
  font-family: var(--font-hero);
  font-size: 3rem;
  color: rgba(242, 0, 51, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: all var(--transition-normal);
}

.process-step:hover .process-number {
  color: rgba(242, 0, 51, 0.2);
  transform: scale(1.1);
}

.process-content h3 {
  font-family: var(--font-hero);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary-red);
}

.process-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Timeline link for desktop */
@media (min-width: 1024px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--color-border) 0, var(--color-border) 10px, transparent 10px, transparent 20px);
    z-index: 1;
    opacity: 0.5;
  }
}

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

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}


.text-white { color: #fff !important; }



/* ==========================================
   ABOUT PAGE: STORY HERO
   ========================================== */
.about-story-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('../assets/images/about-us-story-active.jpeg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: #fff;
  overflow: hidden;
  margin: 4rem 0;
  border-radius: 30px;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.about-story-hero .container {
  position: relative;
  z-index: 2;
}

.story-content-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 850px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.story-content-card h2 {
  font-size: 4rem;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.accent-line {
  width: 100px;
  height: 5px;
  background: var(--color-primary-red);
  border-radius: 2px;
  margin-bottom: 2.5rem;
}

.text-white-muted {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding-top: 3rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-hero);
  font-size: 3rem;
  color: var(--color-accent-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .about-story-hero {
    margin: 2rem 1rem;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .about-story-hero {
    min-height: auto;
    background-attachment: scroll;
    padding: 5rem 1rem;
    margin: 2rem 0;
    border-radius: 0;
  }
  .story-content-card {
    padding: 3rem 1.5rem;
  }
  .story-content-card h2 {
    font-size: 2.8rem;
  }
  .story-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stat-value {
    font-size: 2.5rem;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonial-slider {
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTestimonials 40s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 400px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 5rem;
  color: var(--color-primary-red);
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--color-primary-red);
  font-size: 1.1rem;
  font-family: var(--font-hero);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-400px * 2 - 4rem)); }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 300px;
    padding: 2rem;
  }
}


/* ==========================================
   REVIEW RIBBON (GOOGLE REVIEWS)
   ========================================== */
.review-ribbon {
  padding: 5rem 0;
  background-color: var(--color-bg-white);
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--color-border);
}

.review-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: reviewScroll 120s linear infinite;
  padding: 1rem 0;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-card {
  width: 400px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-teal);
}

.review-author {
  font-weight: 700;
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-author::before {
  content: '';
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path fill="%23EA4335" d="M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z"/><path fill="%234285F4" d="M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z"/><path fill="%23FBBC05" d="M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z"/><path fill="%2334A853" d="M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z"/><path fill="none" d="M0 0h48v48H0z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.review-stars {
  color: #FFB400;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.review-content {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

@keyframes reviewScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .review-card {
    width: 320px;
    padding: 1.5rem;
  }
}
