/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 22 2026 | 06:14:06 */
/* ================================================================
   HERO SECTION CSS

================================================================ */

/* ── Variables ── */
:root {
  --ra-orange: #F2751A;
  --ra-orange-light: #FEF0E6;
  --ra-orange-text: #7A3A08;
  --ra-lime: #B8FB00;
  --ra-lime-text: #3D5500;
  --ra-grey: #F4F4F3;
  --ra-grey-border: #DEDEDD;
  --ra-grey-text: #6B6B68;
}

/* ── Section ── */
.ra-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--ra-grey-border);
}

.ra-hero__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}

/* ── Badge ── */
.ra-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /*background: var(--ra-lime)*/;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid #000000;
}

.ra-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3D5500;
  flex-shrink: 0;
}

/* ── Headline ── */
.ra-hero__title {
  font-size: 52px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0 0 16px;
}

.ra-hero__title em {
  color: var(--ra-orange);
  font-style: normal;
  display: block;
}

/* ── Subheading ── */
.ra-hero__sub {
  font-size: 16px;
  color: var(--ra-grey-text);
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 550px;
}

/* ── CTAs ── */
.ra-hero__ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ra-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ra-orange);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s;
}

.ra-hero__btn-primary:hover {
  background: #C25A0E;
}

.ra-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 1px solid #000000;
  transition: background 0.2s;
}

.ra-hero__btn-secondary:hover {
  background: #a8eb00;
}

/* ── Social proof ── */
.ra-hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--ra-grey-border);
}

.ra-hero__avatars {
  display: flex;
}

.ra-hero__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--ra-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ra-orange-text);
  margin-left: -8px;
  flex-shrink: 0;
}

.ra-hero__av:first-child {
  margin-left: 0;
}

.ra-hero__proof-text {
  font-size: 13px;
  color: var(--ra-grey-text);
  line-height: 1.5;
}

.ra-hero__proof-text strong {
  color: #111110;
}

.ra-hero__stars {
  color: var(--ra-orange);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

/* ── Video ── */
.ra-hero__video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ra-grey);
  aspect-ratio: 9 / 11;
  border: 1px solid var(--ra-grey-border);
}

.ra-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ra-hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--ra-orange);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(242, 117, 26, 0.45);
  transition: transform 0.25s, background 0.25s;
}

.ra-hero__play:hover {
  background: #C25A0E;
  transform: translate(-50%, -50%) scale(1.1);
}

.ra-hero__play-icon {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #ffffff;
}

.ra-hero__vbadge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: #ffffff;
  border: 1px solid var(--ra-grey-border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ra-hero__vbadge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ra-lime);
  flex-shrink: 0;
}

.ra-hero__vbadge-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #111110;
  line-height: 1.3;
}

.ra-hero__vbadge-role {
  font-size: 11px;
  color: var(--ra-grey-text);
}

/* ── Stats bar ── */
.ra-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ra-grey);
  border-top: 1px solid var(--ra-grey-border);
}

.ra-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid var(--ra-grey-border);
  text-align: center;
}

.ra-hero__stat:last-child {
  border-right: none;
}

.ra-hero__stat-n {
  font-size: 32px;
  font-weight: 700;
  color: #111110;
  line-height: 1;
  margin-bottom: 6px;
}

.ra-hero__stat-n em {
  color: var(--ra-orange);
  font-style: normal;
}

.ra-hero__stat-l {
  font-size: 13px;
  color: var(--ra-grey-text);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ra-hero__inner {
    grid-template-columns: 1fr 280px;
    gap: 32px;
    padding: 48px 24px 40px;
  }
  .ra-hero__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .ra-hero__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
  }
  .ra-hero__right {
    order: 1;
  }
  .ra-hero__video-wrap {
    aspect-ratio: 16 / 9;
  }
  .ra-hero__title {
    font-size: 30px!important;
  }
  .ra-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ra-hero__stat:nth-child(2) {
    border-right: none;
  }
  .ra-hero__stat:nth-child(1),
  .ra-hero__stat:nth-child(2) {
    border-bottom: 1px solid var(--ra-grey-border);
  }
}

