/* ================================
   DelosWeb Consultation Section
================================ */

.dw-consultation-section {
  position: relative;
  padding: 0px 0;
  background: var(--theme-color-white);
  overflow: hidden;
}

.dw-consultation-box {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background: #f5f9ff;
  box-shadow: 0 24px 70px rgba(3, 27, 102, 0.10);
  overflow: hidden;
}

.dw-consultation-box::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(var(--theme-color-yellow-rgb), 0.12);
}

.dw-consultation-box::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(3, 8, 79, 0.06);
}

.dw-consultation-media,
.dw-consultation-content {
  position: relative;
  z-index: 2;
}

/* Image / Video */
.dw-consultation-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(3, 27, 102, 0.18);
}

.dw-consultation-media img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  display: block;
}

.dw-consultation-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 8, 79, 0.35) 0%,
    rgba(3, 8, 79, 0.05) 60%
  );
  pointer-events: none;
}

/* Play Button */
.dw-consultation-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--theme-color-dark4);
  color: var(--theme-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 15px 35px rgba(3, 8, 79, 0.35);
  transition: all 300ms ease;
}

.dw-consultation-play:hover {
  background: var(--theme-color-yellow);
  color: var(--theme-color-white);
  transform: translate(-50%, -50%) scale(1.06);
}

.dw-consultation-play i {
  font-size: 22px;
  margin-left: 4px;
}

/* Content */
.dw-consultation-subtitle {
  display: inline-block;
  color: var(--theme-color-yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.dw-consultation-content p {
  color: #4f5872;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  margin-bottom: 26px;
}

.dw-consultation-content p strong {
  color: var(--theme-color-dark4);
  font-weight: 800;
}

/* Points */
.dw-consultation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-consultation-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 100px;
  background: var(--theme-color-white);
  color: var(--theme-color-dark4);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(3, 27, 102, 0.08);
}

.dw-consultation-point i {
  color: var(--theme-color-yellow);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .dw-consultation-box {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px;
  }

  .dw-consultation-media img {
    height: 290px;
  }

}

@media (max-width: 767px) {
  .dw-consultation-section {
    padding: 80px 0;
  }

  .dw-consultation-box {
    padding: 26px;
    border-radius: 22px;
  }

  .dw-consultation-media img {
    height: 230px;
  }

  .dw-consultation-play {
    width: 62px;
    height: 62px;
  }

  .dw-consultation-play i {
    font-size: 18px;
  }

  .dw-consultation-content p {

  }
}

/* ==========================================
   Contact Section Rocket Decoration
   Colors: var(--theme-color-dark) + var(--theme-color-yellow)
========================================== */

.dw-contact-rocket-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.dw-contact-rocket-section .auto-container {
  position: relative;
  z-index: 2;
}

/* Rocket image */
.dw-contact-bg-rocket {
  --rocket-x: 0px;
  --rocket-y: 0px;
  --rocket-rotate: 22deg;
  --rocket-size: 434px !important;

  position: absolute;
  right: 60% !important;
  top: 702px !important;
  width: var(--rocket-size) !important;
  height: auto !important;
  max-width: none !important;
  z-index: 7;
  transform:
    translate(var(--rocket-x), var(--rocket-y))
    rotate(var(--rocket-rotate));
  transform-origin: center center;
  opacity: 0.5 !important;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 28px 46px rgba(var(--theme-color-dark-rgb), 0.16))
    drop-shadow(0 0 28px rgba(var(--theme-color-yellow-rgb), 0.16));
  animation: dwContactRocketFloat 6.5s ease-in-out infinite;
}

@keyframes dwContactRocketFloat {
  0%,
  100% {
    transform:
      translate(var(--rocket-x), var(--rocket-y))
      rotate(var(--rocket-rotate));
  }

  50% {
    transform:
      translate(
        calc(var(--rocket-x) + 14px),
        calc(var(--rocket-y) - 16px)
      )
      rotate(calc(var(--rocket-rotate) - 6deg));
  }
}

/* Optional soft glow behind rocket */
.dw-contact-rocket-section::before {
  content: "";
  position: absolute;
  right: 3%;
  top: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(var(--theme-color-yellow-rgb), 0.13), rgba(var(--theme-color-yellow-rgb), 0.04) 45%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .dw-contact-bg-rocket {
    right: 2%;
    top: 80px;
    --rocket-size: 210px;
    opacity: 0.45;
  }
}

