/* ==========================================================================
   ROYAL HOME PAINTERS — HOMEPAGE STYLES
   For: GeneratePress Theme + GenerateBlocks Pro
   Load on: Homepage only
   ========================================================================== */


/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.rhp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--rhp-navy);
  overflow: hidden;
}
.rhp-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rhp-navy-dark) 0%, var(--rhp-navy) 40%, #1e3a5f 100%);
}
.rhp-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 1) 40px, rgba(255, 255, 255, 1) 41px);
}
.rhp-hero .rhp-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
/* SEO H1: keyword-rich, styled as a small label */
.rhp-hero h1 {
  font-family: var(--rhp-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rhp-gold);
  margin: 0 0 20px 0;
}
/* Visual headline: styled like a heading */
.rhp-hero-headline {
  font-family: var(--rhp-heading);
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 600;
  color: var(--rhp-white);
  line-height: 1.15;
  margin: 0 0 20px 0;
}
.rhp-hero-headline em {
  font-style: italic;
  color: var(--rhp-gold);
}
.rhp-hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px 0;
  max-width: 440px;
  font-family: var(--rhp-body);
}
.rhp-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.rhp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--rhp-body);
}


/* ==========================================================================
   SECTION 2: TRUST BAR
   ========================================================================== */
.rhp-trust-bar {
  background: var(--rhp-cream);
  border-bottom: 1px solid var(--rhp-cream-dark);
  padding: 20px 0;
}
.rhp-trust-bar .rhp-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.rhp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rhp-text-secondary);
  font-family: var(--rhp-body);
}
.rhp-trust-icon {
  width: 32px;
  height: 32px;
  background: var(--rhp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--rhp-shadow-sm);
  font-size: 14px;
  flex-shrink: 0;
}


/* ==========================================================================
   SECTION 3: AWARDS
   ========================================================================== */
.rhp-awards {
  padding: 48px 0;
  background: var(--rhp-white);
  border-bottom: 1px solid #f0ede6;
}
.rhp-awards-header {
  text-align: center;
  margin-bottom: 28px;
}
.rhp-awards-header h2 {
  font-family: var(--rhp-heading);
  font-size: 22px;
  color: var(--rhp-navy);
  margin: 0 0 4px 0;
}
.rhp-awards-header p {
  font-size: 14px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
  margin: 0;
}
.rhp-awards-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rhp-award-card {
  background: var(--rhp-navy);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  min-width: 160px;
  max-width: 200px;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.rhp-award-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1;
  font-family: var(--rhp-body);
}
.rhp-award-logo.houzz { color: #7bc043; }
.rhp-award-logo.homestars { color: #00b4e4; }
.rhp-award-logo.tbr { color: var(--rhp-gold); }
.rhp-award-logo.google-award { color: var(--rhp-google-blue); }
.rhp-award-stars {
  color: var(--rhp-google-star);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.rhp-award-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  font-family: var(--rhp-body);
}
.rhp-award-text strong {
  color: var(--rhp-white);
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}


/* ==========================================================================
   SECTION 4: AIO INTRO (SEO Paragraph)
   ========================================================================== */
.rhp-aio-intro {
  padding: 48px 0;
  background: var(--rhp-off-white);
  border-bottom: 1px solid #f0ede6;
}
.rhp-aio-intro .rhp-container {
  max-width: 800px;
  text-align: center;
}
.rhp-aio-intro p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--rhp-text-secondary);
  font-family: var(--rhp-body);
  margin: 0;
}
.rhp-aio-intro p strong {
  color: var(--rhp-navy);
  font-weight: 600;
}


/* ==========================================================================
   SECTION 5: SERVICES
   ========================================================================== */
