/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   CONTACT.HTML
   03. CONTACT HERO
   ========================================================= */


/* =========================================================
   01. HERO
   ========================================================= */

.rj-contact-hero {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 54%)
    minmax(0, 46%);

  width: 100%;

  /*
    Nunca permitimos que Contact Hero +
    Topbar + Header superen 100svh.
  */

  height:
    min(
      clamp(
        350px,
        34vw,
        440px
      ),
      var(--rj-first-screen-height)
    );

  overflow: hidden;

  isolation: isolate;

  background:
    var(--rj-white);
}


/* =========================================================
   02. LEFT CONTENT
   ========================================================= */

.rj-contact-hero__content {
  position: relative;

  z-index: 4;

  display: flex;

  align-items: center;

  min-width: 0;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--rj-white) 0%,
      #F7F8F8 56%,
      var(--rj-gray-soft) 100%
    );
}


/* mineral / painted texture */

.rj-contact-hero__content::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.2;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190' viewBox='0 0 190 190'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.065'/%3E%3C/svg%3E"
    );

  mix-blend-mode:
    multiply;
}


/* =========================================================
   03. CONTENT INNER
   ========================================================= */

.rj-contact-hero__inner {
  position: relative;

  z-index: 2;

  width:
    min(
      100%,
      760px
    );

  margin-left:
    max(
      var(--rj-gutter),
      calc(
        (100vw - var(--rj-container)) / 2 +
        var(--rj-gutter)
      )
    );

  padding:
    30px
    clamp(
      60px,
      5vw,
      95px
    )
    30px
    0;
}


/* =========================================================
   04. BREADCRUMB
   ========================================================= */

.rj-contact-hero__breadcrumb {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 18px;

  font-size: 0.8rem;
  font-weight: 600;

  line-height: 1;

  color:
    var(--rj-text-soft);
}