@media (max-width: 991px) {
  .dw-contact-bg-rocket {
    right: 0;
    top: 60px;
    --rocket-size: 150px;
    opacity: 0.25;
  }
}

@media (max-width: 767px) {
  .dw-contact-bg-rocket {
    display: none;
  }

  .dw-contact-rocket-section::before {
    display: none;
  }
}

/* ==========================================
   Contact Page Clean Section + Blue CTA
   Colors: var(--theme-color-dark) + var(--theme-color-yellow)
========================================== */

.dw-contact-section-clean {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(var(--theme-color-yellow-rgb), 0.07), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(var(--theme-color-yellow-rgb), 0.06), transparent 32%),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
}

.dw-contact-section-clean .auto-container {
  position: relative;
  z-index: 3;
}

/* Optional rocket decoration for the white area */
.dw-contact-bg-rocket {
  --rocket-x: 0px;
  --rocket-y: 0px;
  --rocket-rotate: 18deg;
  --rocket-size: 230px;

  position: absolute;
  right: 5%;
  top: 95px;
  width: var(--rocket-size) !important;
  height: auto !important;
  max-width: none !important;
  z-index: 0;
  transform:
    translate(var(--rocket-x), var(--rocket-y))
    rotate(var(--rocket-rotate));
  transform-origin: center center;
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 28px 46px rgba(var(--theme-color-dark-rgb), 0.12))
    drop-shadow(0 0 28px rgba(var(--theme-color-yellow-rgb), 0.12));
  animation: dwContactRocketFloat 6.5s ease-in-out infinite;
}

@keyframes dwContactRocketFloat {
  0%,
  100% {
    transform:
      translate(var(--rocket-x), var(--rocket-y))
      rotate(var(--rocket-rotate));
  }

  50% {
    transform:
      translate(
        calc(var(--rocket-x) + 14px),
        calc(var(--rocket-y) - 16px)
      )
      rotate(calc(var(--rocket-rotate) - 6deg));
  }
}

/* ==========================================
   Blue Contact Confidence CTA
========================================== */

.dw-contact-confidence-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 5px;
  margin-top: 96px;
  padding: 30px 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 84%, rgba(var(--theme-color-yellow-rgb), 0.32), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(var(--theme-color-blue-bright-rgb), 0.26), transparent 32%),
    linear-gradient(135deg, #050b36 0%, var(--theme-color-deep-blue) 45%, var(--theme-color-dark) 100%);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.36);
  box-shadow:
    0 40px 110px rgba(var(--theme-color-dark-rgb), 0.24),
    0 0 54px rgba(var(--theme-color-yellow-rgb), 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  color: var(--theme-color-white);
}

.dw-contact-confidence-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(var(--theme-color-blue-bright-rgb), 0.52) 1.4px, transparent 2px);
  background-size: 128px 128px, 210px 210px;
  background-position: 28px 48px, 90px 130px;
  opacity: 0.1;
  pointer-events: none;
}

.dw-contact-confidence-cta::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(var(--theme-color-blue-bright-rgb), 0.16);
  pointer-events: none;
}

.dw-contact-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dw-contact-cta-bg::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 120px;
  width: 700px;
  height: 210px;
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.2);
  border-radius: 50%;
  transform: rotate(-15deg);
  animation: dwContactCtaOrbit 12s ease-in-out infinite;
}

.dw-contact-cta-bg::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 42%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color-blue-bright);
  box-shadow:
    0 0 22px rgba(var(--theme-color-blue-bright-rgb), 0.9),
    0 0 52px rgba(var(--theme-color-blue-bright-rgb), 0.55);
}

.dw-contact-cta-left,
.dw-contact-cta-steps {
  position: relative;
  z-index: 3;
}

/* Left side */

.dw-contact-cta-kicker {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--theme-color-blue-action);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dw-contact-cta-left h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--theme-color-white);
  font-size: var(--h2-font-size);
  line-height: 1.02;
  letter-spacing: -0.065em;
  text-shadow: 0 30px 80px rgba(var(--theme-color-dark-rgb), 0.46);
}