.rhp-services {
  padding: 72px 0;
  background: var(--rhp-white);
}
.rhp-services-header {
  text-align: center;
  margin-bottom: 40px;
}
.rhp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.rhp-service-card {
  background: var(--rhp-off-white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid #f0ede6;
  position: relative;
  text-decoration: none;
  display: block;
}
.rhp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rhp-shadow-lg);
  border-color: var(--rhp-gold);
}
.rhp-sc-img {
  height: 180px;
  background: var(--rhp-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.rhp-sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-sc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--rhp-gold);
  color: var(--rhp-navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 2;
  font-family: var(--rhp-body);
}
.rhp-sc-body {
  padding: 20px 16px;
}
.rhp-sc-body h3 {
  font-family: var(--rhp-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 6px 0;
}
.rhp-sc-body p {
  font-size: 13px;
  color: var(--rhp-text-secondary);
  line-height: 1.6;
  margin: 0 0 12px 0;
  font-family: var(--rhp-body);
}
.rhp-sc-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--rhp-gold-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--rhp-body);
}
.rhp-services-also {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
}
.rhp-services-also a {
  color: var(--rhp-navy);
  text-decoration: underline;
}
.rhp-services-also a:hover {
  color: var(--rhp-gold-dark);
}


/* ==========================================================================
   SECTION 6: ABOUT THE OWNER
   ========================================================================== */
.rhp-owner {
  padding: 80px 0;
  background: var(--rhp-cream);
}
.rhp-owner-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.rhp-owner-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #d4c5a9, #e8dcc8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rhp-text-light);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.rhp-owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-owner-yrs {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--rhp-navy);
  color: var(--rhp-gold);
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: var(--rhp-shadow-md);
  font-family: var(--rhp-body);
}
.rhp-owner-yrs strong {
  display: block;
  font-size: 22px;
  font-family: var(--rhp-heading);
  line-height: 1;
}
.rhp-owner-content h2 {
  font-family: var(--rhp-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--rhp-navy);
  margin: 0 0 16px 0;
  font-weight: 600;
  line-height: 1.2;
}
.rhp-owner-content > p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--rhp-text-secondary);
  margin: 0 0 16px 0;
  font-family: var(--rhp-body);
}
.rhp-owner-sig {
  font-family: var(--rhp-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--rhp-navy);
  margin-top: 20px;
}
.rhp-owner-sig span {
  display: block;
  font-family: var(--rhp-body);
  font-size: 13px;
  font-style: normal;
  color: var(--rhp-text-light);
  margin-top: 2px;
}


/* ==========================================================================
   SECTION 7: WHY US
   ========================================================================== */
.rhp-why-us {
  padding: 72px 0;
  background: var(--rhp-white);
}
.rhp-why-us-header {
  text-align: center;
  margin-bottom: 40px;
}
.rhp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rhp-why-card {
  text-align: center;
  padding: 24px 16px;
}
.rhp-why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--rhp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
  border: 1px solid var(--rhp-cream-dark);
}
.rhp-why-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 6px 0;
  font-family: var(--rhp-body);
}
.rhp-why-card p {
  font-size: 13px;
  color: var(--rhp-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--rhp-body);
}


/* ==========================================================================
   SECTION 8: GALLERY
   ========================================================================== */
.rhp-gallery {
  padding: 72px 0;
  background: var(--rhp-navy);
  position: relative;
  overflow: hidden;
}
.rhp-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rhp-navy-dark), var(--rhp-navy), #1e3a5f);
}
.rhp-gallery .rhp-container {
  position: relative;
  z-index: 1;
}
.rhp-gallery .rhp-label { color: var(--rhp-gold); }
.rhp-gallery .rhp-title { color: var(--rhp-white); }
.rhp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.rhp-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  position: relative;
}
.rhp-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-gallery-item:hover {
  border-color: var(--rhp-gold);
  transform: translateY(-4px);
}
.rhp-gallery-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rhp-gold);
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--rhp-body);
  position: relative;
  z-index: 2;
}
.rhp-gallery-title-text {
  font-family: var(--rhp-heading);
  font-size: 16px;
  color: var(--rhp-white);
  margin-bottom: 3px;
  position: relative;
  z-index: 2;
}
.rhp-gallery-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--rhp-body);
  position: relative;
  z-index: 2;
}
.rhp-gallery-item-cta {
  background: rgba(201, 169, 96, 0.1);
  border-color: rgba(201, 169, 96, 0.3);
}
.rhp-gallery-item-cta:hover {
  background: rgba(201, 169, 96, 0.2);
}