.rj-contact-hero__breadcrumb a {
  color:
    var(--rj-navy);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-contact-hero__breadcrumb a:hover {
  color:
    var(--rj-blue);
}


.rj-contact-hero__breadcrumb > span:nth-child(2) {
  color:
    var(--rj-silver);
}


/* =========================================================
   05. KICKER
   ========================================================= */

.rj-contact-hero__kicker {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 13px;

  font-size: 0.78rem;
  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.15em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-contact-hero__kicker > span {
  width: 26px;
  height: 1px;

  background:
    var(--rj-navy);
}


/* =========================================================
   06. TITLE
   ========================================================= */

.rj-contact-hero__title {
  max-width: 700px;

  margin:
    0
    0
    17px;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.35vw,
      4.85rem
    );

  font-weight: 400;

  line-height: 0.95;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-contact-hero__title span {
  display: block;

  color:
    #596675;
}


/* =========================================================
   07. DESCRIPTION
   ========================================================= */

.rj-contact-hero__description {
  max-width: 610px;

  margin:
    0
    0
    22px;

  font-size: 1rem;

  line-height: 1.65;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   08. SCROLL CTA
   ========================================================= */

.rj-contact-hero__scroll {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  font-size: 0.86rem;
  font-weight: 800;

  color:
    var(--rj-navy);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-contact-hero__scroll-icon {
  display: grid;

  place-items: center;

  width: 34px;
  height: 34px;

  border:
    1px solid
    rgba(7, 47, 107, 0.18);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.58);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-contact-hero__scroll-icon svg {
  width: 16px;
  height: 16px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-contact-hero__scroll:hover {
  color:
    var(--rj-blue);
}


.rj-contact-hero__scroll:hover
.rj-contact-hero__scroll-icon {
  color:
    var(--rj-white);

  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);

  transform:
    translateY(3px);
}


/* =========================================================
   09. RIGHT VISUAL
   ========================================================= */

.rj-contact-hero__visual {
  position: relative;

  z-index: 1;

  min-width: 0;
  height: 100%;

  overflow: hidden;

  background:
    var(--rj-gray);
}


.rj-contact-hero__photo {
  --rj-contact-photo-x: 0px;
  --rj-contact-photo-y: 0px;

  position: absolute;

  inset: -10px;

  overflow: hidden;
}


.rj-contact-hero__photo img {
  width:
    calc(
      100% + 20px
    );

  height:
    calc(
      100% + 20px
    );

  object-fit: cover;

  object-position:
    center;

  transform:
    translate3d(
      var(--rj-contact-photo-x),
      var(--rj-contact-photo-y),
      0
    )
    scale(1.035);

  transition:
    transform
    900ms
    var(--rj-ease);

  will-change:
    transform;
}


/* =========================================================
   10. PHOTO TREATMENT
   ========================================================= */

.rj-contact-hero__shade {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(6, 27, 56, 0.06) 0%,
      transparent 35%
    ),
    linear-gradient(
      180deg,
      transparent 35%,
      rgba(6, 27, 56, 0.28) 100%
    );
}


/* =========================================================
   11. PHOTO NOTE
   ========================================================= */

.rj-contact-hero__photo-note {
  --rj-contact-note-y: 0px;

  position: absolute;

  right:
    clamp(
      27px,
      4vw,
      58px
    );

  bottom:
    clamp(
      25px,
      4vw,
      45px
    );

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 15px;

  max-width: 330px;

  padding:
    15px
    18px;

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  border-radius:
    13px;

  color:
    var(--rj-white-pure);

  background:
    rgba(6, 27, 56, 0.62);

  backdrop-filter:
    blur(12px);

  -webkit-backdrop-filter:
    blur(12px);

  box-shadow:
    0 15px 38px
    rgba(6, 27, 56, 0.17);

  transform:
    translate3d(
      0,
      var(--rj-contact-note-y),
      0
    );
}


.rj-contact-hero__photo-note-line {
  flex:
    0
    0
    2px;

  width: 2px;
  height: 39px;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      var(--rj-white-pure),
      var(--rj-silver)
    );
}


.rj-contact-hero__photo-note div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.rj-contact-hero__photo-note small {
  font-size: 0.68rem;
  font-weight: 700;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  color:
    rgba(255, 255, 255, 0.64);
}


.rj-contact-hero__photo-note strong {
  font-family:
    var(--rj-font-display);

  font-size: 1rem;
  font-weight: 400;

  line-height: 1.25;

  color:
    var(--rj-white-pure);
}


/* =========================================================
   12. DIAGONAL DIVIDER
   ========================================================= */

.rj-contact-hero__divider {
  position: absolute;

  z-index: 5;

  top: -12%;
  bottom: -12%;

  left: 54%;

  width: 40px;

  pointer-events: none;

  transform:
    translateX(-50%)
    skewX(-13deg);

  background:
    var(--rj-white);
}


.rj-contact-hero__divider::after {
  content: "";

  position: absolute;

  top: 0;
  right: -8px;

  width: 8px;
  height: 100%;

  background:
    var(--rj-silver);

  opacity: 0.72;
}


.rj-contact-hero__divider span {
  position: absolute;

  top: 0;
  right: -13px;

  width: 2px;
  height: 100%;

  background:
    rgba(7, 47, 107, 0.5);
}


/* =========================================================
   13. DESKTOP
   >= 1200px
   ========================================================= */

@media (min-width: 1200px) {

  .rj-contact-hero {
    grid-template-columns:
      54%
      46%;
  }


  .rj-contact-hero__visual {
    clip-path:
      polygon(
        7% 0,
        100% 0,
        100% 100%,
        0 100%
      );
  }


  .rj-contact-hero__inner {
    padding-right:
      clamp(
        65px,
        5vw,
        98px
      );
  }

}


/* =========================================================
   14. TABLET
   768px — 1199px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-contact-hero {
    grid-template-columns:
      57%
      43%;

    height:
      min(
        390px,
        var(--rj-first-screen-height)
      );
  }


  .rj-contact-hero__inner {
    width: 100%;

    margin-left:
      var(--rj-gutter);

    padding:
      25px
      57px
      25px
      0;
  }


  .rj-contact-hero__breadcrumb {
    margin-bottom: 14px;

    font-size: 0.74rem;
  }


  .rj-contact-hero__kicker {
    margin-bottom: 11px;

    font-size: 0.71rem;
  }


  .rj-contact-hero__title {
    margin-bottom: 14px;

    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-contact-hero__description {
    margin-bottom: 18px;

    font-size: 0.93rem;

    line-height: 1.55;
  }


  .rj-contact-hero__visual {
    clip-path:
      polygon(
        10% 0,
        100% 0,
        100% 100%,
        0 100%
      );
  }


  .rj-contact-hero__divider {
    left: 57%;

    width: 32px;
  }


  .rj-contact-hero__photo-note {
    right: 20px;
    bottom: 20px;

    max-width: 260px;

    padding:
      13px
      14px;
  }

}


/* =========================================================
   15. MOBILE
   481px — 767px
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-contact-hero {
    display: block;

    height:
      min(
        460px,
        var(--rj-first-screen-height)
      );

    color:
      var(--rj-white-pure);

    background:
      var(--rj-navy-deep);
  }


  /* IMAGE */

  .rj-contact-hero__visual {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    clip-path: none;
  }


  .rj-contact-hero__photo {
    inset: 0;
  }


  .rj-contact-hero__photo img {
    width: 100%;
    height: 100%;

    object-position:
      center;

    transform:
      scale(1.02);
  }


  .rj-contact-hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(6, 27, 56, 0.22) 0%,
        rgba(6, 27, 56, 0.38) 38%,
        rgba(6, 27, 56, 0.9) 100%
      );
  }


  /* CONTENT */

  .rj-contact-hero__content {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: flex-end;

    width: 100%;
    height: 100%;

    background:
      transparent;
  }


  .rj-contact-hero__content::before {
    display: none;
  }


  .rj-contact-hero__inner {
    width: 100%;

    margin: 0;

    padding:
      33px
      var(--rj-gutter)
      31px;
  }


  .rj-contact-hero__breadcrumb {
    margin-bottom: 14px;

    color:
      rgba(255, 255, 255, 0.6);
  }


  .rj-contact-hero__breadcrumb a {
    color:
      rgba(255, 255, 255, 0.87);
  }


  .rj-contact-hero__kicker {
    color:
      rgba(255, 255, 255, 0.72);
  }


  .rj-contact-hero__kicker > span {
    background:
      rgba(255, 255, 255, 0.75);
  }


  .rj-contact-hero__title {
    max-width: 580px;

    font-size:
      clamp(
        2.7rem,
        8.5vw,
        4rem
      );

    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__title span {
    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__description {
    max-width: 560px;

    color:
      rgba(255, 255, 255, 0.78);
  }


  .rj-contact-hero__scroll {
    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__scroll-icon {
    border-color:
      rgba(255, 255, 255, 0.35);

    background:
      rgba(6, 27, 56, 0.2);
  }


  .rj-contact-hero__divider,
  .rj-contact-hero__photo-note {
    display: none;
  }

}


/* =========================================================
   16. SMALL MOBILE
   <= 480px
   ========================================================= */

@media (max-width: 480px) {

  .rj-contact-hero {
    display: block;

    height:
      min(
        430px,
        var(--rj-first-screen-height)
      );

    background:
      var(--rj-navy-deep);
  }


  /* PHOTO */

  .rj-contact-hero__visual {
    position: absolute;

    inset: 0;

    z-index: 0;

    width: 100%;
    height: 100%;

    clip-path: none;
  }


  .rj-contact-hero__photo {
    inset: 0;
  }


  .rj-contact-hero__photo img {
    width: 100%;
    height: 100%;

    object-position:
      55% center;

    transform:
      scale(1.02);
  }


  .rj-contact-hero__shade {
    background:
      linear-gradient(
        180deg,
        rgba(6, 27, 56, 0.17) 0%,
        rgba(6, 27, 56, 0.37) 34%,
        rgba(6, 27, 56, 0.92) 100%
      );
  }


  /* CONTENT */

  .rj-contact-hero__content {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: flex-end;

    width: 100%;
    height: 100%;

    background:
      transparent;
  }


  .rj-contact-hero__content::before {
    display: none;
  }


  .rj-contact-hero__inner {
    width: 100%;

    margin: 0;

    padding:
      28px
      var(--rj-gutter)
      25px;
  }


  .rj-contact-hero__breadcrumb {
    margin-bottom: 11px;

    font-size: 0.69rem;

    color:
      rgba(255, 255, 255, 0.58);
  }


  .rj-contact-hero__breadcrumb a {
    color:
      rgba(255, 255, 255, 0.85);
  }


  .rj-contact-hero__kicker {
    margin-bottom: 9px;

    font-size: 0.67rem;

    color:
      rgba(255, 255, 255, 0.7);
  }


  .rj-contact-hero__kicker > span {
    width: 21px;

    background:
      rgba(255, 255, 255, 0.72);
  }


  .rj-contact-hero__title {
    margin-bottom: 12px;

    font-size:
      clamp(
        2.35rem,
        10.5vw,
        3.25rem
      );

    line-height: 0.96;

    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__title span {
    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__description {
    margin-bottom: 16px;

    font-size: 0.88rem;

    line-height: 1.5;

    color:
      rgba(255, 255, 255, 0.78);
  }


  .rj-contact-hero__scroll {
    font-size: 0.8rem;

    color:
      var(--rj-white-pure);
  }


  .rj-contact-hero__scroll-icon {
    width: 31px;
    height: 31px;

    border-color:
      rgba(255, 255, 255, 0.34);

    color:
      var(--rj-white-pure);

    background:
      rgba(6, 27, 56, 0.2);
  }


  .rj-contact-hero__divider,
  .rj-contact-hero__photo-note {
    display: none;
  }

}
















































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   CONTACT.HTML
   04. FREE ESTIMATE FORM
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-estimate {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 94% 80%,
      rgba(162, 163, 167, 0.08),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--rj-white) 0%,
      #F6F7F8 52%,
      #F2F4F5 100%
    );
}


.rj-estimate::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.14;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.065'/%3E%3C/svg%3E"
    );

  mix-blend-mode:
    multiply;
}