@media (max-width: 480px) {
  .ra-hero__ctas {
    flex-direction: row;
    align-items: stretch;
  }
  .ra-hero__btn-primary,
  .ra-hero__btn-secondary {
    justify-content: center;
    flex: 1;
    font-size: 13px;
    padding: 12px 10px;
  }
}




/* ================================================================
   SERVICES SECTION CSS
   Paste into: WordPress Admin → Custom CSS & JS → Add CSS
   Requires hero CSS variables already added (--ra-orange etc.)
================================================================ */

/* ── Section wrapper ── */
.ra-svc {
  background: #ffffff;
}

.ra-svc__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* ── Section header ── */
.ra-svc__header {
  margin-bottom: 48px;
}

.ra-svc__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ra-orange);
  margin-bottom: 12px;
}

.ra-svc__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ra-orange);
}

.ra-svc__title {
  font-size: 40px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0 0 12px;
}

.ra-svc__title span {
  color: var(--ra-orange);
}

.ra-svc__sub {
  font-size: 16px;
  color: var(--ra-grey-text);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

/* ── Grid: 3 columns, 7th card centered ── */
.ra-svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ra-svc__card--last {
  grid-column: 2 / 3;
}

/* ── Card ── */
.ra-svc__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--ra-grey-border);
  border-radius: 14px;
  text-decoration: none !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.ra-svc__card:hover {
  border-color: var(--ra-orange);
  box-shadow: 0 4px 24px rgba(242, 117, 26, 0.1);
  transform: translateY(-3px);
}

/* ── Icon ── */
.ra-svc__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ra-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ra-orange);
  transition: background 0.2s, color 0.2s;
}

.ra-svc__card:hover .ra-svc__icon {
  background: var(--ra-orange);
  color: #ffffff;
}

/* ── Card body ── */
.ra-svc__card-body {
  flex: 1;
}

.ra-svc__name {
  font-size: 16px;
  font-weight: 700;
  color: #111110;
  margin: 0 0 8px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ra-svc__desc {
  font-size: 14px;
  color: var(--ra-grey-text);
  line-height: 1.65;
  margin: 0;
}

/* ── NEW badge ── */
.ra-svc__badge {
  display: inline-flex;
  align-items: center;
  background: var(--ra-orange);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 6px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Link row ── */
.ra-svc__link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ra-orange);
  margin-top: auto;
  transition: gap 0.2s;
}

.ra-svc__card:hover .ra-svc__link {
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ra-svc__inner {
    padding: 56px 24px;
  }
  .ra-svc__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ra-svc__card--last {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .ra-svc__inner {
    padding: 48px 20px;
  }
  .ra-svc__grid {
    grid-template-columns: 1fr;
  }
  .ra-svc__card--last {
    grid-column: auto;
  }
  .ra-svc__title {
    font-size: 26px!important;
  }
}





/* ================================================================
   RECENT WORKS SECTION CSS
   Paste into: WordPress Admin → Custom CSS & JS → Add CSS
   Requires hero CSS variables already added (--ra-orange etc.)
================================================================ */

/* ── Section ── */
.ra-works {
  background: var(--ra-grey);
  border-bottom: 1px solid var(--ra-grey-border);
}

.ra-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* ── Header ── */
.ra-works__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
}

.ra-works__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ra-orange);
  margin-bottom: 12px;
}

.ra-works__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ra-orange);
}

.ra-works__title {
  font-size: 40px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0;
}

.ra-works__title span {
  color: var(--ra-orange);
}

.ra-works__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ra-orange)!important;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s;
}

.ra-works__view-all:hover {
  gap: 10px;
}

