/* Saree Run — Centered Title + Image Strip + Stats */

:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --text-muted: #666;
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
}

/* Hero */
.sr-hero {
  background: linear-gradient(180deg, #fff7f2 0%, #fff 100%);
  overflow: visible;
}

.sr-hero-top {
  padding: 60px 0 40px;
}

.sr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.sr-badge i {
  font-size: 1.1rem;
}

.sr-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.sr-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Image Strip */
.sr-image-strip {
  padding: 0 0 80px;
}

.sr-strip-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  border-radius: 20px;
  overflow: hidden;
}

.sr-strip-img {
  overflow: hidden;
  border-radius: 16px;
  height: 300px;
}

.sr-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sr-strip-img:hover img {
  transform: scale(1.05);
}

/* Stats Row */
.sr-stats-row {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sr-stat {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.sr-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(242, 101, 34, 0.15), transparent);
}

.sr-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.25);
}

.sr-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.sr-stat-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
}

.sr-stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Quote */
.sr-quote {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.06), rgba(242, 101, 34, 0.02));
  border-left: 4px solid var(--primary-color);
  border-radius: 0 14px 14px 0;
  padding: 18px 24px;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sr-quote > i {
  color: var(--primary-color);
  font-size: 1.2rem;
  opacity: 0.3;
}

.sr-quote p {
  color: #1a1b2e;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* Gallery Section */
.sr-gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, rgba(242, 101, 34, 0.02) 100%);
}

.sr-section-header {
  margin-bottom: 50px;
}

.sr-section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sr-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.sr-section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .sr-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sr-strip-img:last-child {
    display: none;
  }

  .sr-stats-row {
    flex-wrap: wrap;
    gap: 15px;
    max-width: 100%;
  }

  .sr-stat {
    flex: 0 0 45%;
    padding: 10px;
  }

  .sr-stat:not(:last-child)::after {
    display: none;
  }

  .sr-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sr-hero-top {
    padding: 40px 0 25px;
  }

  .sr-title {
    font-size: 2rem;
  }

  .sr-strip-grid {
    grid-template-columns: 1fr;
  }

  .sr-strip-img {
    height: 220px;
  }

  .sr-strip-img:last-child {
    display: block;
  }

  .sr-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 18px 12px;
    margin-top: -30px;
  }

  .sr-stat {
    flex: none;
    padding: 12px 8px;
  }

  .sr-stat-num {
    font-size: 1.3rem;
  }

  .sr-quote {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .sr-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