.dw-contact-cta-left h2 span {
      color: #43b7ff;
    font-weight: inherit;
    text-shadow: 0 0 30px rgba(67, 183, 255, 0.22);
}

.dw-contact-cta-left > p {
  max-width: 720px;
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--body-font-size);
  font-weight: 500;
  line-height: var(--body-line-height);
}

/* Badges */

.dw-contact-cta-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}

.dw-contact-cta-badges div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-color-blue-bright-rgb), 0.12), transparent 36%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.22);
  box-shadow:
    0 18px 44px rgba(var(--theme-color-dark-rgb), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.dw-contact-cta-badges i {
  display: grid;
  place-items: center;
  min-width: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color-blue-action), var(--theme-color-blue-royal));
  box-shadow: 0 12px 28px rgba(var(--theme-color-yellow-rgb), 0.28);
}

.dw-contact-cta-badges span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;

  line-height: 1.2;
}

/* Bottom CTA action */

.dw-contact-cta-action {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-color-blue-bright-rgb), 0.16), transparent 36%),
    rgba(var(--theme-color-dark-rgb), 0.18);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.28);
  box-shadow:
    0 24px 70px rgba(var(--theme-color-dark-rgb), 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.dw-contact-cta-action-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--theme-color-blue-bright);
  background: rgba(var(--theme-color-blue-bright-rgb), 0.12);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.22);
}

.dw-contact-cta-action-icon i {
  font-size: 23px;
}

.dw-contact-cta-action strong {
  display: block;
  margin-bottom: 5px;
  color: var(--theme-color-white);
  font-size: 18px;
  line-height: 1.25;
}

.dw-contact-cta-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.dw-contact-cta-btn,
.dw-contact-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 16px;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color-blue-action) 0%, var(--theme-color-yellow) 56%, var(--theme-color-blue-royal) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.dw-contact-cta-btn:hover,
.dw-contact-call-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-3px);
  box-shadow:
    0 28px 62px rgba(var(--theme-color-yellow-rgb), 0.44),
    0 0 36px rgba(var(--theme-color-blue-bright-rgb), 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

/* Right side steps */

.dw-contact-cta-steps {
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-color-blue-bright-rgb), 0.18), transparent 36%),
    linear-gradient(180deg, rgba(5, 25, 92, 0.88), rgba(var(--theme-color-dark-rgb), 0.72));
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.48);
  box-shadow:
    0 30px 90px rgba(var(--theme-color-dark-rgb), 0.34),
    0 0 44px rgba(var(--theme-color-yellow-rgb), 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.dw-contact-steps-header {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  padding: 34px 40px 28px;
  border-bottom: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.18);
}

.dw-contact-steps-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--theme-color-blue-bright);
  background: rgba(var(--theme-color-blue-bright-rgb), 0.12);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.22);
  box-shadow: 0 18px 42px rgba(var(--theme-color-yellow-rgb), 0.16);
}

.dw-contact-steps-icon i {
  font-size: 26px;
}

.dw-contact-steps-header h3 {
  margin: 0 0 6px;
  color: var(--theme-color-white);
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.dw-contact-steps-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--body-font-size);
  font-weight: 500;
  line-height: var(--body-line-height);
}

.dw-contact-steps-list {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 34px 40px 34px;
}

.dw-contact-steps-list::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 64px;
  bottom: 64px;
  width: 1px;
  border-left: 1px dashed rgba(var(--theme-color-blue-bright-rgb), 0.36);
}

.dw-contact-step-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 68px 1fr;
  gap: 24px;
  align-items: center;
  animation: dwContactStepIn 700ms ease both;
}

.dw-contact-step-item:nth-child(2) {
  animation-delay: 0.12s;
}

.dw-contact-step-item:nth-child(3) {
  animation-delay: 0.24s;
}

.dw-contact-step-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: linear-gradient(135deg, var(--theme-color-blue-action), var(--theme-color-blue-royal));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 34px rgba(var(--theme-color-yellow-rgb), 0.34),
    0 0 22px rgba(var(--theme-color-blue-bright-rgb), 0.22);
  font-size: 19px;
}