.rj-estimate > .rj-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   02. DECORATION
   ========================================================= */

.rj-estimate__decor {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}


.rj-estimate__decor-circle {
  position: absolute;

  top: 90px;
  right: -170px;

  width: 390px;
  height: 390px;

  border:
    1px solid
    rgba(7, 47, 107, 0.07);

  border-radius: 50%;
}


.rj-estimate__decor-line {
  position: absolute;

  top: 0;
  left: 9%;

  width: 1px;
  height: 120px;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  opacity: 0.34;
}


.rj-estimate__swoosh {
  position: absolute;

  bottom: 80px;
  left: -190px;

  width: 520px;

  opacity: 0.13;

  transform:
    rotate(-6deg);
}


.rj-estimate__swoosh path {
  fill: none;

  stroke:
    var(--rj-navy);

  stroke-width: 1.5;

  stroke-linecap: round;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.rj-estimate__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      55px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      42px,
      5vw,
      62px
    );
}


.rj-estimate__heading {
  max-width: 760px;
}


.rj-estimate__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.7vw,
      4.9rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-estimate__title span {
  display: block;

  color:
    #596675;
}


.rj-estimate__intro {
  max-width: 510px;

  justify-self: end;

  margin: 0;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   04. LAYOUT
   ========================================================= */

.rj-estimate__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.52fr)
    minmax(330px, 0.68fr);

  align-items: stretch;

  overflow: hidden;

  border:
    1px solid
    rgba(7, 47, 107, 0.1);

  border-radius:
    var(--rj-radius-xl);

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 28px 80px
    rgba(6, 27, 56, 0.11);
}


/* =========================================================
   05. FORM SIDE
   ========================================================= */

.rj-estimate__form-side {
  min-width: 0;

  padding:
    clamp(
      31px,
      4vw,
      52px
    );

  background:
    rgba(255, 255, 255, 0.93);
}


/* =========================================================
   06. FORM GRID
   ========================================================= */

.rj-estimate__form {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap:
    25px
    21px;
}


.rj-form-field {
  position: relative;

  min-width: 0;
}


.rj-form-field--full {
  grid-column:
    1 / -1;
}


/* =========================================================
   07. LABEL
   ========================================================= */

.rj-form-field > label,
.rj-form-field__label-row label {
  display: inline-block;

  margin-bottom: 9px;

  font-size: 0.88rem;
  font-weight: 700;

  line-height: 1.35;

  color:
    var(--rj-navy-deep);
}


.rj-form-field label > span {
  color:
    var(--rj-blue);
}


/* =========================================================
   08. LABEL ROW / COUNTER
   ========================================================= */

.rj-form-field__label-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.rj-form-field__counter {
  margin-bottom: 9px;

  font-size: 0.76rem;
  font-weight: 600;

  color:
    var(--rj-steel-blue);
}


/* =========================================================
   09. INPUT SHELL
   ========================================================= */

