/* RS Widgets — Stylesheet */

/* ── Section Heading ── */
.rs-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #1A1A1A;
}

/* ── Hero ── */
.rs-hero {
  display: grid;
  align-items: center;
  min-height: 560px;
  background: #F8F6F2;
}
.rs-hero--split { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 4rem 0; }
.rs-hero--center { justify-items: center; text-align: center; padding: 5rem 2rem; }

.rs-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8963E;
  margin-bottom: 1rem;
}
.rs-hero__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}
.rs-hero__sub {
  font-size: 1.1rem;
  color: #6B6B6B;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.rs-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rs-hero__image { border-radius: 12px; overflow: hidden; }
.rs-hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact ── */
.rs-contact { display: grid; gap: 3rem; }
.rs-contact--split { grid-template-columns: 1fr 1fr; }
.rs-contact--stack { grid-template-columns: 1fr; }

.rs-contact__heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
.rs-contact__sub { color: #6B6B6B; line-height: 1.7; margin-bottom: 2rem; }

.rs-contact__details { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.rs-contact__details li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.rs-contact__details svg { flex-shrink: 0; color: #C8963E; margin-top: 2px; }
.rs-contact__details a { color: #1A1A1A; transition: color 0.2s; }
.rs-contact__details a:hover { color: #C8963E; }

.rs-contact__map { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; }

/* ── Team extras ── */
.rs-team--col-2 { grid-template-columns: repeat(2, 1fr); }
.rs-team--col-3 { grid-template-columns: repeat(3, 1fr); }
.rs-team--col-4 { grid-template-columns: repeat(4, 1fr); }

.rs-team-card--card { background: #fff; border: 1px solid #E5E1DC; border-radius: 8px; padding: 1.5rem; text-align: center; }
.rs-team-card--card .rs-team-card__image { width: 80px; height: 80px; }
.rs-team-card__placeholder { width: 120px; height: 120px; border-radius: 50%; background: #C8963E; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1rem; }
.rs-team-card__bio { font-size: 0.85rem; color: #6B6B6B; margin-top: 0.5rem; line-height: 1.6; }
.rs-team-card__linkedin { display: inline-flex; margin-top: 0.75rem; color: #0077B5; transition: opacity 0.2s; }
.rs-team-card__linkedin:hover { opacity: 0.7; }

/* ── Testimonials extras ── */
.rs-testimonials__grid--col-1 { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
.rs-testimonials__grid--col-2 { grid-template-columns: repeat(2, 1fr); }
.rs-testimonials__grid--col-3 { grid-template-columns: repeat(3, 1fr); }
.rs-testimonial__stars { color: #F59E0B; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.rs-testimonial__avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: #C8963E; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .rs-hero--split { grid-template-columns: 1fr; }
  .rs-hero__image { display: none; }
  .rs-contact--split { grid-template-columns: 1fr; }
  .rs-team--col-4 { grid-template-columns: repeat(2, 1fr); }
  .rs-testimonials__grid--col-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rs-team--col-2, .rs-team--col-3, .rs-team--col-4 { grid-template-columns: 1fr; }
  .rs-testimonials__grid--col-2, .rs-testimonials__grid--col-3 { grid-template-columns: 1fr; }
}

/* ── WhatsApp ── */
.rs-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 9999;
}
.rs-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }

.rs-whatsapp--fixed-right,
.rs-whatsapp--fixed-left {
  position: fixed;
  bottom: 1.5rem;
  padding: 0.875rem;
  border-radius: 50%;
}
.rs-whatsapp--fixed-right { right: 1.5rem; }
.rs-whatsapp--fixed-left  { left: 1.5rem; }

.rs-whatsapp--fixed-right:has(.rs-whatsapp__label),
.rs-whatsapp--fixed-left:has(.rs-whatsapp__label) {
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
}

.rs-whatsapp__label { white-space: nowrap; }

/* ── Product Grid ── */
.rs-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.rs-product-card {
  background: #fff;
  border: 1px solid #E5E1DC;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.rs-product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-2px); }

.rs-product-card__image { aspect-ratio: 1; overflow: hidden; }
.rs-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.rs-product-card:hover .rs-product-card__image img { transform: scale(1.05); }

.rs-product-card__body { padding: 1rem; }
.rs-product-card__title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.rs-product-card__cat { font-size: 0.75rem; color: #6B6B6B; margin-bottom: 0.75rem; }
.rs-product-card__enquire { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.8rem; font-weight: 600; color: #C8963E; border: 1.5px solid #C8963E; border-radius: 4px; padding: 0.375rem 0.875rem; transition: all 0.2s; }
.rs-product-card__enquire:hover { background: #C8963E; color: #fff; }

/* ── Testimonials ── */
.rs-testimonials { padding: 4rem 0; }
.rs-testimonials__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.rs-testimonial { background: #F8F6F2; border-radius: 8px; padding: 1.5rem; }
.rs-testimonial__text { font-size: 0.95rem; line-height: 1.7; color: #3A3A3A; margin-bottom: 1rem; }
.rs-testimonial__text::before { content: '\201C'; font-size: 2rem; color: #C8963E; line-height: 0; vertical-align: -0.5rem; margin-right: 0.25rem; }
.rs-testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.rs-testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.rs-testimonial__name { font-weight: 600; font-size: 0.875rem; }
.rs-testimonial__role { font-size: 0.75rem; color: #6B6B6B; }

/* ── Team ── */
.rs-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.rs-team-card { text-align: center; }
.rs-team-card__image { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; }
.rs-team-card__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; }
.rs-team-card__role { font-size: 0.8rem; color: #6B6B6B; }