.dw-contact-step-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  color: var(--theme-color-white);
  background: rgba(var(--theme-color-blue-bright-rgb), 0.1);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.22);
  box-shadow:
    0 16px 34px rgba(var(--theme-color-dark-rgb), 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.dw-contact-step-icon i {
  font-size: 25px;
}

.dw-contact-step-item h4 {
  margin: 0 0 8px;
  color: var(--theme-color-white);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.dw-contact-step-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--body-font-size-small);
  font-weight: 500;
  line-height: var(--body-line-height-small);
}

/* Bottom quick call */

.dw-contact-steps-bottom {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px 40px;
  border-top: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.18);
  background: rgba(var(--theme-color-dark-rgb), 0.22);
}

.dw-contact-steps-bottom-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--theme-color-white);
  background: rgba(var(--theme-color-blue-bright-rgb), 0.12);
  border: 1px solid rgba(var(--theme-color-blue-bright-rgb), 0.24);
}

.dw-contact-steps-bottom-icon i {
  font-size: 21px;
}

.dw-contact-steps-bottom strong {
  display: block;
  margin-bottom: 4px;
  color: var(--theme-color-white);
  font-size: 17px; 
  line-height: 1.25;
}

.dw-contact-steps-bottom span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  font-weight: 500;
}

/* Animations */

@keyframes dwContactCtaOrbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-15deg);
  }

  50% {
    transform: translate3d(-18px, 12px, 0) rotate(-10deg);
  }
}

@keyframes dwContactStepIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 1199px) {
  .dw-contact-confidence-cta {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 58px 44px;
  }

  .dw-contact-cta-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dw-contact-bg-rocket {
    right: 2%;
    top: 80px;
    --rocket-size: 180px;
    opacity: 0.12;
  }
}