.rj-form-control {
  position: relative;

  display: flex;

  align-items: center;

  min-height: 56px;

  border:
    1px solid
    rgba(7, 47, 107, 0.14);

  border-radius:
    12px;

  background:
    #F9FAFA;

  transition:
    border-color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-form-control:focus-within {
  border-color:
    rgba(7, 47, 107, 0.48);

  background:
    var(--rj-white-pure);

  box-shadow:
    0 0 0 4px
    rgba(36, 91, 155, 0.07);

  transform:
    translateY(-1px);
}


/* =========================================================
   10. FIELD ICON
   ========================================================= */

.rj-form-control > svg:first-child {
  flex:
    0
    0
    20px;

  width: 20px;
  height: 20px;

  margin-left: 17px;

  fill: none;

  stroke:
    var(--rj-steel-blue);

  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}


/* phone icon */

.rj-form-field:nth-child(3)
.rj-form-control > svg:first-child {
  fill:
    var(--rj-steel-blue);

  stroke: none;
}


/* =========================================================
   11. INPUTS / SELECT
   ========================================================= */

.rj-form-control input,
.rj-form-control select {
  width: 100%;

  min-width: 0;
  min-height: 54px;

  padding:
    0
    16px
    0
    13px;

  border: 0;

  outline: 0;

  font-family:
    var(--rj-font-body);

  font-size: 0.96rem;
  font-weight: 500;

  color:
    var(--rj-text);

  background:
    transparent;
}


.rj-form-control input::placeholder {
  color:
    #929BA4;

  opacity: 1;
}


/* SELECT */

.rj-form-control select {
  padding-right: 48px;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}


.rj-form-control select:invalid {
  color:
    #8C969F;
}


.rj-form-control__chevron {
  position: absolute;

  top: 50%;
  right: 16px;

  width: 18px;
  height: 18px;

  margin: 0 !important;

  transform:
    translateY(-50%);

  fill: none;

  stroke:
    var(--rj-navy) !important;

  stroke-width: 1.7;

  pointer-events: none;
}


/* =========================================================
   12. TEXTAREA
   ========================================================= */

.rj-form-control--textarea {
  display: block;

  min-height: 165px;
}


.rj-form-control textarea {
  display: block;

  width: 100%;
  min-height: 165px;

  padding:
    16px
    17px;

  border: 0;

  outline: 0;

  resize: vertical;

  font-family:
    var(--rj-font-body);

  font-size: 0.96rem;
  font-weight: 500;

  line-height: 1.62;

  color:
    var(--rj-text);

  background:
    transparent;
}


.rj-form-control textarea::placeholder {
  color:
    #929BA4;

  opacity: 1;
}


/* =========================================================
   13. FIELD META
   ========================================================= */

.rj-form-field__meta {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  margin-top: 7px;
}


.rj-form-field__meta > span:last-child {
  flex:
    0
    0
    auto;

  font-size: 0.72rem;

  color:
    #8A949E;
}


/* =========================================================
   14. VALIDATION
   ========================================================= */

.rj-form-field__error {
  display: none;

  margin-top: 7px;

  font-size: 0.77rem;
  font-weight: 600;

  line-height: 1.4;

  color:
    #A63A3A;
}


.rj-form-field.is-invalid
.rj-form-control {
  border-color:
    rgba(166, 58, 58, 0.58);

  background:
    rgba(166, 58, 58, 0.025);

  box-shadow:
    0 0 0 3px
    rgba(166, 58, 58, 0.045);
}


.rj-form-field.is-invalid
.rj-form-field__error {
  display: block;
}


.rj-form-field__meta
.rj-form-field__error {
  margin-top: 0;
}


/* =========================================================
   15. SUBMIT
   ========================================================= */

.rj-estimate__submit-row {
  grid-column:
    1 / -1;

  display: flex;

  align-items: center;

  gap: 21px;

  padding-top: 3px;
}


.rj-estimate__submit {
  min-height: 57px;

  padding-inline:
    25px;
}


.rj-estimate__submit svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-estimate__submit:hover svg {
  transform:
    translateX(4px);
}


.rj-estimate__submit-row p {
  margin: 0;

  font-size: 0.77rem;

  line-height: 1.5;

  color:
    var(--rj-text-soft);
}


.rj-estimate__submit-row p span {
  color:
    var(--rj-blue);
}


/* =========================================================
   16. STATUS BANNER
   ========================================================= */

.rj-estimate__status {
  position: relative;

  display: grid;

  grid-template-columns:
    38px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 13px;

  margin-bottom: 26px;

  padding:
    15px
    16px;

  border:
    1px solid
    rgba(7, 47, 107, 0.13);

  border-radius:
    12px;

  background:
    #F5F8FB;
}


.rj-estimate__status[hidden] {
  display: none;
}


.rj-estimate__status.is-success {
  border-color:
    rgba(31, 104, 74, 0.2);

  background:
    #F3F8F5;
}


.rj-estimate__status.is-error {
  border-color:
    rgba(166, 58, 58, 0.2);

  background:
    #FBF5F5;
}


.rj-estimate__status-icon {
  position: relative;

  display: grid;

  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background:
    var(--rj-navy);
}


.rj-estimate__status-icon::before {
  content: "✓";

  font-size: 1rem;
  font-weight: 800;

  color:
    var(--rj-white-pure);
}


.rj-estimate__status.is-error
.rj-estimate__status-icon {
  background:
    #9A3A3A;
}


.rj-estimate__status.is-error
.rj-estimate__status-icon::before {
  content: "!";
}


.rj-estimate__status div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.rj-estimate__status strong {
  font-size: 0.88rem;

  color:
    var(--rj-navy-deep);
}


.rj-estimate__status div span {
  font-size: 0.8rem;

  line-height: 1.45;

  color:
    var(--rj-text-soft);
}


.rj-estimate__status button {
  display: grid;

  place-items: center;

  width: 35px;
  height: 35px;

  padding: 0;

  border-radius: 50%;

  font-size: 1.25rem;

  color:
    var(--rj-steel-blue);

  background:
    transparent;

  cursor: pointer;
}


/* =========================================================
   17. CONTACT PANEL
   ========================================================= */

.rj-estimate__contact {
  position: relative;

  min-width: 0;

  overflow: hidden;

  padding:
    clamp(
      35px,
      4vw,
      52px
    )
    clamp(
      28px,
      3.5vw,
      43px
    );

  color:
    rgba(255, 255, 255, 0.75);

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(36, 91, 155, 0.38),
      transparent 32%
    ),
    linear-gradient(
      150deg,
      var(--rj-navy-deep),
      var(--rj-navy)
    );

  isolation: isolate;
}


/* =========================================================
   18. CONTACT TOP
   ========================================================= */

.rj-estimate__contact-top {
  position: relative;

  z-index: 2;

  margin-bottom: 33px;
}


.rj-estimate__contact-kicker {
  display: block;

  margin-bottom: 9px;

  font-size: 0.73rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color:
    rgba(255, 255, 255, 0.6);
}


.rj-estimate__contact-top h3 {
  max-width: 330px;

  margin:
    0
    0
    14px;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      2rem,
      2.6vw,
      2.65rem
    );

  font-weight: 400;

  line-height: 1;

  color:
    var(--rj-white-pure);
}


.rj-estimate__contact-top p {
  max-width: 330px;

  margin: 0;

  font-size: 0.9rem;

  line-height: 1.65;

  color:
    rgba(255, 255, 255, 0.64);
}


/* =========================================================
   19. CONTACT ITEM
   ========================================================= */

.rj-estimate__contact-item {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
    43px
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 13px;

  min-height: 68px;

  padding:
    12px
    0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.11);

  color:
    var(--rj-white-pure);

  transition:
    padding-left
    var(--rj-normal)
    var(--rj-ease);
}


.rj-estimate__contact-item:hover {
  padding-left: 4px;
}


.rj-estimate__contact-icon {
  display: grid;

  place-items: center;

  width: 43px;
  height: 43px;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.07);
}


.rj-estimate__contact-icon svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke:
    var(--rj-white-pure);

  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-estimate__contact-item:first-of-type
.rj-estimate__contact-icon svg {
  fill:
    var(--rj-white-pure);

  stroke: none;
}


.rj-estimate__contact-item > span:nth-child(2) {
  display: flex;

  flex-direction: column;

  gap: 2px;

  min-width: 0;
}


.rj-estimate__contact-item small {
  font-size: 0.7rem;

  color:
    rgba(255, 255, 255, 0.52);
}


.rj-estimate__contact-item strong {
  font-size: 0.86rem;
  font-weight: 650;

  line-height: 1.45;

  overflow-wrap:
    anywhere;

  color:
    rgba(255, 255, 255, 0.91);
}


.rj-estimate__contact-arrow {
  font-size: 0.9rem;

  color:
    rgba(255, 255, 255, 0.55);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-estimate__contact-item:hover
.rj-estimate__contact-arrow {
  transform:
    translate(
      2px,
      -2px
    );
}


/* =========================================================
   20. HOURS
   ========================================================= */

.rj-estimate__hours {
  position: relative;

  z-index: 2;

  margin-top: 30px;
}


.rj-estimate__hours-heading {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 16px;

  font-size: 0.79rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  color:
    var(--rj-white-pure);
}


.rj-estimate__hours-heading svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke:
    rgba(255, 255, 255, 0.8);

  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-estimate__hours-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding:
    11px
    0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.08);
}


.rj-estimate__hours-row span {
  font-size: 0.8rem;

  color:
    rgba(255, 255, 255, 0.54);
}