/* ==========================================================================
   SECTION 9: SERVICE AREAS
   ========================================================================== */
.rhp-areas {
  padding: 64px 0;
  background: var(--rhp-cream);
}
.rhp-areas-header {
  text-align: center;
  margin-bottom: 32px;
}
.rhp-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.rhp-area-chip {
  padding: 9px 18px;
  background: var(--rhp-white);
  border: 1px solid #e8e3d8;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rhp-navy);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--rhp-body);
}
.rhp-area-chip:hover {
  background: var(--rhp-navy);
  color: var(--rhp-white);
  border-color: var(--rhp-navy);
  transform: translateY(-2px);
}
.rhp-area-chip.primary {
  background: var(--rhp-navy);
  color: var(--rhp-white);
  border-color: var(--rhp-navy);
}
.rhp-area-chip.primary:hover {
  background: var(--rhp-navy-light);
}


/* ==========================================================================
   SECTION 10: GOOGLE REVIEWS
   ========================================================================== */
.rhp-reviews {
  padding: 72px 0;
  background: var(--rhp-white);
}
.rhp-reviews-header {
  text-align: center;
  margin-bottom: 12px;
}
.rhp-google-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--rhp-off-white);
  border-radius: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #f0ede6;
}
.rhp-google-g {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--rhp-body);
}
.rhp-google-g .g-b { color: #4285f4; }
.rhp-google-g .g-r { color: #ea4335; }
.rhp-google-g .g-y { color: #fbbc04; }
.rhp-google-g .g-g { color: #34a853; }
.rhp-google-rating-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--rhp-text-primary);
  line-height: 1;
  font-family: var(--rhp-body);
}
.rhp-google-stars {
  color: var(--rhp-google-star);
  font-size: 18px;
  letter-spacing: 1px;
}
.rhp-google-count {
  font-size: 13px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
}
.rhp-google-link {
  font-size: 13px;
  color: var(--rhp-google-blue);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--rhp-body);
}
.rhp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rhp-review-card {
  background: var(--rhp-white);
  border: 1px solid #e8e5dd;
  border-radius: 8px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}
.rhp-review-card:hover {
  box-shadow: var(--rhp-shadow-md);
}


/* ==========================================================================
   SECTION 11: PROCESS
   ========================================================================== */
.rhp-process {
  padding: 72px 0;
  background: var(--rhp-off-white);
  border-top: 1px solid #f0ede6;
}
.rhp-process-header {
  text-align: center;
  margin-bottom: 40px;
}
.rhp-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rhp-process-step {
  text-align: center;
  position: relative;
}
.rhp-process-step-num {
  font-family: var(--rhp-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--rhp-cream-dark);
  margin-bottom: 10px;
  line-height: 1;
}
.rhp-process-step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 6px 0;
  font-family: var(--rhp-body);
}
.rhp-process-step p {
  font-size: 13px;
  color: var(--rhp-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--rhp-body);
}
.rhp-process-step-connector {
  position: absolute;
  top: 26px;
  right: -10px;
  color: var(--rhp-gold);
  font-size: 14px;
}


/* ==========================================================================
   SECTION 12: VIDEOS
   ========================================================================== */