@media (max-width: 991px) {
  .dw-contact-confidence-cta {
    margin-top: 72px;
  }

  .dw-contact-cta-left {
    text-align: center;
  }

  .dw-contact-cta-left h2,
  .dw-contact-cta-left > p {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-contact-cta-action {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-contact-cta-action-icon {
    margin: 0 auto;
  }

  .dw-contact-bg-rocket {
    display: none;
  }
}

@media (max-width: 767px) {
  .dw-contact-confidence-cta {
    padding: 42px 24px;
    border-radius: 26px;
  }

  .dw-contact-cta-left > p {

  }

  .dw-contact-cta-badges {
    grid-template-columns: 1fr;
  }

  .dw-contact-steps-header,
  .dw-contact-steps-list,
  .dw-contact-steps-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dw-contact-steps-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-contact-steps-icon {
    margin: 0 auto;
  }

  .dw-contact-step-item {
    grid-template-columns: 48px 1fr;
  }

  .dw-contact-step-icon {
    display: none;
  }

  .dw-contact-steps-list::before {
    left: 47px;
  }

  .dw-contact-steps-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dw-contact-steps-bottom-icon {
    margin: 0 auto;
  }

  .dw-contact-call-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .dw-contact-confidence-cta {
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    padding: 36px 18px;
    margin-top: 58px;
  }

  .dw-contact-cta-left,
  .dw-contact-cta-steps,
  .dw-contact-cta-left h2,
  .dw-contact-cta-left > p,
  .dw-contact-cta-badges,
  .dw-contact-cta-action {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .dw-contact-cta-left h2,
  .dw-contact-cta-left > p,
  .dw-contact-cta-action strong,
  .dw-contact-cta-action span {
    overflow-wrap: break-word;
  }

  .dw-contact-cta-kicker {
    font-size: 12px;
  }

  .dw-contact-cta-badges div {
    box-sizing: border-box;
    min-width: 0;
    padding-inline: 16px;
  }

  .dw-contact-cta-action {
    padding: 22px 16px;
  }

  .dw-contact-steps-header h3 {
    font-size: 26px;
  }

  .dw-contact-step-item h4 {
    font-size: 19px;
  }

  .dw-contact-cta-btn {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 370px) {
  .dw-contact-cta-left h2 {
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }
}

@media (max-width: 376px) {
  .dw-contact-step-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .dw-contact-step-number,
  .dw-contact-steps-list::before {
    display: none;
  }
}

/* ================================
   DelosWeb Footer CTA
================================ */

.dw-footer-contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
  padding: 54px 58px;
  margin-bottom: 80px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(var(--theme-color-yellow-rgb), 0.26) 0%, rgba(var(--theme-color-yellow-rgb), 0) 34%),
    linear-gradient(135deg, var(--theme-color-dark4) 0%, var(--theme-color3) 55%, #061033 100%);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: -2;
}

.dw-footer-contact-cta::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(var(--theme-color-yellow-rgb), 0.18);
}

.dw-footer-contact-cta::after {
  content: "";
  position: absolute;
  left: -120px;
  top: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.dw-footer-contact-cta-content,
.dw-footer-contact-cta-actions {
  position: relative;
  z-index: 2;
}

.dw-footer-contact-cta-content span {
  display: inline-block;
  color: var(--theme-color-yellow);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 18px;
}

.dw-footer-contact-cta-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  margin-bottom: 0;
}

.dw-footer-contact-cta-content p strong {
  color: var(--theme-color-white);
  font-weight: 800;
}

.dw-footer-contact-cta-actions {
  text-align: right;
}

.dw-footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 18px 30px;
  border-radius: 100px;
  background: var(--theme-color-yellow);
  color: var(--theme-color-white);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: all 300ms ease;
}

.dw-footer-contact-btn:hover {
  background: var(--theme-color-white);
  color: var(--theme-color-dark4);
}

.dw-footer-contact-note {
  max-width: 300px;
  margin: 22px 0 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.dw-footer-contact-note strong {
  display: block;
  color: var(--theme-color-white);
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .dw-footer-contact-cta {
    grid-template-columns: 1fr;
    padding: 46px 38px;
    margin-bottom: 60px;
  }

  .dw-footer-contact-cta-actions {
    text-align: left;
  }

  .dw-footer-contact-note {
    margin-left: 0;
  }

}

@media (max-width: 767px) {
  .dw-footer-contact-cta {
    padding: 36px 26px;
    border-radius: 24px;
    margin-bottom: 50px;
  }

  .dw-footer-contact-btn {
    width: 100%;
  }
}

/* Contact page footer toon only */
.dw-contact-footer-toon {
  position: absolute;
  right: 35px;
  top: 45px;
  z-index: 3;
}

.dw-contact-footer-toon img {
  max-width: 198px;
  height: auto;
  display: block;
}

/* Prevent it from covering footer text */
@media (max-width: 1199px) {
  .dw-contact-footer-toon {
    right: 20px;
    top: 55px;
  }

  .dw-contact-footer-toon img {
    max-width: 150px;
  }
}

.ks-footer-style-3 .ks-cta-shape-2{
    left: auto;
    right: 0;
    top: -55px;
}

/* Fix footer CTA button click */
.dw-footer-contact-cta {
  position: relative;
  z-index: 5;
}

.dw-footer-contact-cta-actions {
  position: relative;
  z-index: 10;
}

.dw-footer-contact-btn {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

/* Prevent decorative footer character from blocking clicks */
.dw-contact-footer-toon,
.ks-cta-shape-2.dw-contact-footer-toon,
.ks-cta-shape-2.dw-contact-footer-toon img {
  top: 5px;
  z-index: 6;
  pointer-events: none;
}

/* ================================
   DelosWeb Video Modal
================================ */

.dw-consultation-play {
  border: none;
  cursor: pointer;
}

.dw-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.dw-video-modal.active {
  display: flex;
}

.dw-video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--theme-color-dark-rgb), 0.82);
  backdrop-filter: blur(6px);
}

.dw-video-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--theme-color-dark);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.dw-video-modal-content video {
  width: 100%;
  height: auto;
  display: block;
  background: var(--theme-color-black);
}

.dw-video-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color-white);
  color: var(--theme-color-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dw-video-close:hover {
  background: var(--theme-color-yellow);
  color: var(--theme-color-white);
}

@media (max-width: 767px) {
  .dw-video-modal {
    padding: 16px;
  }

  .dw-video-close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
  }
}


/* ==========================================
   FAQ Section Improved
   Keeps Current HTML Structure
   Colors: var(--theme-color-dark) + var(--theme-color-yellow)
========================================== */