/* ── Grid ── */
.ra-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card ── */
.ra-works__card {
  background: #ffffff;
  border: 1px solid var(--ra-grey-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ra-works__card:hover {
  border-color: var(--ra-orange);
  box-shadow: 0 6px 32px rgba(242, 117, 26, 0.1);
  transform: translateY(-3px);
}

/* ── Image ── */
.ra-works__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ra-grey);
}

.ra-works__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ra-works__card:hover .ra-works__img {
  transform: scale(1.04);
}

/* ── Hover overlay ── */
.ra-works__overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 117, 26, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ra-works__card:hover .ra-works__overlay {
  opacity: 1;
}

.ra-works__overlay-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

/* ── Body ── */
.ra-works__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ── Tags ── */
.ra-works__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ra-works__tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--ra-grey);
  color: var(--ra-grey-text);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--ra-grey-border);
}

/* ── Name ── */
.ra-works__name {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #111110 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

/* ── Description ── */
.ra-works__desc {
  font-size: 13px;
  color: var(--ra-grey-text);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ── Footer: result + cta ── */
.ra-works__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--ra-grey-border);
  margin-top: auto;
  gap: 8px;
}

.ra-works__result {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ra-lime);
  color: var(--ra-lime-text);
  padding: 4px 10px;
  border-radius: 999px;
}

.ra-works__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ra-orange);
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ra-works__inner {
    padding: 56px 24px;
  }
  .ra-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ra-works__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .ra-works__inner {
    padding: 48px 20px;
  }
  .ra-works__grid {
    grid-template-columns: 1fr;
  }
  .ra-works__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ra-works__title {
    font-size: 24px;
  }
}




/* ================================================================
   TESTIMONIALS SECTION CSS
   Paste into: WordPress Admin → Custom CSS & JS → Add CSS
   All new ra-tg-* classes — zero conflict with old slider CSS
================================================================ */

/* ── Section ── */
.ra-testi {
  background: #ffffff;

}

.ra-testi__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* ── Header ── */
.ra-testi__header {
  margin-bottom: 48px;
}

.ra-testi__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ra-orange);
  margin-bottom: 12px;
}

.ra-testi__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ra-orange);
}

.ra-testi__title {
  font-size: 40px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0;
}

.ra-testi__title span {
  color: var(--ra-orange);
}

/* ── 3-column grid ── */
.ra-tg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card: text left | video right ── */
.ra-tg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border: 1px solid var(--ra-grey-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
}

/* ── Text side ── */
.ra-tg-text {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

/* ── Stars ── */
.ra-tg-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.ra-tg-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--ra-orange);
}

/* ── Quote ── */
.ra-tg-quote {
  font-size: 13px !important;
  line-height: 1.72 !important;
  color: #2c2c2a !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

/* ── Client ── */
.ra-tg-client {
  padding-top: 16px;
  border-top: 1px solid var(--ra-grey-border);
  margin-top: auto;
}

.ra-tg-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111110 !important;
  margin: 0 0 3px !important;
  line-height: 1.3 !important;
}

.ra-tg-role {
  font-size: 12px !important;
  color: var(--ra-grey-text) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* ── Video side ── */
.ra-tg-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.ra-tg-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: transform 0.4s, opacity 0.3s;
}

.ra-tg-video:hover img {
  transform: scale(1.04);
  opacity: 1;
}

/* ── Play button — CSS triangle, no SVG ── */
.ra-tg-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--ra-orange);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(242, 117, 26, 0.5);
  pointer-events: none;
  transition: transform 0.25s, background 0.25s;
}

.ra-tg-video:hover .ra-tg-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #C25A0E;
}

.ra-tg-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
}

/* ── Video Modal ── */
#ra-tg-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#ra-tg-modal.open {
  display: flex;
}

