/* ============================================================
   GALLERY & ENHANCED HOMEPAGE STYLES
   Surrogacy.net.in — Added for real photos integration
   ============================================================ */

/* ---- Photo Strip (Scrolling Banner) ---- */
.photo-strip-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 2.5rem 0;
  overflow: hidden;
}
.photo-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.photo-strip-label {
  flex-shrink: 0;
  padding-left: 2rem;
  color: #fff;
  min-width: 220px;
}
.photo-strip-label .eyebrow-light {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #e8a4c8;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.photo-strip-label p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0;
}
.photo-strip-scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.photo-strip-track {
  display: flex;
  gap: 0.75rem;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.photo-strip-track:hover {
  animation-play-state: paused;
}
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-photo {
  width: 180px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, border-color 0.3s;
}
.strip-photo:hover {
  transform: scale(1.05);
  border-color: #e91e8c;
}
.strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- Masonry Gallery ---- */
.success-gallery-section {
  padding: 5rem 0;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  flex: 1;
  min-height: 200px;
}
.gallery-item--large {
  flex: 1.8;
  min-height: 280px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-overlay span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ---- Why Us Grid with Photo ---- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.why-us-photo {
  position: relative;
}
.why-photo-stack {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.why-photo-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: block;
}
.why-photo-secondary {
  width: 160px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: absolute;
  bottom: -24px;
  right: -24px;
}
.why-photo-badge {
  position: absolute;
  top: 20px;
  left: -16px;
  background: linear-gradient(135deg, #e91e8c, #ff6b9d);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(233,30,140,0.35);
  text-align: center;
  min-width: 100px;
}
.why-photo-badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.why-photo-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
}
.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(233,30,140,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
}
.why-feature p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: linear-gradient(135deg, #fef0f7 0%, #fff5fb 100%);
  padding: 5rem 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.testimonial-photo {
  height: 180px;
  overflow: hidden;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testimonial-body {
  padding: 1.5rem;
}
.stars {
  color: #f4a61a;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-body p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: #e91e8c;
}
.mt-1 { margin-top: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .photo-strip-label { display: none; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-col:last-child { display: none; }
  .why-us-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-photo-secondary { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .photo-strip-section { padding: 1.5rem 0; }
  .strip-photo { width: 130px; height: 100px; }
}


/* ============================================================
   AWARDS & RECOGNITION SECTION
   ============================================================ */

.awards-section {
  background: linear-gradient(180deg, #fff 0%, #f8f4ff 100%);
  padding: 5rem 0;
}
.awards-header {
  text-align: center;
  margin-bottom: 3rem;
}
.awards-header h2 {
  font-size: 2.2rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.awards-header p {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Award Card */
.award-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}
.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  border-color: #f4a61a;
}
.award-card--featured {
  border: 2px solid #f4a61a;
  box-shadow: 0 8px 40px rgba(244,166,26,0.2);
  transform: scale(1.03);
}
.award-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.award-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f4a61a, #ff9500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(244,166,26,0.4);
}

/* Media Logo Badge */
.award-media-logo {
  padding: 1rem 1.25rem 0;
}
.media-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  color: #fff;
}
.media-badge--red    { background: #cc0000; }
.media-badge--maroon { background: #8B0000; }
.media-badge--gold   { background: #1a1a2e; border: 1px solid #f4a61a; color: #f4a61a; }
.media-badge--blue   { background: #003087; }

/* Award Image */
.award-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-top: 0.75rem;
}
.award-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.award-card:hover .award-img-wrap img {
  transform: scale(1.05);
}

/* Award Info */
.award-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.award-year {
  display: inline-block;
  background: linear-gradient(135deg, #e91e8c10, #e91e8c20);
  color: #e91e8c;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
  border: 1px solid #e91e8c30;
}
.award-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.award-info p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Trust Strip */
.awards-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}
.trust-item {
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.trust-item strong {
  color: #f4a61a;
  font-size: 1.05rem;
}
.trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2rem; }
  .award-card--featured { transform: scale(1); }
  .award-card--featured:hover { transform: translateY(-8px); }
  .awards-trust-strip { gap: 0.75rem; }
  .trust-divider { display: none; }
}