.dw-faq-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 12% 24%, rgba(var(--theme-color-yellow-rgb), 0.08), transparent 30%),
    radial-gradient(circle at 86% 82%, rgba(var(--theme-color-yellow-rgb), 0.07), transparent 34%),
    linear-gradient(180deg, var(--theme-color-white) 0%, var(--theme-color-soft-blue-bg) 100%);
}

.dw-faq-section::before {
  content: "";
  position: absolute;
  left: -260px;
  top: 90px;
  width: 900px;
  height: 280px;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.13);
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: -2;
  animation: dwFaqOrbitOne 12s ease-in-out infinite;
}

.dw-faq-section::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: 70px;
  width: 720px;
  height: 230px;
  border: 1px dashed rgba(var(--theme-color-yellow-rgb), 0.14);
  border-radius: 50%;
  transform: rotate(16deg);
  pointer-events: none;
  z-index: -2;
  animation: dwFaqOrbitTwo 13s ease-in-out infinite;
}

.dw-faq-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: flex-start;
}

/* Left content */

.dw-faq-content {
  top: 110px;
  padding-top: 10px;
}

.dw-section-subtitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--theme-color-yellow);
  font-size: 14px;

  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dw-section-subtitle::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-color-yellow);
  box-shadow: 0 0 16px rgba(var(--theme-color-yellow-rgb), 0.35);
}

.dw-faq-content h2 {
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--theme-color-dark);
  font-size: var(--h2-font-size);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.dw-faq-content h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--theme-color-yellow), var(--theme-color-blue-bright));
  box-shadow: 0 0 18px rgba(var(--theme-color-yellow-rgb), 0.24);
}

.dw-faq-content p {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(var(--theme-color-dark-rgb), 0.68);
  font-size: var(--body-font-size);
  font-weight: 500;
  line-height: var(--body-line-height);
}

.dw-faq-content p strong {
  color: var(--theme-color-dark);
}

/* Button */

.dw-faq-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 62px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--theme-color-white);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color-deep-blue) 58%, var(--theme-color-dark) 100%);
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.22);
  box-shadow:
    0 20px 48px rgba(var(--theme-color-dark-rgb), 0.18),
    0 0 24px rgba(var(--theme-color-yellow-rgb), 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.dw-faq-btn:hover {
  color: var(--theme-color-white);
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(135deg, var(--theme-color-blue-action) 0%, var(--theme-color-yellow) 56%, var(--theme-color-blue-royal) 100%);
  box-shadow:
    0 28px 64px rgba(var(--theme-color-yellow-rgb), 0.28),
    0 0 34px rgba(var(--theme-color-blue-bright-rgb), 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dw-faq-btn span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 300ms ease, background 300ms ease;
}

.dw-faq-btn:hover span {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.16);
}

/* Accordion */

.dw-faq-accordion {
  display: grid;
  gap: 18px;
}

.dw-faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-color-yellow-rgb), 0.045), transparent 36%),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 52px rgba(var(--theme-color-dark-rgb), 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
}

.dw-faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-color-yellow-rgb), 0.34);
  box-shadow:
    0 24px 66px rgba(var(--theme-color-yellow-rgb), 0.11),
    inset 0 0 0 1px rgba(255, 255, 255, 0.92);
}

.dw-faq-item.active {
  border-color: rgba(var(--theme-color-yellow-rgb), 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--theme-color-yellow-rgb), 0.08), transparent 36%),
    var(--theme-color-white);
  box-shadow:
    0 28px 80px rgba(var(--theme-color-yellow-rgb), 0.13),
    0 0 28px rgba(var(--theme-color-yellow-rgb), 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.95);
}

/* Question button */

.dw-faq-question {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 28px 28px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--theme-color-dark);
  text-align: left;
  cursor: pointer;
}