.ra-tg-mbox {
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.ra-tg-mbox video,
.ra-tg-mbox iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

.ra-tg-mclose {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.ra-tg-mclose:hover {
  background: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ra-testi__inner {
    padding: 56px 24px;
  }
  .ra-tg-grid {
    grid-template-columns: 1fr;
  }
  .ra-tg-card {
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ra-testi__title{font-size: 26px!important;}
  .ra-tg-card {
    min-height: unset !important;
  }
  .ra-tg-video {
    min-height: 180px !important;
    max-height: 180px !important;
  }
  .ra-tg-text {
    padding: 16px !important;
  }
  .ra-tg-quote {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }
}



/* ================================================================
   BLOG SECTION HEADER CSS
   Paste into: WordPress Admin → Custom CSS & JS → Add CSS
================================================================ */

.ra-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.ra-blog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ra-orange);
  margin-bottom: 12px;
}

.ra-blog__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ra-orange);
}

.ra-blog__title {
  font-size: 40px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0;
}

.ra-blog__title span {
  color: var(--ra-orange);
}

.ra-blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ra-orange) !important;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s;
}

.ra-blog__view-all:hover {
  gap: 10px;
  color: var(--ra-orange) !important;
}

@media (max-width: 640px) {
  .ra-blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ra-blog__title {
    font-size: 26px!important;
  }
}



/* ================================================================
   CTA BAND SECTION CSS

================================================================ */

.ra-cta-band {
  background: var(--ra-orange);
  border-bottom: 1px solid #C25A0E;
}

.ra-cta-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── Text ── */
.ra-cta-band__title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.25 !important;
  margin: 0 0 10px !important;
}

.ra-cta-band__sub {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ── Buttons ── */
.ra-cta-band__btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.ra-cta-band__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ra-lime);
  color: var(--ra-lime-text) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s;
}

.ra-cta-band__btn-primary:hover {
  background: #a8eb00;
  color: var(--ra-lime-text) !important;
}

.ra-cta-band__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.ra-cta-band__btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

/* Left side: photo + text side by side */
.ra-cta-band__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
 
/* Photo wrap */
.ra-cta-band__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
 
/* Circular photo */
.ra-cta-band__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: block;
  border-radius: 50%!important;
}
 
/* Online green dot */
.ra-cta-band__photo-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ra-lime);
  border: 2px solid var(--ra-orange);
  display: block;
}
 
/* Responsive */
@media (max-width: 480px) {
  .ra-cta-band__left {
    flex-direction: column;
    /*align-items: flex-start;*/
    gap: 14px;
  }
}
 

/* ── Responsive ── */
@media (max-width: 900px) {
  .ra-cta-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 56px 24px;
    gap: 28px;
  }
  .ra-cta-band__btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ra-cta-band__inner {
    padding: 48px 20px;
  }
  .ra-cta-band__title {
    font-size: 22px !important;
  }
  .ra-cta-band__btns {
    flex-direction: column;
    width: 100%;
  }
  .ra-cta-band__btn-primary,
  .ra-cta-band__btn-secondary {
    justify-content: center;
    width: 100%;
  }
}




/* ================================================================
   CONTACT SECTION — Part 1: Header CSS
   Paste into: WordPress Admin → Custom CSS & JS → Add CSS
================================================================ */
 
.ra-contact__header {
  margin-bottom: 48px;
}
 
.ra-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ra-orange);
  margin-bottom: 12px;
}
 
.ra-contact__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ra-orange);
}
 
.ra-contact__title {
  font-size: 40px!important;
  font-weight: 700;
  color: #111110;
  line-height: 1.2;
  margin: 0;
}
 
.ra-contact__title span {
  color: var(--ra-orange);
}
 
@media (max-width: 640px) {
  .ra-contact__title {
    font-size: 26px!important;
  }
}





/* ================================================================
   CONTACT SECTION — Part 2: Left Column CSS

================================================================ */

.ra-contact__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Each why item ── */
.ra-contact__why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* ── Icon box ── */
.ra-contact__why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ra-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ra-orange);
}

/* ── Title ── */
.ra-contact__why-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111110 !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
}