.rj-estimate__hours-row strong {
  font-size: 0.81rem;
  font-weight: 650;

  white-space: nowrap;

  color:
    rgba(255, 255, 255, 0.87);
}


/* =========================================================
   21. AREA
   ========================================================= */

.rj-estimate__area {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-start;

  gap: 11px;

  margin-top: 27px;
}


.rj-estimate__area > svg {
  flex:
    0
    0
    20px;

  width: 20px;
  height: 20px;

  margin-top: 1px;

  fill: none;

  stroke:
    rgba(255, 255, 255, 0.73);

  stroke-width: 1.55;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-estimate__area div {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.rj-estimate__area small {
  font-size: 0.69rem;

  color:
    rgba(255, 255, 255, 0.48);
}


.rj-estimate__area span {
  font-size: 0.82rem;

  line-height: 1.5;

  color:
    rgba(255, 255, 255, 0.79);
}


/* =========================================================
   22. PANEL SWOOSH
   ========================================================= */

.rj-estimate__contact-swoosh {
  position: absolute;

  right: -145px;
  bottom: 16px;

  z-index: 1;

  width: 410px;

  opacity: 0.13;

  transform:
    rotate(-8deg);
}


.rj-estimate__contact-swoosh path {
  fill: none;

  stroke:
    var(--rj-white-pure);

  stroke-width: 1.3;

  stroke-linecap: round;
}


/* =========================================================
   23. HONEYPOT
   ========================================================= */

.rj-estimate__honeypot {
  position: absolute;

  left: -10000px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


/* =========================================================
   24. DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .rj-estimate__layout {
    grid-template-columns:
      minmax(0, 1.55fr)
      minmax(350px, 0.68fr);
  }


  .rj-estimate__form-side {
    padding: 50px;
  }


  .rj-estimate__contact {
    padding:
      50px
      40px;
  }

}


/* =========================================================
   25. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-estimate__header {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);

    gap: 48px;
  }


  .rj-estimate__title {
    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-estimate__intro {
    font-size: 1rem;
  }


  .rj-estimate__layout {
    grid-template-columns:
      minmax(0, 1.35fr)
      minmax(290px, 0.65fr);
  }


  .rj-estimate__form-side {
    padding:
      35px
      31px;
  }


  .rj-estimate__form {
    gap:
      23px
      17px;
  }


  .rj-estimate__contact {
    padding:
      36px
      27px;
  }


  .rj-estimate__contact-top h3 {
    font-size: 2rem;
  }


  .rj-estimate__hours-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 4px;
  }

}


/* =========================================================
   26. MOBILE
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-estimate__header {
    display: block;

    margin-bottom: 37px;
  }


  .rj-estimate__heading {
    margin-bottom: 22px;
  }


  .rj-estimate__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-estimate__intro {
    max-width: 570px;

    justify-self: initial;

    font-size: 1rem;
  }


  .rj-estimate__layout {
    grid-template-columns: 1fr;

    border-radius: 21px;
  }


  .rj-estimate__form-side {
    padding:
      31px
      25px;
  }


  .rj-estimate__form {
    gap:
      22px
      16px;
  }


  .rj-form-control {
    min-height: 55px;
  }


  .rj-estimate__contact {
    padding:
      36px
      29px;
  }


  .rj-estimate__contact-top {
    max-width: 520px;
  }


  .rj-estimate__contact-top h3 {
    max-width: 480px;
  }


  .rj-estimate__hours {
    max-width: 520px;
  }

}


/* =========================================================
   27. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .rj-estimate__header {
    display: block;

    margin-bottom: 31px;
  }


  .rj-estimate__heading {
    margin-bottom: 20px;
  }


  .rj-estimate__title {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-estimate__intro {
    font-size: 0.97rem;

    line-height: 1.67;
  }


  .rj-estimate__layout {
    grid-template-columns: 1fr;

    border-radius: 18px;
  }


  .rj-estimate__form-side {
    padding:
      26px
      18px
      29px;
  }


  .rj-estimate__form {
    grid-template-columns: 1fr;

    gap: 21px;
  }


  .rj-form-field--full,
  .rj-estimate__submit-row {
    grid-column: auto;
  }


  .rj-form-field > label,
  .rj-form-field__label-row label {
    font-size: 0.86rem;
  }


  .rj-form-control {
    min-height: 54px;

    border-radius: 11px;
  }


  .rj-form-control input,
  .rj-form-control select {
    min-height: 52px;

    font-size: 0.94rem;
  }


  .rj-form-control--textarea,
  .rj-form-control textarea {
    min-height: 160px;
  }


  .rj-form-control textarea {
    font-size: 0.94rem;
  }


  .rj-form-field__meta {
    gap: 12px;
  }


  .rj-form-field__meta > span:last-child {
    font-size: 0.67rem;
  }


  .rj-estimate__submit-row {
    align-items: stretch;

    flex-direction: column;

    gap: 11px;
  }


  .rj-estimate__submit {
    width: 100%;
  }


  .rj-estimate__submit-row p {
    text-align: center;
  }


  /* PANEL */

  .rj-estimate__contact {
    padding:
      32px
      20px
      34px;
  }


  .rj-estimate__contact-top {
    margin-bottom: 25px;
  }


  .rj-estimate__contact-top h3 {
    font-size: 2rem;
  }


  .rj-estimate__contact-item {
    grid-template-columns:
      40px
      minmax(0, 1fr)
      auto;

    gap: 11px;
  }


  .rj-estimate__contact-icon {
    width: 40px;
    height: 40px;
  }


  .rj-estimate__contact-item strong {
    font-size: 0.81rem;
  }


  .rj-estimate__hours-row {
    align-items: flex-start;

    flex-direction: column;

    gap: 4px;
  }


  .rj-estimate__status {
    grid-template-columns:
      35px
      minmax(0, 1fr)
      auto;

    padding:
      13px
      12px;
  }


  .rj-estimate__decor-circle {
    display: none;
  }

}

























































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   CONTACT.HTML
   05. WHAT HAPPENS NEXT
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-next {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 16%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #F3F4F5 0%,
      #F8F8F8 48%,
      var(--rj-white) 100%
    );
}


.rj-next::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.13;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"
    );

  mix-blend-mode:
    multiply;
}


.rj-next > .rj-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   02. DECORATION
   ========================================================= */

.rj-next__decor {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}


.rj-next__decor-circle {
  position: absolute;

  top: 90px;
  right: -155px;

  width: 370px;
  height: 370px;

  border:
    1px solid
    rgba(7, 47, 107, 0.07);

  border-radius: 50%;
}


.rj-next__decor-line {
  position: absolute;

  top: 0;
  left: 12%;

  width: 1px;
  height: 110px;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  opacity: 0.33;
}