.rhp-videos {
  padding: 72px 0;
  background: var(--rhp-white);
  border-top: 1px solid #f0ede6;
}
.rhp-videos-header {
  text-align: center;
  margin-bottom: 32px;
}
.rhp-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rhp-video-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0ede6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rhp-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rhp-shadow-md);
  border-color: var(--rhp-gold-light);
}
.rhp-video-thumb {
  aspect-ratio: 16 / 9;
  background: var(--rhp-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rhp-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-play-btn {
  width: 52px;
  height: 52px;
  background: rgba(234, 67, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
}
.rhp-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid var(--rhp-white);
  margin-left: 4px;
}
.rhp-video-body {
  padding: 14px 16px;
}
.rhp-video-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 4px 0;
  font-family: var(--rhp-body);
}
.rhp-video-body p {
  font-size: 12px;
  color: var(--rhp-text-light);
  margin: 0;
  font-family: var(--rhp-body);
}


/* ==========================================================================
   SECTION 13: BLOG TEASERS
   ========================================================================== */
.rhp-blog-teasers {
  padding: 72px 0;
  background: var(--rhp-off-white);
  border-top: 1px solid #f0ede6;
}
.rhp-blog-teasers-header {
  text-align: center;
  margin-bottom: 40px;
}
.rhp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rhp-blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0ede6;
  background: var(--rhp-white);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.rhp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rhp-shadow-md);
  border-color: var(--rhp-gold-light);
}
.rhp-blog-card-img {
  height: 160px;
  background: var(--rhp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--rhp-text-light);
  overflow: hidden;
}
.rhp-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-blog-card-body {
  padding: 18px 16px;
}
.rhp-blog-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rhp-gold-dark);
  margin-bottom: 6px;
  font-family: var(--rhp-body);
}
.rhp-blog-card-body h3 {
  font-family: var(--rhp-heading);
  font-size: 17px;
  color: var(--rhp-navy);
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.rhp-blog-card-body p {
  font-size: 13px;
  color: var(--rhp-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--rhp-body);
}


/* ==========================================================================
   SECTION 14: FAQ (Homepage wrapper only — base .rhp-faq-* is in style.css)
   ========================================================================== */
.rhp-faq {
  padding: 72px 0;
  background: var(--rhp-white);
}
.rhp-faq-header {
  text-align: center;
  margin-bottom: 36px;
}


/* ==========================================================================
   HOMEPAGE: HERO & DARK-SECTION READABILITY OVERRIDES
   ========================================================================== */
/* ===== RESTORE dark-section text that got overridden ===== */
.rhp-hero .rhp-hero-headline {
  color: var(--rhp-white) !important;
  font-family: var(--rhp-heading) !important;
}

.rhp-hero .rhp-hero-text {
  color: rgba(255,255,255,0.65) !important;
  font-size: 16px !important;
}

.rhp-hero .rhp-hero-trust-item {
  color: rgba(255,255,255,0.55) !important;
}

.rhp-hero h1 {
  color: var(--rhp-gold) !important;
}

/* Gallery section (dark background) */
.rhp-gallery p,
.rhp-gallery .rhp-section-subtitle {
  color: rgba(255,255,255,0.6) !important;
}

/* ===== HERO HEADLINE FIX ===== */
.rhp-hero p.rhp-hero-headline {
  font-family: var(--rhp-heading) !important;
  font-size: clamp(34px, 4.5vw, 50px) !important;
  font-weight: 600 !important;
  color: var(--rhp-white) !important;
  line-height: 1.15 !important;
  margin-bottom: 20px !important;
}

.rhp-hero p.rhp-hero-headline em {
  font-style: italic !important;
  color: var(--rhp-gold) !important;
}


/* ==========================================================================
   HOMEPAGE RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 900px) {
  .rhp-hero .rhp-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rhp-hero-form { max-width: 100%; }
  .rhp-services-grid,
  .rhp-reviews-grid,
  .rhp-blog-grid,
  .rhp-videos-grid {
    grid-template-columns: 1fr;
  }
  .rhp-why-grid,
  .rhp-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .rhp-owner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rhp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rhp-process-step-connector {
    display: none;
  }
  .rhp-awards-grid {
    gap: 12px;
  }
  .rhp-award-card {
    min-width: 140px;
    padding: 14px 12px;
  }
}

@media (max-width: 480px) {
  .rhp-hero-form .rhp-form-row {
    grid-template-columns: 1fr;
  }
  .rhp-why-grid,
  .rhp-process-steps {
    grid-template-columns: 1fr;
  }
  .rhp-gallery-grid {
    grid-template-columns: 1fr;
  }
  .rhp-google-aggregate {
    flex-direction: column;
    text-align: center;
  }
}