/* ── Description ── */
.ra-contact__why-desc {
  font-size: 14px !important;
  color: var(--ra-grey-text) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* Trust line CSS — paste into Custom CSS & JS plugin */
.ra-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.ra-trust-line__icon {
  font-size: 13px;
  flex-shrink: 0;
  opacity: 0.6;
}

.ra-trust-line__text {
  font-size: 13px !important;
  color: var(--ra-grey-text) !important;
  line-height: 1.4 !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .ra-contact__left {
    gap: 22px;
  }
  .ra-contact__why-icon {
    width: 38px;
    height: 38px;
  }
}





/* ================================================================
   FOOTER CSS

================================================================ */
 
/* ── Footer wrapper ── */
.ra-footer {
  background: #111110;
  color: #ffffff;
}
 
.ra-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
 
/* ── Column title ── */
.ra-footer__col-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ra-orange) !important;
  margin-bottom: 20px !important;
  line-height: 1 !important;
}
 
/* ── Brand col ── */
.ra-footer__logo-text {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
 
.ra-footer__logo-img {
  height: 36px;
  width: 50%!important;
  display: block;
  margin-bottom: 16px;
}
 
.ra-footer__tagline {
  font-size: 14px !important;
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.7 !important;
  margin: 0 0 24px !important;
  max-width: 260px;
}
 
/* ── Social icons ── */
.ra-footer__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
 
.ra-footer__social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.2s, opacity 0.2s;
  border: none;
}
 
.ra-footer__social:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
 
.ra-footer__social svg {
  width: 16px;
  height: 16px;
}
 
.ra-footer__social--facebook  { background: #1877F2; color: #ffffff !important; }
.ra-footer__social--instagram { background: #E1306C; color: #ffffff !important; }
.ra-footer__social--linkedin  { background: #0A66C2; color: #ffffff !important; }
.ra-footer__social--whatsapp  { background: #25D366; color: #ffffff !important; }
.ra-footer__social--fiverr    { background: #1DBF73; color: #ffffff !important; font-size: 17px; font-weight: 900; font-family: Arial, sans-serif; letter-spacing: -1px; }
 
/* ── Service & quick links ── */
.ra-footer__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.ra-footer__links li {
  margin: 0 !important;
  padding: 0 !important;
}
 
.ra-footer__links a {
  font-size: 14px !important;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
  line-height: 1.4;
}
 
.ra-footer__links a:hover {
  color: #ffffff !important;
}
 
/* ── NEW badge in footer ── */
.ra-footer__new {
  font-size: 9px;
  font-weight: 700;
  background: var(--ra-orange);
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
 
/* ── Contact list ── */
.ra-footer__contact-list {
  list-style: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.ra-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
}
 
.ra-footer__contact-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
 
.ra-footer__contact-list a {
  font-size: 14px !important;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
 
.ra-footer__contact-list a:hover {
  color: #ffffff !important;
}
 
.ra-footer__avail {
  font-size: 13px;
  color: var(--ra-lime);
  font-weight: 500;
}
 
/* ── CTA button ── */
.ra-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ra-orange);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: background 0.2s;
}
 
.ra-footer__cta:hover {
  background: #C25A0E;
  color: #ffffff !important;
}
 
/* ── Bottom bar ── */
.ra-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
 
.ra-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
 
.ra-footer__copy {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  margin: 0 !important;
}
 
.ra-footer__bottom-links {
  display: flex;
  gap: 24px;
}
 
.ra-footer__bottom-links a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
 
.ra-footer__bottom-links a:hover {
  color: rgba(255,255,255,0.8) !important;
}
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .ra-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 24px 40px;
  }
  .ra-footer__col--brand {
    grid-column: 1 / -1;
  }
  .ra-footer__tagline {
    max-width: 100% !important;
  }
}
 
@media (max-width: 640px) {
  .ra-footer__inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 36px;
    gap: 32px;
  }
  .ra-footer__col--brand {
    grid-column: auto;
  }
  .ra-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }
  .ra-footer__bottom-links {
    gap: 16px;
  }
}