.rj-next__decor-swoosh {
  position: absolute;

  bottom: 75px;
  left: -230px;

  width: 620px;

  opacity: 0.11;

  transform:
    rotate(-6deg);
}


.rj-next__decor-swoosh path {
  fill: none;

  stroke:
    var(--rj-navy);

  stroke-width: 1.4;

  stroke-linecap: round;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.rj-next__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      55px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      50px,
      6vw,
      78px
    );
}


.rj-next__heading {
  max-width: 780px;
}


.rj-next__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.7vw,
      4.9rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-next__title span {
  display: block;

  color:
    #596675;
}


.rj-next__intro {
  max-width: 500px;

  justify-self: end;

  margin: 0;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   04. FLOW
   ========================================================= */

.rj-next__flow {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap:
    clamp(
      35px,
      5vw,
      72px
    );

  margin-bottom:
    clamp(
      48px,
      6vw,
      72px
    );
}


/* =========================================================
   05. CONNECTION
   ========================================================= */

.rj-next__connection {
  position: absolute;

  z-index: 0;

  top: 32px;

  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);

  height: 1px;

  overflow: hidden;

  background:
    rgba(7, 47, 107, 0.11);
}


.rj-next__connection span {
  display: block;

  width: 100%;
  height: 100%;

  transform:
    scaleX(0);

  transform-origin:
    left center;

  background:
    linear-gradient(
      90deg,
      var(--rj-navy),
      var(--rj-blue),
      var(--rj-silver)
    );

  transition:
    transform
    1300ms
    var(--rj-ease);
}


.rj-next.is-visible
.rj-next__connection span {
  transform:
    scaleX(1);
}


/* =========================================================
   06. ITEM
   ========================================================= */

.rj-next__item {
  position: relative;

  z-index: 2;

  min-width: 0;
}


/* =========================================================
   07. ICON
   ========================================================= */

.rj-next__icon {
  display: grid;

  place-items: center;

  width: 64px;
  height: 64px;

  margin-bottom: 26px;

  border:
    1px solid
    rgba(7, 47, 107, 0.15);

  border-radius: 50%;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.94);

  box-shadow:
    0 13px 35px
    rgba(6, 27, 56, 0.08);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease),
    box-shadow
    var(--rj-normal)
    var(--rj-ease);
}


.rj-next__icon svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}


.rj-next__item:hover
.rj-next__icon {
  color:
    var(--rj-white);

  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);

  transform:
    translateY(-4px);

  box-shadow:
    0 18px 40px
    rgba(7, 47, 107, 0.17);
}


/* =========================================================
   08. ITEM TYPOGRAPHY
   ========================================================= */

.rj-next__label {
  display: block;

  margin-bottom: 8px;

  font-size: 0.72rem;
  font-weight: 800;

  line-height: 1;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-next__item h3 {
  max-width: 320px;

  margin:
    0
    0
    13px;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      1.65rem,
      2vw,
      2.15rem
    );

  font-weight: 400;

  line-height: 1.05;

  letter-spacing: -0.02em;

  color:
    var(--rj-navy-deep);
}


.rj-next__item p {
  max-width: 360px;

  margin: 0;

  font-size: 0.94rem;

  line-height: 1.68;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   09. SUPPORT
   ========================================================= */

.rj-next__support {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding:
    27px
    30px;

  border:
    1px solid
    rgba(7, 47, 107, 0.1);

  border-radius:
    var(--rj-radius-lg);

  background:
    rgba(255, 255, 255, 0.7);

  box-shadow:
    var(--rj-shadow-xs);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);
}


.rj-next__support > div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}


.rj-next__support-kicker {
  font-size: 0.73rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color:
    var(--rj-steel-blue);
}


.rj-next__support strong {
  font-family:
    var(--rj-font-display);

  font-size: 1.42rem;
  font-weight: 400;

  color:
    var(--rj-navy-deep);
}


/* =========================================================
   10. PHONE
   ========================================================= */

.rj-next__phone {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  flex:
    0
    0
    auto;

  min-height: 50px;

  padding:
    0
    18px;

  border:
    1px solid
    rgba(7, 47, 107, 0.17);

  border-radius:
    11px;

  font-size: 0.9rem;
  font-weight: 750;

  color:
    var(--rj-navy);

  background:
    rgba(255, 255, 255, 0.78);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-next__phone svg {
  width: 18px;
  height: 18px;

  fill:
    currentColor;
}


.rj-next__phone:hover {
  color:
    var(--rj-white);

  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);

  transform:
    translateY(-2px);
}


/* =========================================================
   11. DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .rj-next__flow {
    gap:
      clamp(
        48px,
        5vw,
        76px
      );
  }


  .rj-next__item p {
    max-width: 355px;
  }

}


/* =========================================================
   12. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-next__header {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);

    gap: 48px;
  }


  .rj-next__title {
    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-next__intro {
    font-size: 1rem;
  }


  .rj-next__flow {
    gap: 38px;
  }


  .rj-next__connection {
    left:
      calc(
        16.66% + 28px
      );

    right:
      calc(
        16.66% + 28px
      );
  }


  .rj-next__icon {
    width: 58px;
    height: 58px;

    margin-bottom: 23px;
  }


  .rj-next__item h3 {
    font-size: 1.65rem;
  }


  .rj-next__item p {
    font-size: 0.9rem;
  }

}


/* =========================================================
   13. MOBILE
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-next__header {
    display: block;

    margin-bottom: 44px;
  }


  .rj-next__heading {
    margin-bottom: 23px;
  }


  .rj-next__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-next__intro {
    max-width: 560px;

    justify-self: initial;

    font-size: 1rem;
  }


  .rj-next__flow {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .rj-next__connection {
    top: 31px;
    bottom: 31px;

    left: 31px;
    right: auto;

    width: 1px;
    height: auto;

    background:
      rgba(7, 47, 107, 0.11);
  }


  .rj-next__connection span {
    width: 100%;
    height: 100%;

    transform:
      scaleY(0);

    transform-origin:
      center top;
  }


  .rj-next.is-visible
  .rj-next__connection span {
    transform:
      scaleY(1);
  }


  .rj-next__item {
    display: grid;

    grid-template-columns:
      63px
      minmax(0, 1fr);

    gap: 22px;

    padding-bottom: 37px;
  }


  .rj-next__item:last-child {
    padding-bottom: 0;
  }


  .rj-next__icon {
    width: 62px;
    height: 62px;

    margin-bottom: 0;
  }


  .rj-next__item h3 {
    max-width: none;
  }


  .rj-next__item p {
    max-width: 520px;
  }


  .rj-next__support {
    padding:
      24px
      24px;
  }

}


/* =========================================================
   14. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .rj-next__header {
    display: block;

    margin-bottom: 38px;
  }


  .rj-next__heading {
    margin-bottom: 20px;
  }


  .rj-next__title {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-next__intro {
    font-size: 0.97rem;

    line-height: 1.67;
  }


  .rj-next__flow {
    grid-template-columns: 1fr;

    gap: 0;

    margin-bottom: 39px;
  }


  .rj-next__connection {
    top: 28px;
    bottom: 28px;

    left: 27px;
    right: auto;

    width: 1px;
    height: auto;
  }


  .rj-next__connection span {
    width: 100%;
    height: 100%;

    transform:
      scaleY(0);

    transform-origin:
      center top;
  }


  .rj-next.is-visible
  .rj-next__connection span {
    transform:
      scaleY(1);
  }


  .rj-next__item {
    display: grid;

    grid-template-columns:
      55px
      minmax(0, 1fr);

    gap: 17px;

    padding-bottom: 33px;
  }


  .rj-next__item:last-child {
    padding-bottom: 0;
  }


  .rj-next__icon {
    width: 54px;
    height: 54px;

    margin-bottom: 0;
  }


  .rj-next__icon svg {
    width: 24px;
    height: 24px;
  }


  .rj-next__label {
    font-size: 0.67rem;
  }


  .rj-next__item h3 {
    margin-bottom: 10px;

    font-size: 1.52rem;
  }


  .rj-next__item p {
    font-size: 0.9rem;

    line-height: 1.63;
  }


  .rj-next__support {
    align-items: flex-start;

    flex-direction: column;

    gap: 19px;

    padding:
      22px
      19px;

    border-radius: 16px;
  }


  .rj-next__support strong {
    font-size: 1.3rem;
  }


  .rj-next__phone {
    width: 100%;

    justify-content: center;
  }


  .rj-next__decor-circle {
    display: none;
  }

}














































/* =========================================================
   RJ PAINTING & REMODELING SERVICES
   CONTACT.HTML
   06. FAQ
   ========================================================= */