.dw-faq-question span {
  display: block;
  color: var(--theme-color-dark);
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.dw-faq-question i {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
    rgba(var(--theme-color-yellow-rgb), 0.08);
  border: 1px solid rgba(var(--theme-color-yellow-rgb), 0.14);
  box-shadow:
    0 14px 30px rgba(var(--theme-color-yellow-rgb), 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  transition:
    background 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.dw-faq-question i::before,
.dw-faq-question i::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--theme-color-yellow);
  transition: transform 300ms ease, background 300ms ease;
}

.dw-faq-question i::after {
  transform: rotate(90deg);
}

.dw-faq-item.active .dw-faq-question i {
  background: linear-gradient(135deg, var(--theme-color-blue-action), var(--theme-color-yellow) 56%, var(--theme-color-blue-royal));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 38px rgba(var(--theme-color-yellow-rgb), 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dw-faq-item.active .dw-faq-question i::before,
.dw-faq-item.active .dw-faq-question i::after {
  background: var(--theme-color-white);
}

.dw-faq-item.active .dw-faq-question i::after {
  transform: rotate(0deg);
}

/* Answer */

.dw-faq-answer {
  padding: 0 28px 30px;
}

.dw-faq-answer p {
  max-width: 780px;
  margin: 0;
  padding-top: 4px;
  color: rgba(var(--theme-color-dark-rgb), 0.68);
  font-size: var(--body-font-size-small);
  font-weight: 500;
  line-height: var(--body-line-height-small);
}

.dw-faq-answer p strong {
  color: var(--theme-color-dark);
}

/* Animations */

@keyframes dwFaqOrbitOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    transform: translate3d(18px, -12px, 0) rotate(-13deg);
  }
}

@keyframes dwFaqOrbitTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }

  50% {
    transform: translate3d(-18px, 12px, 0) rotate(11deg);
  }
}

/* Responsive */