/* =========================================================
   01. SECTION
   ========================================================= */

.rj-faq {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(36, 91, 155, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(162, 163, 167, 0.07),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--rj-white) 0%,
      #F7F8F8 52%,
      #F2F4F5 100%
    );
}


.rj-faq::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  opacity: 0.13;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"
    );

  mix-blend-mode: multiply;
}


.rj-faq > .rj-container {
  position: relative;

  z-index: 3;
}


/* =========================================================
   02. DECORATION
   ========================================================= */

.rj-faq__decor {
  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;
}


.rj-faq__decor-line {
  position: absolute;

  top: 0;
  right: 12%;

  width: 1px;
  height: 115px;

  background:
    linear-gradient(
      180deg,
      var(--rj-navy),
      transparent
    );

  opacity: 0.33;
}


.rj-faq__decor-circle {
  position: absolute;

  bottom: -150px;
  left: -130px;

  width: 360px;
  height: 360px;

  border:
    1px solid
    rgba(7, 47, 107, 0.07);

  border-radius: 50%;
}


.rj-faq__swoosh {
  position: absolute;

  top: 175px;
  right: -215px;

  width: 560px;

  opacity: 0.11;

  transform:
    rotate(-7deg);
}


.rj-faq__swoosh path {
  fill: none;

  stroke:
    var(--rj-navy);

  stroke-width: 1.4;

  stroke-linecap: round;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.rj-faq__header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.65fr);

  align-items: end;

  gap:
    clamp(
      55px,
      8vw,
      120px
    );

  margin-bottom:
    clamp(
      45px,
      6vw,
      72px
    );
}


.rj-faq__heading {
  max-width: 780px;
}


.rj-faq__title {
  margin: 0;

  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      3rem,
      4.7vw,
      4.9rem
    );

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.035em;

  color:
    var(--rj-navy-deep);
}


.rj-faq__title span {
  display: block;

  color:
    #596675;
}


.rj-faq__intro {
  max-width: 500px;

  justify-self: end;

  margin: 0;

  font-size: 1.04rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


/* =========================================================
   04. LAYOUT
   ========================================================= */

.rj-faq__layout {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.72fr)
    minmax(0, 1.45fr);

  align-items: start;

  gap:
    clamp(
      45px,
      7vw,
      100px
    );
}


/* =========================================================
   05. SIDE PANEL
   ========================================================= */

.rj-faq__side {
  position: relative;

  overflow: hidden;

  padding:
    34px
    31px;

  border-radius:
    var(--rj-radius-lg);

  color:
    rgba(255, 255, 255, 0.75);

  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(36, 91, 155, 0.38),
      transparent 35%
    ),
    linear-gradient(
      150deg,
      var(--rj-navy-deep),
      var(--rj-navy)
    );

  box-shadow:
    0 22px 55px
    rgba(6, 27, 56, 0.13);
}


.rj-faq__side::after {
  content: "";

  position: absolute;

  right: -65px;
  bottom: -75px;

  width: 180px;
  height: 180px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}


.rj-faq__side-kicker {
  display: block;

  margin-bottom: 9px;

  font-size: 0.71rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color:
    rgba(255, 255, 255, 0.57);
}


.rj-faq__side h3 {
  max-width: 300px;

  margin:
    0
    0
    14px;

  font-family:
    var(--rj-font-display);

  font-size: 2.15rem;
  font-weight: 400;

  line-height: 1;

  color:
    var(--rj-white-pure);
}


.rj-faq__side p {
  max-width: 320px;

  margin:
    0
    0
    27px;

  font-size: 0.91rem;

  line-height: 1.66;

  color:
    rgba(255, 255, 255, 0.64);
}


/* =========================================================
   06. CONTACT
   ========================================================= */

.rj-faq__contact {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 12px;

  width: fit-content;

  color:
    var(--rj-white-pure);
}


.rj-faq__contact-icon {
  display: grid;

  place-items: center;

  width: 43px;
  height: 43px;

  border:
    1px solid
    rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.07);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-faq__contact:hover
.rj-faq__contact-icon {
  transform:
    translateY(-2px);

  background:
    rgba(255, 255, 255, 0.12);
}


.rj-faq__contact-icon svg {
  width: 19px;
  height: 19px;

  fill:
    var(--rj-white-pure);
}


.rj-faq__contact > span:last-child {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.rj-faq__contact small {
  font-size: 0.68rem;

  color:
    rgba(255, 255, 255, 0.5);
}


.rj-faq__contact strong {
  font-size: 0.88rem;
  font-weight: 700;

  color:
    rgba(255, 255, 255, 0.92);
}


/* =========================================================
   07. ACCORDION
   ========================================================= */

.rj-faq__accordion {
  border-top:
    1px solid
    var(--rj-border);
}


/* =========================================================
   08. ITEM
   ========================================================= */

.rj-faq__item {
  position: relative;

  border-bottom:
    1px solid
    var(--rj-border);
}


/* =========================================================
   09. QUESTION
   ========================================================= */

.rj-faq__question {
  margin: 0;
}


/* =========================================================
   10. TRIGGER
   ========================================================= */

.rj-faq__trigger {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    44px;

  align-items: center;

  gap: 25px;

  width: 100%;

  min-height: 92px;

  padding:
    22px
    4px;

  border: 0;

  text-align: left;

  color:
    var(--rj-navy-deep);

  background:
    transparent;

  cursor: pointer;

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    padding-left
    var(--rj-normal)
    var(--rj-ease);
}


.rj-faq__trigger > span:first-child {
  font-family:
    var(--rj-font-display);

  font-size:
    clamp(
      1.35rem,
      1.7vw,
      1.72rem
    );

  font-weight: 400;

  line-height: 1.18;

  letter-spacing: -0.015em;
}


.rj-faq__trigger:hover,
.rj-faq__item.is-open
.rj-faq__trigger {
  color:
    var(--rj-navy);

  padding-left: 7px;
}


/* =========================================================
   11. TOGGLE
   ========================================================= */

.rj-faq__toggle {
  position: relative;

  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border:
    1px solid
    rgba(7, 47, 107, 0.14);

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.62);

  transition:
    color
    var(--rj-normal)
    var(--rj-ease),
    border-color
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease),
    transform
    var(--rj-normal)
    var(--rj-ease);
}


.rj-faq__toggle i {
  position: absolute;

  width: 14px;
  height: 1.5px;

  border-radius: 999px;

  background:
    var(--rj-navy);

  transition:
    transform
    var(--rj-normal)
    var(--rj-ease),
    background-color
    var(--rj-normal)
    var(--rj-ease);
}


.rj-faq__toggle i:last-child {
  transform:
    rotate(90deg);
}


.rj-faq__item.is-open
.rj-faq__toggle {
  border-color:
    var(--rj-navy);

  background:
    var(--rj-navy);

  transform:
    rotate(180deg);
}


.rj-faq__item.is-open
.rj-faq__toggle i {
  background:
    var(--rj-white-pure);
}


.rj-faq__item.is-open
.rj-faq__toggle i:last-child {
  transform:
    rotate(0deg);
}


/* =========================================================
   12. PANEL
   ========================================================= */

.rj-faq__panel {
  display: grid;

  grid-template-rows: 1fr;

  opacity: 1;

  transition:
    grid-template-rows
    440ms
    var(--rj-ease),
    opacity
    330ms
    var(--rj-ease);
}


.rj-faq__panel[hidden] {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  visibility: hidden;
}


.rj-faq__panel-inner {
  overflow: hidden;
}


.rj-faq__panel p {
  max-width: 760px;

  margin:
    -3px
    70px
    28px
    7px;

  font-size: 0.96rem;

  line-height: 1.72;

  color:
    var(--rj-text-soft);
}


.rj-faq__panel a {
  font-weight: 700;

  color:
    var(--rj-navy);
}


/* =========================================================
   13. FOCUS
   ========================================================= */

.rj-faq__trigger:focus-visible {
  outline:
    2px solid
    var(--rj-blue);

  outline-offset: 5px;

  border-radius: 8px;
}


/* =========================================================
   14. DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .rj-faq__layout {
    grid-template-columns:
      minmax(300px, 0.7fr)
      minmax(0, 1.5fr);
  }


  .rj-faq__side {
    position: sticky;

    top:
      calc(
        var(--rj-scroll-offset) + 24px
      );
  }

}


/* =========================================================
   15. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1199px) {

  .rj-faq__header {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);

    gap: 48px;
  }


  .rj-faq__title {
    font-size:
      clamp(
        2.65rem,
        5vw,
        4rem
      );
  }


  .rj-faq__intro {
    font-size: 1rem;
  }


  .rj-faq__layout {
    grid-template-columns:
      minmax(250px, 0.68fr)
      minmax(0, 1.32fr);

    gap: 45px;
  }


  .rj-faq__side {
    padding:
      30px
      25px;
  }


  .rj-faq__side h3 {
    font-size: 1.9rem;
  }


  .rj-faq__trigger {
    min-height: 84px;
  }


  .rj-faq__panel p {
    margin-right: 55px;
  }

}


/* =========================================================
   16. MOBILE
   ========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

  .rj-faq__header {
    display: block;

    margin-bottom: 40px;
  }


  .rj-faq__heading {
    margin-bottom: 22px;
  }


  .rj-faq__title {
    font-size:
      clamp(
        2.5rem,
        8vw,
        3.6rem
      );
  }


  .rj-faq__intro {
    max-width: 560px;

    justify-self: initial;

    font-size: 1rem;
  }


  .rj-faq__layout {
    grid-template-columns: 1fr;

    gap: 42px;
  }


  .rj-faq__side {
    max-width: 560px;

    padding:
      30px
      27px;
  }


  .rj-faq__trigger {
    grid-template-columns:
      minmax(0, 1fr)
      42px;

    min-height: 82px;

    gap: 18px;
  }


  .rj-faq__trigger > span:first-child {
    font-size: 1.4rem;
  }


  .rj-faq__panel p {
    margin:
      -2px
      58px
      25px
      5px;
  }

}


/* =========================================================
   17. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .rj-faq__header {
    display: block;

    margin-bottom: 34px;
  }


  .rj-faq__heading {
    margin-bottom: 20px;
  }


  .rj-faq__title {
    font-size:
      clamp(
        2.3rem,
        10vw,
        3rem
      );

    line-height: 1;
  }


  .rj-faq__intro {
    font-size: 0.97rem;

    line-height: 1.67;
  }


  .rj-faq__layout {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .rj-faq__side {
    padding:
      27px
      20px;

    border-radius: 17px;
  }


  .rj-faq__side h3 {
    font-size: 1.82rem;
  }


  .rj-faq__side p {
    font-size: 0.89rem;
  }


  .rj-faq__trigger {
    grid-template-columns:
      minmax(0, 1fr)
      39px;

    gap: 14px;

    min-height: 78px;

    padding:
      19px
      2px;
  }


  .rj-faq__trigger > span:first-child {
    font-size: 1.25rem;

    line-height: 1.2;
  }


  .rj-faq__toggle {
    width: 39px;
    height: 39px;
  }


  .rj-faq__panel p {
    margin:
      -1px
      48px
      23px
      3px;

    font-size: 0.91rem;

    line-height: 1.67;
  }


  .rj-faq__decor-circle {
    display: none;
  }

}