@media (max-width: 1199px) {
  .dw-faq-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dw-faq-content {
    position: relative;
    top: auto;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .dw-section-subtitle {
    justify-content: center;
  }

  .dw-faq-content h2,
  .dw-faq-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-faq-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .dw-faq-accordion {
    max-width: 920px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .dw-faq-section {
    padding: 76px 0 82px;
  }

  .dw-faq-content p {

  }

  .dw-faq-question {
    grid-template-columns: 1fr 40px;
    padding: 24px 22px;
  }

  .dw-faq-question span {
    font-size: 17px;
  }

  .dw-faq-question i {
    width: 40px;
    height: 40px;
  }

  .dw-faq-answer {
    padding: 0 22px 26px;
  }

  .dw-faq-answer p {

  }
}

@media (max-width: 575px) {
  .dw-faq-section {
    padding: 66px 0 72px;
  }

  .dw-section-subtitle {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .dw-faq-btn {
    width: 100%;
  }

  .dw-faq-question {
    grid-template-columns: 1fr 38px;
    gap: 16px;
    padding: 22px 18px;
  }

  .dw-faq-question i {
    width: 38px;
    height: 38px;
  }

  .dw-faq-answer {
    padding: 0 18px 24px;
  }
}


/* =========================================================
   DELOSWEB — CONTACT SECTION
   RESPONSIVE REDESIGN
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       SECTION
    ===================================================== */

    .dw-contact-launch-section {
        position: relative !important;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;

        padding: 64px 0 55px !important;

        overflow: hidden !important;
    }


    /* Real horizontal breathing room */
    .dw-contact-launch-section .contact-container {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto !important;

        padding-left: 22px !important;
        padding-right: 22px !important;

        box-sizing: border-box;
    }


    /* =====================================================
       MAIN LAYOUT
       Everything becomes normal document flow
    ===================================================== */

    .dw-contact-launch-grid {
        display: flex !important;
        flex-direction: column !important;

        grid-template-columns: none !important;

        width: 100% !important;
        max-width: 640px !important;

        height: auto !important;
        min-height: 0 !important;

        gap: 28px !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    /* =====================================================
       LEFT CONTENT
    ===================================================== */

    .dw-contact-launch-left {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        order: 1;

        width: 100% !important;
        max-width: 600px !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 auto !important;
        padding: 0 !important;

        transform: none !important;

        text-align: center !important;
    }


    /* =====================================================
       TITLE AREA
    ===================================================== */

    .dw-contact-launch-left .ks-section-title-wrap {
        width: 100% !important;
        max-width: 590px !important;

        margin: 0 auto 18px !important;

        padding: 0 4px !important;
    }


    .dw-contact-kicker {
        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        margin: 0 auto 14px !important;

        text-align: center !important;
    }


    .dw-contact-title {
        width: 100% !important;
        max-width: 580px !important;

        margin: 0 auto !important;

        font-size: clamp(32px, 6.4vw, 42px) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.025em !important;

        text-align: center !important;
    }


    .dw-contact-title span {
        display: inline !important;
    }


    /* =====================================================
       PARAGRAPH
    ===================================================== */

    .dw-contact-text {
        width: 100% !important;
        max-width: 560px !important;

        margin: 0 auto 24px !important;
        padding: 0 6px !important;

        font-size: 16px !important;
        line-height: 1.65 !important;

        text-align: center !important;
    }


    /* =====================================================
       MINI SUPPORT CARD
    ===================================================== */

    .dw-contact-mini-card {
        display: flex !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        max-width: 430px !important;

        gap: 14px !important;

        margin: 0 auto 24px !important;
        padding: 16px 18px !important;

        text-align: left !important;

        border-radius: 18px !important;

        box-sizing: border-box;
    }


    .dw-contact-mini-card > span {
        flex: 0 0 auto !important;

        margin: 0 !important;
    }


    .dw-contact-mini-card strong,
    .dw-contact-mini-card small {
        display: block !important;

        text-align: left !important;
    }


    .dw-contact-mini-card strong {
        margin-bottom: 3px !important;

        font-size: 15px !important;
        line-height: 1.3 !important;
    }


    .dw-contact-mini-card small {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }


    /* =====================================================
       CONTACT INFORMATION
       Compact vertical list
    ===================================================== */

    .dw-contact-info-list {
        display: grid !important;
        grid-template-columns: 1fr !important;

        width: 100% !important;
        max-width: 430px !important;

        gap: 4px !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }


    .dw-contact-info-item {
        display: flex !important;

        flex-direction: row !important;

        align-items: center !important;
        justify-content: flex-start !important;

        width: 100% !important;
        min-width: 0 !important;

        gap: 14px !important;

        margin: 0 !important;
        padding: 11px 8px !important;

        text-align: left !important;

        box-sizing: border-box;
    }


    /* Icon */
    .dw-contact-info-item > span {
        flex: 0 0 auto !important;

        margin: 0 !important;
    }


    /* Information text */
    .dw-contact-info-item strong {
        display: block !important;

        margin: 0 !important;

        font-size: 15px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;

        text-align: left !important;
    }


    /* Email and phone stay complete */
    .dw-contact-info-item:nth-child(1) strong,
    .dw-contact-info-item:nth-child(2) strong {
        white-space: nowrap !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* =====================================================
       ROCKET
       IMPORTANT:
       Remove giant empty mobile area
    ===================================================== */

    .dw-contact-rocket-wrap {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        order: 2;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: -4px auto -6px !important;
        padding: 0 !important;

        transform: none !important;

        pointer-events: none !important;
    }


    .dw-contact-rocket-wrap img {
        display: block !important;

        width: 155px !important;
        max-width: 34vw !important;

        height: auto !important;

        margin: 0 auto !important;

        transform: none !important;
    }


    /* =====================================================
       FORM
    ===================================================== */

    .dw-contact-form-wrap {
        position: relative !important;

        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;

        order: 3;

        width: 100% !important;
        max-width: 620px !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 auto !important;
        padding: 0 !important;

        transform: none !important;
    }


    .dw-contact-form-wrap .contact-form {
        width: 100% !important;

        margin: 0 !important;

        padding: 32px 26px !important;

        border-radius: 26px !important;

        box-sizing: border-box;
    }


    .dw-contact-form-wrap .contact-form .title {
        margin-bottom: 24px !important;

        font-size: 28px !important;
        line-height: 1.15 !important;
    }


    /* =====================================================
       FORM FIELDS
    ===================================================== */

    .dw-contact-form-wrap .form-group {
        margin-bottom: 14px !important;
    }


    .dw-contact-form-wrap input,
    .dw-contact-form-wrap select,
    .dw-contact-form-wrap textarea {
        width: 100% !important;

        box-sizing: border-box !important;
    }


    .dw-contact-form-wrap input,
    .dw-contact-form-wrap select {
        min-height: 54px !important;
    }


    .dw-contact-form-wrap textarea {
        min-height: 125px !important;
    }


    /* =====================================================
       DECORATION
    ===================================================== */

    .dw-contact-orbit {
        opacity: 0.35 !important;
    }


    .dw-contact-orbit-two {
        opacity: 0.18 !important;
    }

}