[data-vertical-spacing*="bottom"] {
  padding-bottom: 0 !important;
}

[data-vertical-spacing*="top"] {
  padding-top: 0 !important;
}

section {
  margin-bottom: 0 !important;
}

/* =========================================
GLOBAL LINK STYLE (NO DEFAULT BLUE)
========================================= */

a {
  color: #e7c767;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f0d98a;
}

/* =========================================
REVIVAL MOVING - LUXURY HEADER
========================================= */

/* Main header shell */
/* .ct-header {
  position: relative !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 10px 35px rgba(8, 17, 32, 0.06) !important;
} */

/* Sticky state */
.ct-header [data-sticky*="fixed"],
.ct-header [data-sticky*="shrink"] {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

/* Container */
.ct-header .ct-container {
  max-width: 1320px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* =========================================
FIX DROPDOWN HOVER GAP
========================================= */

/* Убираем разрыв */
#header-menu-1 .sub-menu {
  margin-top: 0 !important;
  top: 100% !important;
  transform: translateY(14px) !important; /* визуальный отступ */
}

/* Создаем невидимую зону (мост) */
#header-menu-1 .menu > li {
  position: relative !important;
}

#header-menu-1 .menu > li::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  height: 20px !important; /* зона перехода */
}

/* Анимация появления */
#header-menu-1 .sub-menu {
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

#header-menu-1 .menu > li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px) !important;
}

/* =========================================
REVIVAL MOVING - NEXT LEVEL DROPDOWN MENU
========================================= */

/* Parent item */
#header-menu-1 .menu > li {
  position: relative !important;
}

/* Invisible hover bridge */
#header-menu-1 .menu > li::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  height: 22px !important;
  z-index: 20 !important;
}

/* Services top link stays above bridge */
#header-menu-1 .menu > li > .ct-menu-link {
  position: relative !important;
  z-index: 30 !important;
}

/* Luxury dropdown */
#header-menu-1 .sub-menu {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  margin-top: 0 !important;
  padding: 12px !important;
  min-width: 280px !important;
  border-radius: 22px !important;
  background: rgba(8, 17, 31, 0.92) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(199, 164, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transform: translateX(-50%) translateY(18px) scale(0.98) !important;
  transform-origin: top center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease !important;
  z-index: 50 !important;
  overflow: hidden !important;
}

/* Soft glow layer */
#header-menu-1 .sub-menu::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(199, 164, 55, 0.1),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0) 42%
    ) !important;
  z-index: 0 !important;
}

/* Show on hover */
#header-menu-1 .menu > li:hover > .sub-menu,
#header-menu-1 .menu > li:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(8px) scale(1) !important;
}

/* Submenu list items */
#header-menu-1 .sub-menu > li {
  position: relative !important;
  margin: 0 !important;
  z-index: 1 !important;
}

#header-menu-1 .sub-menu > li + li {
  margin-top: 4px !important;
}

/* Submenu links */
#header-menu-1 .sub-menu a {
  position: relative !important;
  display: block !important;
  padding: 13px 14px !important;
  border-radius: 14px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

/* Elegant divider feel */
#header-menu-1 .sub-menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 0 !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  ) !important;
  opacity: 0.9 !important;
}

#header-menu-1 .sub-menu > li:last-child a::after {
  display: none !important;
}

/* Hover style */
#header-menu-1 .sub-menu a:hover,
#header-menu-1 .sub-menu li.current-menu-item > a,
#header-menu-1 .sub-menu li.current_page_item > a {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transform: translateX(4px) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 22px rgba(0, 0, 0, 0.12) !important;
}

/* Desktop arrow rotation */
#header-menu-1 li:hover > .ct-menu-link .ct-toggle-dropdown-desktop .ct-icon,
#header-menu-1
  li:focus-within
  > .ct-menu-link
  .ct-toggle-dropdown-desktop
  .ct-icon {
  transform: rotate(180deg) !important;
}

/* Improve alignment for submenu parent */
#header-menu-1 .menu-item-has-children > .ct-menu-link {
  padding-right: 16px !important;
}

/* Optional: active parent item when hovered */
#header-menu-1 .menu > li.menu-item-has-children:hover > .ct-menu-link {
  color: #0f172a !important;
  background: rgba(199, 164, 55, 0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 55, 0.14),
    0 8px 18px rgba(199, 164, 55, 0.06) !important;
}

/* =========================================
LOGO / SITE TITLE
========================================= */

.ct-header .site-title {
  display: inline-flex !important;
  align-items: center !important;
}

.ct-header .site-title a {
  position: relative !important;
  display: inline-block !important;
  color: #c7a437 !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
  line-height: 1 !important;
  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
}

.ct-header .site-title a:hover {
  color: #ddb954 !important;
  transform: translateY(-1px) !important;
}

/* Optional subtle premium glow */
.ct-header .site-title a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -6px !important;
  width: 100% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    rgba(199, 164, 55, 0),
    rgba(199, 164, 55, 0.75),
    rgba(199, 164, 55, 0)
  ) !important;
  opacity: 0.5 !important;
}

/* =========================================
DESKTOP MENU
========================================= */

#header-menu-1 .menu {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#header-menu-1 .menu > li {
  position: relative !important;
}

#header-menu-1 .menu > li > .ct-menu-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #334155 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

/* Hover */
#header-menu-1 .menu > li > .ct-menu-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.045) !important;
  transform: translateY(-1px) !important;
}

/* Animated underline glow */
#header-menu-1 .menu > li > .ct-menu-link::after {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  right: 16px !important;
  bottom: 8px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    90deg,
    rgba(199, 164, 55, 0),
    rgba(199, 164, 55, 1),
    rgba(199, 164, 55, 0)
  ) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  opacity: 0 !important;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease !important;
}

#header-menu-1 .menu > li > .ct-menu-link:hover::after,
#header-menu-1 .menu > li.current-menu-item > .ct-menu-link::after,
#header-menu-1 .menu > li.current_page_item > .ct-menu-link::after {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}

/* Active menu item */
#header-menu-1 .menu > li.current-menu-item > .ct-menu-link,
#header-menu-1 .menu > li.current_page_item > .ct-menu-link {
  color: #0f172a !important;
  background: rgba(199, 164, 55, 0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 55, 0.16),
    0 8px 18px rgba(199, 164, 55, 0.08) !important;
}

/* Dropdown arrow */
#header-menu-1 .ct-toggle-dropdown-desktop {
  margin-left: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
}

#header-menu-1 .ct-toggle-dropdown-desktop .ct-icon {
  fill: currentColor !important;
  transition: transform 0.3s ease !important;
}

#header-menu-1 li:hover > .ct-menu-link .ct-toggle-dropdown-desktop .ct-icon {
  transform: rotate(180deg) !important;
}

/* Hide ghost button visually but keep behavior */
#header-menu-1 .ct-toggle-dropdown-desktop-ghost {
  inset: 0 !important;
}

/* =========================================
SUBMENU - LUXURY DROPDOWN
========================================= */

#header-menu-1 .sub-menu {
  margin-top: 14px !important;
  padding: 12px !important;
  min-width: 270px !important;
  border-radius: 22px !important;
  background: rgba(10, 23, 40, 0.92) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(199, 164, 55, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

#header-menu-1 .sub-menu li {
  margin: 0 !important;
}

#header-menu-1 .sub-menu a {
  display: block !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease !important;
}

#header-menu-1 .sub-menu a:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
  transform: translateX(4px) !important;
}

/* =========================================
HEADER CTA BUTTON
========================================= */

.ct-header-cta .ct-button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  isolation: isolate !important;
  text-decoration: none !important;
  color: #0b1f3a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%) !important;
  box-shadow:
    0 16px 34px rgba(197, 160, 33, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease !important;
}

.ct-header-cta .ct-button::before {
  content: "" !important;
  position: absolute !important;
  inset: 1px !important;
  border-radius: inherit !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  ) !important;
  z-index: 1 !important;
}

.ct-header-cta .ct-button::after {
  content: "" !important;
  position: absolute !important;
  top: -20% !important;
  left: -130% !important;
  width: 60% !important;
  height: 140% !important;
  transform: rotate(18deg) !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  z-index: 2 !important;
  transition: left 0.75s ease !important;
  pointer-events: none !important;
}

.ct-header-cta .ct-button:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 22px 48px rgba(197, 160, 33, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

.ct-header-cta .ct-button:hover::after {
  left: 145% !important;
}

/* =========================================
MOBILE HEADER
========================================= */

@media (max-width: 999px) {
  .ct-header .ct-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ct-header .site-title a {
    font-size: 17px !important;
  }

  .ct-header-cta .ct-button {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
  }
}

/* =========================================
MOBILE MENU BUTTON
========================================= */

.ct-header-trigger {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  margin-left: 10px !important;
  border-radius: 16px !important;
  background: rgba(15, 23, 42, 0.05) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 22px rgba(15, 23, 42, 0.06) !important;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
}

.ct-header-trigger:hover {
  transform: translateY(-2px) !important;
  background: rgba(199, 164, 55, 0.08) !important;
  border-color: rgba(199, 164, 55, 0.16) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 14px 28px rgba(15, 23, 42, 0.1) !important;
}

.ct-header-trigger .ct-icon rect {
  fill: #0f172a !important;
  transition: fill 0.3s ease !important;
}

.ct-header-trigger:hover .ct-icon rect {
  fill: #c7a437 !important;
}

/* =========================================
OFFCANVAS / MOBILE PANEL
========================================= */

#offcanvas,
.ct-panel-content,
.ct-panel-inner {
  background: linear-gradient(180deg, #08111f 0%, #0a1728 100%) !important;
}

#offcanvas {
  border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28) !important;
}

#offcanvas .menu a,
#offcanvas .ct-menu-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
}

#offcanvas .menu a:hover,
#offcanvas .ct-menu-link:hover {
  color: #e7c767 !important;
  transform: translateX(4px) !important;
}

#offcanvas .current-menu-item > a,
#offcanvas .current_page_item > a {
  color: #ffffff !important;
}

#offcanvas .sub-menu {
  background: transparent !important;
}

#offcanvas .ct-panel-close {
  color: #ffffff !important;
}

.ct-header {
  position: unset !important;
}

/* Default (top) */
.ct-header {
  background: transparent !important;
  box-shadow: none !important;
}

/* When sticky */
.ct-header [data-sticky*="yes"] {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* =========================================
HEADER ROW HEIGHT / ALIGNMENT
========================================= */

.ct-header [data-row="middle"] .ct-container {
  min-height: 90px !important;
}

@media (max-width: 999px) {
  .ct-header [data-row="middle"] .ct-container {
    min-height: 78px !important;
  }
}

/* =========================================
REVIVAL MOVING - HERO SECTION
========================================= */

.rm-hero {
  position: relative;
  min-height: calc(100svh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 20px;
  background: #081120;
}

.rm-hero__bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=2000&q=80")
    center center / cover no-repeat;
  transform: scale(1.05);
}

.rm-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 12, 24, 0.95) 0%,
      rgba(5, 12, 24, 0.86) 36%,
      rgba(5, 12, 24, 0.54) 64%,
      rgba(5, 12, 24, 0.78) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 17, 32, 0.18) 0%,
      rgba(8, 17, 32, 0.72) 100%
    );
}

.rm-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.rm-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  min-height: 100%;
}

.rm-hero__content {
  max-width: 640px;
  color: #ffffff;
}

.rm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(197, 160, 33, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-hero__title {
  margin: 0 0 22px;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.rm-hero__text {
  margin: 0 0 30px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.rm-hero__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 34px;
}

.rm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  font-weight: 700;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.rm-btn__text {
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* =========================================
PRIMARY BUTTON - LUXURY SWEEP EFFECT
========================================= */

.rm-btn-primary {
  color: #0b1f3a;
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 50%, #d4af37 100%);
  box-shadow:
    0 18px 40px rgba(197, 160, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.rm-btn-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

.rm-btn-primary::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -130%;
  width: 58%;
  height: 140%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  transition: left 0.75s ease;
  pointer-events: none;
}

.rm-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 52px rgba(197, 160, 33, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
  color: #333 !important;
}

.rm-btn-primary:hover::after {
  left: 145%;
}

/* =========================================
SECOND BUTTON - DARK LUXURY SWEEP
========================================= */

.rm-btn-outline {
  position: relative;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* subtle shine layer */
.rm-btn-outline::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
  z-index: 1;
}

/* SAME SWEEP EFFECT AS PRIMARY */
.rm-btn-outline::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -130%;
  width: 60%;
  height: 140%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  transition: left 0.75s ease;
  pointer-events: none;
}

.rm-btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* sweep animation */
.rm-btn-outline:hover::after {
  left: 145%;
}

/* =========================================
MINI STATS
========================================= */

.rm-hero__mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rm-hero__stat {
  min-width: 120px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.rm-hero__stat strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.rm-hero__stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

/* =========================================
LUXURY IMAGE EFFECT
========================================= */

.rm-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;

  /* base shadow */
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

/* subtle top light */
.rm-hero__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 35%
  );
  z-index: 2;
  pointer-events: none;
}

/* glow border effect */
.rm-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(212, 175, 55, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* image */
.rm-hero__image {
  display: block;
  width: 100%;
  height: min(680px, 72svh);
  object-fit: cover;

  transform: scale(1);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.92) contrast(1.08) saturate(1.05);
}

/* =========================================
HOVER EFFECT (DESKTOP ONLY)
========================================= */

@media (hover: hover) {
  .rm-hero__image-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
      0 40px 100px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .rm-hero__image-wrap:hover::after {
    opacity: 1;
  }

  .rm-hero__image-wrap:hover .rm-hero__image {
    transform: scale(1.15);
    filter: brightness(1.05) contrast(1.05);
  }
}

/* =========================================
RIGHT VISUAL
========================================= */

.rm-hero__visual {
  display: flex;
  justify-content: flex-end;
}

/* =========================================
GLOBAL REVEAL CLASSES FOR EXISTING JS
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-hero {
    min-height: calc(100svh - 90px);
    padding: 34px 20px;
  }

  .rm-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-hero__content {
    max-width: 100%;
  }

  .rm-hero__visual {
    justify-content: center;
  }

  .rm-hero__image-wrap {
    max-width: 760px;
  }

  .rm-hero__image {
    height: min(420px, 40svh);
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-hero {
    min-height: calc(100svh - 90px);
    padding: 26px 16px;
  }

  .rm-hero__grid {
    gap: 22px;
  }

  .rm-hero__title {
    font-size: clamp(34px, 11vw, 48px);
    margin-bottom: 18px;
  }

  .rm-hero__text {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 22px;
  }

  .rm-hero__buttons {
    gap: 10px;
    flex-wrap: nowrap;
    margin-bottom: 22px;
  }

  .rm-btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 52px;
    padding: 0 14px;
  }

  .rm-btn__text {
    font-size: 13px;
    letter-spacing: 0;
  }

  .rm-hero__mini-stats {
    gap: 10px;
  }

  .rm-hero__stat {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 13px 13px;
  }

  .rm-hero__image {
    height: min(290px, 30svh);
  }
}

@media (max-width: 480px) {
  .rm-hero {
    padding: 22px 12px;
  }

  .rm-hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 7px 12px;
    margin-bottom: 16px;
  }

  .rm-btn {
    min-height: 50px;
    padding: 0 10px;
  }

  .rm-btn__text {
    font-size: 12px;
  }

  .rm-hero__image {
    height: min(250px, 28svh);
  }
}

/* =========================================
REVIVAL MOVING - SERVICES SECTION
========================================= */

.rm-services {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at top left,
      rgba(197, 160, 33, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #07111f 0%, #091627 52%, #0b1a2d 100%);
}

.rm-services__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      circle at 85% 18%,
      rgba(197, 160, 33, 0.12),
      transparent 22%
    );
}

.rm-services__inner {
  position: relative;
  z-index: 2;
}

.rm-services__heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.rm-services__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-services__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-services__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================
SERVICES GRID
========================================= */

.rm-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* =========================================
SERVICE CARD
========================================= */

.rm-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 34px 30px 28px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}

.rm-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(197, 160, 33, 0.16) 0%,
      rgba(197, 160, 33, 0) 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0) 44%
    );
  opacity: 0.85;
  z-index: 0;
  transition: opacity 0.45s ease;
}

.rm-service-card::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -130%;
  width: 52%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
  transition: left 0.8s ease;
  pointer-events: none;
}

.rm-service-card__icon,
.rm-service-card__content,
.rm-service-card__number {
  position: relative;
  z-index: 2;
}

.rm-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  border-radius: 22px;
  color: #e7c767;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(197, 160, 33, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.45s ease,
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.rm-service-card__icon svg {
  width: 34px;
  height: 34px;
}

.rm-service-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-service-card__desc {
  margin: 0;
  max-width: 92%;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.72;
}

.rm-service-card__number {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  transition:
    color 0.45s ease,
    transform 0.45s ease;
}

/* =========================================
CARD HOVER
========================================= */

@media (hover: hover) {
  .rm-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 33, 0.28);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(197, 160, 33, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .rm-service-card:hover::after {
    left: 145%;
  }

  .rm-service-card:hover .rm-service-card__icon {
    transform: translateY(-4px) scale(1.06);
    color: #0b1f3a;
    background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
    border-color: rgba(197, 160, 33, 0.42);
    box-shadow:
      0 18px 34px rgba(197, 160, 33, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  .rm-service-card:hover .rm-service-card__number {
    color: rgba(231, 199, 103, 0.18);
    transform: translateY(-4px);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES (YOUR EXISTING JS)
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {
  .rm-services {
    padding: 100px 20px;
  }

  .rm-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rm-service-card {
    min-height: 280px;
  }

  .rm-service-card__title {
    font-size: 25px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-services {
    padding: 84px 16px;
  }

  .rm-services__heading {
    margin-bottom: 36px;
  }

  .rm-services__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .rm-services__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .rm-service-card {
    min-height: auto;
    padding: 26px 22px 72px;
    border-radius: 24px;
  }

  .rm-service-card__icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    border-radius: 20px;
  }

  .rm-service-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .rm-service-card__title {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .rm-service-card__desc {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.68;
  }

  .rm-service-card__number {
    right: 18px;
    bottom: 16px;
    font-size: 42px;
  }
}

@media (max-width: 480px) {
  .rm-services {
    padding: 78px 12px;
  }

  .rm-services__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-service-card {
    padding: 24px 18px 68px;
  }

  .rm-service-card__title {
    font-size: 21px;
  }

  .rm-service-card__desc {
    font-size: 14px;
  }
}

/* =========================================
REVIVAL MOVING - WHY CHOOSE US SECTION
========================================= */

.rm-why {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(197, 160, 33, 0.07),
      transparent 24%
    ),
    linear-gradient(180deg, #0b1a2d 0%, #0a1728 50%, #08111f 100%);
}

.rm-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.022) 0%,
      rgba(255, 255, 255, 0) 44%
    ),
    radial-gradient(circle at 84% 22%, rgba(197, 160, 33, 0.1), transparent 20%);
}

.rm-why__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}

.rm-why__content {
  padding-right: 16px;
}

.rm-why__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-why__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-why__text {
  margin: 0 0 28px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.rm-why__quote {
  position: relative;
  max-width: 560px;
  padding: 24px 24px 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.rm-why__quote-line {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c5a021 0%, #f0d98a 100%);
}

.rm-why__quote p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

/* =========================================
RIGHT SIDE
========================================= */

.rm-why__right {
  display: flex;
  flex-direction: column;
}

.rm-why__image-box {
  width: 100%;
}

.rm-why__image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.rm-why__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(8, 17, 32, 0.04) 0%,
      rgba(8, 17, 32, 0.18) 100%
    );
}

.rm-why__image-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 18% 18%,
    rgba(197, 160, 33, 0.22),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.rm-why__image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
  filter: brightness(0.92) contrast(1.06) saturate(1.04);
}

.rm-why__image-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(8, 17, 32, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.rm-why__image-badge strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.rm-why__image-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
CARDS ROW
========================================= */

.rm-why__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.rm-why-card {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.rm-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(197, 160, 33, 0.12) 0%,
      rgba(197, 160, 33, 0) 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 50%
    );
  z-index: 0;
  opacity: 0.9;
  transition: opacity 0.45s ease;
}

.rm-why-card::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -130%;
  width: 52%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
  transition: left 0.8s ease;
  pointer-events: none;
}

.rm-why-card__icon,
.rm-why-card__title,
.rm-why-card__desc {
  position: relative;
  z-index: 2;
}

.rm-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: #e7c767;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(197, 160, 33, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.45s ease,
    color 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.rm-why-card__icon svg {
  width: 32px;
  height: 32px;
}

.rm-why-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-why-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================
BOTTOM TRUST STRIP
========================================= */

.rm-why__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.rm-why__bottom-item {
  padding: 8px 12px;
}

.rm-why__bottom-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.rm-why__bottom-item span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
HOVER
========================================= */

@media (hover: hover) {
  .rm-why__image-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
      0 38px 95px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .rm-why__image-wrap:hover::after {
    opacity: 1;
  }

  .rm-why__image-wrap:hover .rm-why__image {
    transform: scale(1.08);
    filter: brightness(0.98) contrast(1.08) saturate(1.06);
  }

  .rm-why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 33, 0.28);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(197, 160, 33, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .rm-why-card:hover::after {
    left: 145%;
  }

  .rm-why-card:hover .rm-why-card__icon {
    transform: translateY(-4px) scale(1.06);
    color: #0b1f3a;
    background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
    border-color: rgba(197, 160, 33, 0.42);
    box-shadow:
      0 18px 34px rgba(197, 160, 33, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES (YOUR EXISTING JS)
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-why {
    padding: 100px 20px;
  }

  .rm-why__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-why__content {
    padding-right: 0;
  }

  .rm-why__image-wrap,
  .rm-why__image {
    min-height: 0;
    height: 460px;
  }

  .rm-why__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .rm-why__bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-why {
    padding: 84px 16px;
  }

  .rm-why__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .rm-why__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .rm-why__quote {
    padding: 20px 18px 20px 24px;
    border-radius: 22px;
  }

  .rm-why__quote p {
    font-size: 16px;
    line-height: 1.65;
  }

  .rm-why__image-wrap,
  .rm-why__image {
    height: 360px;
    border-radius: 26px;
  }

  .rm-why__image-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    border-radius: 18px;
  }

  .rm-why__image-badge strong {
    font-size: 17px;
  }

  .rm-why__image-badge span {
    font-size: 13px;
  }

  .rm-why__cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .rm-why-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .rm-why-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 18px;
  }

  .rm-why-card__title {
    font-size: 22px;
  }

  .rm-why-card__desc {
    font-size: 14px;
    line-height: 1.68;
  }

  .rm-why__bottom {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .rm-why__bottom-item {
    padding: 4px 0;
  }

  .rm-why__bottom-item strong {
    font-size: 17px;
  }

  .rm-why__bottom-item span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .rm-why {
    padding: 78px 12px;
  }

  .rm-why__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-why__image-wrap,
  .rm-why__image {
    height: 300px;
  }
}

/* =========================================
QUOTE CTA SECTION
========================================= */

.rm-quote {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(197, 160, 33, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 100%);
}

.rm-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXT */

.rm-quote__eyebrow {
  color: #e7c767;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.rm-quote__title {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin-bottom: 18px;
}

.rm-quote__text {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
  max-width: 520px;
}

/* BUTTONS */

.rm-quote__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* IMAGE */

.rm-quote__image-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.rm-quote__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.6s;
}

.rm-quote__image-wrap:hover .rm-quote__image {
  transform: scale(1.08);
}

/* =========================================
DESKTOP: IMAGE LEFT / TEXT RIGHT
========================================= */

@media (min-width: 992px) {
  .rm-quote__content {
    order: 2;
  }

  .rm-quote__image-box {
    order: 1;
  }
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .rm-quote__inner {
    grid-template-columns: 1fr;
  }

  .rm-quote__image {
    height: 380px;
  }
}

/* =========================================
REVIVAL MOVING - PROCESS SECTION
========================================= */

.rm-process {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 52%, #0b1a2d 100%);
}

.rm-process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      circle at 14% 86%,
      rgba(197, 160, 33, 0.08),
      transparent 20%
    );
}

.rm-process__heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.rm-process__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-process__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-process__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================
GRID
========================================= */

.rm-process__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* =========================================
CARD
========================================= */

.rm-process-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.rm-process-card__image-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.rm-process-card__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(180deg, rgba(8, 17, 32, 0.02) 0%, rgba(8, 17, 32, 0.3) 100%);
}

.rm-process-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  filter: brightness(0.92) contrast(1.05) saturate(1.03);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.rm-process-card__step {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 17, 32, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.rm-process-card__body {
  padding: 24px 22px 24px;
}

.rm-process-card__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-process-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================
HOVER
========================================= */

@media (hover: hover) {
  .rm-process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 33, 0.24);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(197, 160, 33, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .rm-process-card:hover .rm-process-card__image {
    transform: scale(1.08);
    filter: brightness(0.98) contrast(1.08) saturate(1.05);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .rm-process {
    padding: 84px 16px;
  }

  .rm-process__heading {
    margin-bottom: 36px;
  }

  .rm-process__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .rm-process__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .rm-process__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rm-process-card {
    border-radius: 24px;
  }

  .rm-process-card__image-wrap {
    height: 220px;
  }

  .rm-process-card__body {
    padding: 22px 18px 22px;
  }

  .rm-process-card__title {
    font-size: 21px;
  }

  .rm-process-card__desc {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 480px) {
  .rm-process {
    padding: 78px 12px;
  }

  .rm-process__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-process-card__image-wrap {
    height: 200px;
  }
}

/* =========================================
REVIEWS SECTION
========================================= */

.rm-reviews {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b1a2d 0%, #08111f 100%);
}

.rm-reviews__heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.rm-reviews__eyebrow {
  color: #e7c767;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rm-reviews__title {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}

.rm-reviews__text {
  color: rgba(255, 255, 255, 0.7);
}

/* GRID */

.rm-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */

.rm-review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
}

/* TOP */

.rm-review-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.rm-review-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.rm-review-card__name {
  color: #fff;
  font-weight: 600;
}

.rm-review-card__stars {
  color: #e7c767;
  font-size: 14px;
  letter-spacing: 2px;
}

/* TEXT */

.rm-review-card__text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* HOVER */

.rm-review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 33, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .rm-reviews__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .rm-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
REVIVAL MOVING - FINAL CTA SECTION
========================================= */

.rm-final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: #08111f;
}

.rm-final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(197, 160, 33, 0.12),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(197, 160, 33, 0.08),
      transparent 22%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 52%, #0b1a2d 100%);
}

.rm-final-cta__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 44%
  );
}

.rm-final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.rm-final-cta__content {
  max-width: 640px;
}

.rm-final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-final-cta__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-final-cta__text {
  margin: 0 0 30px;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.rm-final-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
RIGHT VISUAL
========================================= */

.rm-final-cta__visual {
  display: flex;
  justify-content: flex-end;
}

.rm-final-cta__image-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.rm-final-cta__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(8, 17, 32, 0.04) 0%,
      rgba(8, 17, 32, 0.24) 100%
    );
}

.rm-final-cta__image-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(197, 160, 33, 0.22),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.rm-final-cta__image {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: scale(1);
  filter: brightness(0.92) contrast(1.06) saturate(1.04);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.rm-final-cta__badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(8, 17, 32, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.rm-final-cta__badge strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.rm-final-cta__badge span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
HOVER
========================================= */

@media (hover: hover) {
  .rm-final-cta__image-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
      0 40px 95px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .rm-final-cta__image-wrap:hover::after {
    opacity: 1;
  }

  .rm-final-cta__image-wrap:hover .rm-final-cta__image {
    transform: scale(1.08);
    filter: brightness(0.98) contrast(1.08) saturate(1.06);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES (YOUR EXISTING JS)
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-final-cta {
    padding: 100px 20px;
  }

  .rm-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-final-cta__content {
    max-width: 100%;
  }

  .rm-final-cta__visual {
    justify-content: center;
  }

  .rm-final-cta__image-wrap,
  .rm-final-cta__image {
    min-height: 0;
    height: 460px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-final-cta {
    padding: 84px 16px;
  }

  .rm-final-cta__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rm-final-cta__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .rm-final-cta__actions {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .rm-final-cta__actions .vc-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .rm-final-cta__image-wrap,
  .rm-final-cta__image {
    height: 360px;
    border-radius: 28px;
  }

  .rm-final-cta__badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    border-radius: 18px;
  }

  .rm-final-cta__badge strong {
    font-size: 17px;
  }

  .rm-final-cta__badge span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .rm-final-cta {
    padding: 78px 12px;
  }

  .rm-final-cta__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-final-cta__image-wrap,
  .rm-final-cta__image {
    height: 300px;
  }
}

/* =========================================
REVIVAL MOVING - FAQ SECTION
========================================= */

.rm-faq {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #0b1a2d 0%, #091321 52%, #08111f 100%);
}

.rm-faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      circle at 84% 82%,
      rgba(197, 160, 33, 0.08),
      transparent 20%
    );
}

.rm-faq__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.rm-faq__content {
  padding-right: 16px;
}

.rm-faq__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-faq__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-faq__text {
  margin: 0 0 26px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.rm-faq__note {
  max-width: 520px;
  padding: 22px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.rm-faq__note strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.rm-faq__note span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================
FAQ LIST
========================================= */

.rm-faq__list {
  display: grid;
  gap: 16px;
}

.rm-faq-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.rm-faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(197, 160, 33, 0.12) 0%,
      rgba(197, 160, 33, 0) 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 50%
    );
  z-index: 0;
  opacity: 0.95;
  pointer-events: none;
}

.rm-faq-item.is-open {
  border-color: rgba(197, 160, 33, 0.26);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(197, 160, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rm-faq-item__trigger {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 24px 24px;
}

.rm-faq-item__question {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-faq-item__icon {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(197, 160, 33, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.rm-faq-item__icon::before,
.rm-faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #e7c767;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.rm-faq-item__icon::before {
  width: 18px;
  height: 2px;
}

.rm-faq-item__icon::after {
  width: 2px;
  height: 18px;
}

.rm-faq-item.is-open .rm-faq-item__icon {
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
  border-color: rgba(197, 160, 33, 0.34);
}

.rm-faq-item.is-open .rm-faq-item__icon::before,
.rm-faq-item.is-open .rm-faq-item__icon::after {
  background: #0b1f3a;
}

.rm-faq-item.is-open .rm-faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.rm-faq-item__content {
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}

.rm-faq-item__answer {
  padding: 0 24px 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.78;
}

/* =========================================
HOVER
========================================= */

@media (hover: hover) {
  .rm-faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 33, 0.18);
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .rm-faq-item__trigger:hover .rm-faq-item__icon {
    transform: translateY(-2px);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-faq {
    padding: 100px 20px;
  }

  .rm-faq__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-faq__content {
    padding-right: 0;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-faq {
    padding: 84px 16px;
  }

  .rm-faq__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rm-faq__text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .rm-faq__note {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .rm-faq-item {
    border-radius: 20px;
  }

  .rm-faq-item__trigger {
    padding: 20px 18px;
    gap: 14px;
  }

  .rm-faq-item__question {
    font-size: 18px;
    line-height: 1.38;
  }

  .rm-faq-item__icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .rm-faq-item__answer {
    padding: 0 18px 20px;
    font-size: 14px;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .rm-faq {
    padding: 78px 12px;
  }

  .rm-faq__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* =========================================
REVIVAL MOVING - FOOTER
========================================= */

.rm-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 20px 26px;
  background: linear-gradient(180deg, #07111f 0%, #050c17 100%);
}

.rm-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(197, 160, 33, 0.1),
      transparent 24%
    ),
    radial-gradient(
      circle at 86% 82%,
      rgba(197, 160, 33, 0.07),
      transparent 20%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 42%
    );
}

.rm-footer__top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.6fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rm-footer__col {
  min-width: 0;
}

.rm-footer__brand {
  padding-right: 12px;
}

.rm-footer__logo-wrap {
  margin-bottom: 18px;
}

.rm-footer__logo {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-footer__brand-text {
  margin: 0 0 24px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.rm-footer__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rm-footer__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rm-footer__links li {
  margin: 0;
  padding: 0;
}

.rm-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.rm-footer__links a:hover {
  color: #e7c767;
  transform: translateX(4px);
}

.rm-footer__contact-list {
  display: grid;
  gap: 18px;
}

.rm-footer__contact-item {
  display: grid;
  gap: 6px;
}

.rm-footer__contact-label {
  color: #e7c767;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rm-footer__contact-item a,
.rm-footer__contact-item span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  text-decoration: none;
}

.rm-footer__contact-item a:hover {
  color: #ffffff;
}

.rm-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
}

.rm-footer__bottom-left {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.rm-footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.rm-footer__bottom-right a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rm-footer__bottom-right a:hover {
  color: #e7c767;
}

/* =========================================
GLOBAL REVEAL CLASSES (YOUR EXISTING JS)
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 26px 22px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-footer {
    padding: 78px 16px 22px;
  }

  .rm-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .rm-footer__brand-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .rm-footer__actions {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .rm-footer__actions .vc-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .rm-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }

  .rm-footer__bottom-right {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .rm-footer {
    padding: 72px 12px 20px;
  }

  .rm-footer__title {
    font-size: 18px;
  }

  .rm-footer__logo {
    font-size: 26px;
  }

  .rm-footer__bottom-left,
  .rm-footer__bottom-right a {
    font-size: 12px;
  }
}

footer .ct-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

/* =========================================
CONTACT PAGE - HERO
========================================= */

.rm-contact-hero {
  position: relative;
  min-height: calc(100svh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
  background: #081120;
}

.rm-contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/bg-hero-contact.webp") center center /
    cover no-repeat;
  transform: scale(1.04);
}

.rm-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 12, 24, 0.92) 0%,
      rgba(5, 12, 24, 0.82) 42%,
      rgba(5, 12, 24, 0.58) 100%
    ),
    linear-gradient(180deg, rgba(8, 17, 32, 0.2) 0%, rgba(8, 17, 32, 0.72) 100%);
}

.rm-contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
}

.rm-contact-hero__eyebrow,
.rm-contact-main__eyebrow,
.rm-contact-highlights__eyebrow,
.rm-contact-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-contact-hero__title,
.rm-contact-main__title,
.rm-contact-highlights__title,
.rm-contact-cta__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-contact-hero__text,
.rm-contact-main__text,
.rm-contact-main__info-text,
.rm-contact-highlights__text,
.rm-contact-cta__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.rm-contact-hero__text {
  max-width: 640px;
  margin: 0 0 28px;
}

.rm-contact-hero__actions,
.rm-contact-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
CONTACT MAIN
========================================= */

.rm-contact-main {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 100%);
}

.rm-contact-main__bg,
.rm-contact-highlights__bg,
.rm-contact-cta__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rm-contact-main__bg {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 40%
  );
}

.rm-contact-main__inner,
.rm-contact-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.rm-contact-main__form-wrap,
.rm-contact-main__info-wrap {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.rm-contact-main__title {
  font-size: clamp(30px, 3.4vw, 44px);
}

.rm-contact-main__text {
  margin: 0 0 24px;
}

.rm-contact-main__form-box {
  margin-top: 8px;
}

/* =========================================
CONTACT RIGHT SIDE
========================================= */

.rm-contact-main__info-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rm-contact-main__image-wrap,
.rm-contact-cta__image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.rm-contact-main__image-wrap::before,
.rm-contact-cta__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(8, 17, 32, 0.04) 0%,
      rgba(8, 17, 32, 0.24) 100%
    );
}

.rm-contact-main__image,
.rm-contact-cta__image {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.06) saturate(1.04);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

.rm-contact-main__image-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(8, 17, 32, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.rm-contact-main__image-badge strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.rm-contact-main__image-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.rm-contact-main__info-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-contact-main__info-text {
  margin: 0 0 24px;
}

.rm-contact-main__list {
  display: grid;
  gap: 18px;
}

.rm-contact-main__item {
  display: grid;
  gap: 6px;
}

.rm-contact-main__label {
  color: #e7c767;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rm-contact-main__item a,
.rm-contact-main__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  line-height: 1.7;
}

/* =========================================
CONTACT HIGHLIGHTS
========================================= */

.rm-contact-highlights {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #0a1728 0%, #0b1a2d 100%);
}

.rm-contact-highlights__bg {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 42%
  );
}

.rm-contact-highlights__heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.rm-contact-highlights__text {
  margin: 0;
}

.rm-contact-highlights__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rm-contact-highlight {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.rm-contact-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(197, 160, 33, 0.12) 0%,
      rgba(197, 160, 33, 0) 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 50%
    );
  z-index: 0;
}

.rm-contact-highlight__icon,
.rm-contact-highlight__title,
.rm-contact-highlight__desc {
  position: relative;
  z-index: 2;
}

.rm-contact-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: #e7c767;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border: 1px solid rgba(197, 160, 33, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.45s ease,
    color 0.45s ease,
    background 0.45s ease;
}

.rm-contact-highlight__icon svg {
  width: 32px;
  height: 32px;
}

.rm-contact-highlight__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rm-contact-highlight__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================
CONTACT CTA
========================================= */

.rm-contact-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background: #08111f;
}

.rm-contact-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 160, 33, 0.1),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 80%,
      rgba(197, 160, 33, 0.08),
      transparent 22%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 100%);
}

.rm-contact-cta__overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 44%
  );
}

.rm-contact-cta__text {
  margin: 0 0 28px;
  max-width: 560px;
}

/* =========================================
LUXURY WPFORMS STYLE
========================================= */

.rm-contact-main .wpforms-container {
  margin: 0 !important;
}

.rm-contact-main .wpforms-field {
  padding: 0 !important;
  margin-bottom: 16px !important;
}

.rm-contact-main .wpforms-field-label {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
}

.rm-contact-main .wpforms-field input,
.rm-contact-main .wpforms-field textarea,
.rm-contact-main .wpforms-field select {
  width: 100% !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease !important;
}

.rm-contact-main .wpforms-field textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

.rm-contact-main .wpforms-field input::placeholder,
.rm-contact-main .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.46) !important;
}

.rm-contact-main .wpforms-field input:focus,
.rm-contact-main .wpforms-field textarea:focus,
.rm-contact-main .wpforms-field select:focus {
  border-color: rgba(197, 160, 33, 0.48) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 0 0 4px rgba(197, 160, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.rm-contact-main .wpforms-submit-container {
  padding-top: 8px !important;
}

.rm-contact-main button.wpforms-submit {
  min-height: 56px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #0b1f3a !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%) !important;
  box-shadow:
    0 18px 40px rgba(197, 160, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}

.rm-contact-main button.wpforms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 52px rgba(197, 160, 33, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

/* =========================================
HOVER
========================================= */

@media (hover: hover) {
  .rm-contact-main__image-wrap:hover,
  .rm-contact-cta__image-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
      0 40px 95px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .rm-contact-main__image-wrap:hover .rm-contact-main__image,
  .rm-contact-cta__image-wrap:hover .rm-contact-cta__image {
    transform: scale(1.08);
    filter: brightness(0.98) contrast(1.08) saturate(1.06);
  }

  .rm-contact-highlight:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 33, 0.26);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(197, 160, 33, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .rm-contact-highlight:hover .rm-contact-highlight__icon {
    transform: translateY(-4px) scale(1.06);
    color: #0b1f3a;
    background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
  }
}

/* =========================================
GLOBAL REVEAL CLASSES
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 1100px) {
  .rm-contact-main,
  .rm-contact-highlights,
  .rm-contact-cta {
    padding: 100px 20px;
  }

  .rm-contact-main__inner,
  .rm-contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-contact-highlights__grid {
    grid-template-columns: 1fr;
  }

  .rm-contact-main__image,
  .rm-contact-cta__image {
    height: 380px;
  }
}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {
  .rm-contact-hero {
    min-height: calc(100svh - 90px);
    padding: 40px 16px;
  }

  .rm-contact-hero__title,
  .rm-contact-main__title,
  .rm-contact-highlights__title,
  .rm-contact-cta__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rm-contact-hero__text,
  .rm-contact-main__text,
  .rm-contact-main__info-text,
  .rm-contact-highlights__text,
  .rm-contact-cta__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .rm-contact-hero__actions,
  .rm-contact-cta__actions {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .rm-contact-hero__actions .vc-btn,
  .rm-contact-cta__actions .vc-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .rm-contact-main,
  .rm-contact-highlights,
  .rm-contact-cta {
    padding: 84px 16px;
  }

  .rm-contact-main__form-wrap,
  .rm-contact-main__info-wrap {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .rm-contact-main__image,
  .rm-contact-cta__image {
    height: 320px;
  }

  .rm-contact-main__image-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
    border-radius: 18px;
  }

  .rm-contact-highlight {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .rm-contact-highlight__title {
    font-size: 21px;
  }

  .rm-contact-highlight__desc {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 480px) {
  .rm-contact-hero {
    padding: 36px 12px;
  }

  .rm-contact-main,
  .rm-contact-highlights,
  .rm-contact-cta {
    padding: 78px 12px;
  }

  .rm-contact-hero__eyebrow,
  .rm-contact-main__eyebrow,
  .rm-contact-highlights__eyebrow,
  .rm-contact-cta__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-contact-main__image,
  .rm-contact-cta__image {
    height: 280px;
  }
}

/* =========================================
CONTACT FORM - FORCE FULL WIDTH
========================================= */

.rm-contact-main .wpforms-container-full .wpforms-field-container {
  display: block !important;
}

.rm-contact-main .wpforms-container-full .wpforms-field {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.rm-contact-main .wpforms-container-full .wpforms-one-half,
.rm-contact-main .wpforms-container-full .wpforms-two-half,
.rm-contact-main .wpforms-container-full .wpforms-three-half,
.rm-contact-main .wpforms-container-full .wpforms-first,
.rm-contact-main .wpforms-container-full .wpforms-last {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* =========================================
CONTACT INFO - PHONE + EMAIL IN ONE ROW
========================================= */

.rm-contact-main__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.rm-contact-main__item:last-child {
  grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 767px) {
  .rm-contact-main__list {
    grid-template-columns: 1fr;
  }

  .rm-contact-main__item:last-child {
    grid-column: auto;
  }
}

/* =========================================
CONTACT MAP
========================================= */

.rm-contact-map {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #0a1728 0%, #08111f 100%);
}

.rm-contact-map__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 42%
  );
}

.rm-contact-map__heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.rm-contact-map__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-contact-map__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-contact-map__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.rm-contact-map__wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rm-contact-map__wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  filter: grayscale(0.1) contrast(1.05) brightness(0.92);
}

/* Mobile */
@media (max-width: 767px) {
  .rm-contact-map {
    padding: 84px 16px;
  }

  .rm-contact-map__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rm-contact-map__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .rm-contact-map__wrap iframe {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .rm-contact-map {
    padding: 78px 12px;
  }

  .rm-contact-map__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .rm-contact-map__wrap iframe {
    height: 300px;
  }
}

/* =========================================
REVIVAL MOVING - SHARED WPFORMS LUXURY STYLE
For Contact Page + Modal Window
========================================= */

/* Target the actual WPForms instance */
.rm-contact-main__form-box .wpforms-container,
.gama-modal__body .wpforms-container {
  margin: 0 !important;
}

/* Remove default inner spacing */
.rm-contact-main__form-box .wpforms-form,
.gama-modal__body .wpforms-form {
  margin: 0 !important;
}

/* Field container */
.rm-contact-main__form-box .wpforms-field-container,
.gama-modal__body .wpforms-field-container {
  display: block !important;
}

/* Force every visible field row to full width */
.rm-contact-main__form-box .wpforms-field,
.gama-modal__body .wpforms-field {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

/* Override WPForms medium width limits */
.rm-contact-main__form-box .wpforms-field-medium,
.gama-modal__body .wpforms-field-medium,
.rm-contact-main__form-box input.wpforms-field-medium,
.rm-contact-main__form-box textarea.wpforms-field-medium,
.gama-modal__body input.wpforms-field-medium,
.gama-modal__body textarea.wpforms-field-medium {
  width: 100% !important;
  max-width: 100% !important;
}

/* Kill half-width classes if WPForms adds them */
.rm-contact-main__form-box .wpforms-one-half,
.rm-contact-main__form-box .wpforms-two-half,
.rm-contact-main__form-box .wpforms-first,
.rm-contact-main__form-box .wpforms-last,
.gama-modal__body .wpforms-one-half,
.gama-modal__body .wpforms-two-half,
.gama-modal__body .wpforms-first,
.gama-modal__body .wpforms-last {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Labels */
.rm-contact-main__form-box .wpforms-field-label,
.gama-modal__body .wpforms-field-label {
  display: block !important;
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.rm-contact-main__form-box .wpforms-required-label,
.gama-modal__body .wpforms-required-label {
  color: #e7c767 !important;
}

/* Inputs / textarea / select */
.rm-contact-main__form-box .wpforms-field input,
.rm-contact-main__form-box .wpforms-field textarea,
.rm-contact-main__form-box .wpforms-field select,
.gama-modal__body .wpforms-field input,
.gama-modal__body .wpforms-field textarea,
.gama-modal__body .wpforms-field select {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 56px !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease !important;
}

/* Textarea */
.rm-contact-main__form-box .wpforms-field textarea,
.gama-modal__body .wpforms-field textarea {
  min-height: 150px !important;
  padding: 16px 18px !important;
  resize: vertical !important;
}

/* Placeholder */
.rm-contact-main__form-box .wpforms-field input::placeholder,
.rm-contact-main__form-box .wpforms-field textarea::placeholder,
.gama-modal__body .wpforms-field input::placeholder,
.gama-modal__body .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42) !important;
}

/* Focus */
.rm-contact-main__form-box .wpforms-field input:focus,
.rm-contact-main__form-box .wpforms-field textarea:focus,
.rm-contact-main__form-box .wpforms-field select:focus,
.gama-modal__body .wpforms-field input:focus,
.gama-modal__body .wpforms-field textarea:focus,
.gama-modal__body .wpforms-field select:focus {
  border-color: rgba(197, 160, 33, 0.46) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 0 0 4px rgba(197, 160, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transform: translateY(-1px);
  outline: none !important;
}

/* Submit area */
.rm-contact-main__form-box .wpforms-submit-container,
.gama-modal__body .wpforms-submit-container {
  padding-top: 10px !important;
  margin: 0 !important;
}

/* Submit button */
.rm-contact-main__form-box button.wpforms-submit,
.gama-modal__body button.wpforms-submit {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  color: #0b1f3a !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%) !important;
  box-shadow:
    0 18px 40px rgba(197, 160, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}

/* Optional: modal button full width */
.gama-modal__body button.wpforms-submit {
  width: 100% !important;
}

/* Hover */
.rm-contact-main__form-box button.wpforms-submit:hover,
.gama-modal__body button.wpforms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 52px rgba(197, 160, 33, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

/* Spinner alignment */
.rm-contact-main__form-box .wpforms-submit-spinner,
.gama-modal__body .wpforms-submit-spinner {
  margin-left: 10px !important;
}

/* Hide honeypot / hidden fake fields properly */
.rm-contact-main__form-box .wpforms-field[style*="position: absolute"],
.gama-modal__body .wpforms-field[style*="position: absolute"],
.rm-contact-main__form-box .wpforms-field[aria-hidden="true"],
.gama-modal__body .wpforms-field[aria-hidden="true"] {
  display: none !important;
}

/* =========================================
REVIVAL MOVING - LUXURY MODAL
========================================= */

.gama-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.gama-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gama-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(9, 20, 38, 0.2) 0%,
      rgba(4, 10, 20, 0.55) 100%
    ),
    rgba(3, 8, 17, 0.72);
  backdrop-filter: blur(12px);
}

.gama-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  max-height: min(90vh, 920px);
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 56, 0.96) 0%,
    rgba(11, 20, 37, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(197, 160, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s ease;
}

.gama-modal.is-open .gama-modal__dialog {
  transform: translateY(0) scale(1);
}

.gama-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(197, 160, 33, 0.1),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 42%
    );
}

.gama-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.gama-modal__close:hover {
  transform: translateY(-2px) rotate(90deg);
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
  border-color: rgba(197, 160, 33, 0.35);
  color: #0b1f3a;
}

.gama-modal__body {
  position: relative;
  z-index: 2;
  padding: 34px 34px 30px;
  overflow-y: auto;
  max-height: min(90vh, 920px);
}

.gama-modal__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gama-modal__subtitle {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 767px) {
  .gama-modal {
    padding: 14px;
  }

  .gama-modal__dialog {
    width: 100%;
    border-radius: 24px;
  }

  .gama-modal__body {
    padding: 24px 18px 20px;
  }

  .gama-modal__title {
    font-size: clamp(28px, 9vw, 34px);
  }

  .gama-modal__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .gama-modal__close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* =========================================
REVIVAL MOVING FOOTER - MOBILE FIX
Quick Links + Services in one row
========================================= */

@media (max-width: 767px) {
  .rm-footer__top {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 18px !important;
    align-items: start !important;
  }

  /* 1st block: Brand */
  .rm-footer__top > .rm-footer__col:nth-child(1) {
    grid-column: 1 / -1 !important;
  }

  /* 2nd block: Quick Links */
  .rm-footer__top > .rm-footer__col:nth-child(2) {
    grid-column: 1 !important;
  }

  /* 3rd block: Services */
  .rm-footer__top > .rm-footer__col:nth-child(3) {
    grid-column: 2 !important;
  }

  /* 4th block: Contact */
  .rm-footer__top > .rm-footer__col:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  .rm-footer__top > .rm-footer__col {
    min-width: 0 !important;
  }

  .rm-footer__title {
    margin-bottom: 14px !important;
  }

  .rm-footer__links {
    gap: 10px !important;
  }

  .rm-footer__links a {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .rm-footer__contact-list {
    gap: 16px !important;
  }

  .rm-footer__actions {
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .rm-footer__actions .rm-btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    justify-content: center !important;
  }
}

/* =========================================
REVIVAL MOVING - QUOTE HERO
========================================= */

.rm-quote-hero {
  position: relative;
  min-height: calc(100svh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 20px;
  background: #081120;
}

.rm-quote-hero__bg {
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/bg-hero-calc.webp") center center / cover
    no-repeat;
  transform: scale(1.04);
}

.rm-quote-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 12, 24, 0.92) 0%,
      rgba(5, 12, 24, 0.82) 42%,
      rgba(5, 12, 24, 0.58) 100%
    ),
    linear-gradient(180deg, rgba(8, 17, 32, 0.2) 0%, rgba(8, 17, 32, 0.72) 100%);
}

.rm-quote-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
}

.rm-quote-hero__eyebrow,
.rm-calc-card__eyebrow,
.rm-result-card__eyebrow,
.rm-calc-request__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: max-content;
  min-height: 38px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(197, 160, 33, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rm-quote-hero__title,
.rm-calc-card__title,
.rm-calc-request__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-quote-hero__text,
.rm-calc-card__text,
.rm-result-card__text,
.rm-calc-request__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
}

.rm-quote-hero__text {
  max-width: 640px;
  margin: 0 0 28px;
}

.rm-quote-hero__actions,
.rm-calc-form__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
CALCULATOR PAGE
========================================= */

.rm-calc-page {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #08111f 0%, #0a1728 100%);
}

.rm-calc-page__bg,
.rm-calc-request__bg,
.rm-calc-trust__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rm-calc-page__bg {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 40%
  );
}

.rm-calc-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: start;
}

.rm-calc-card,
.rm-result-card,
.rm-calc-request__form-wrap {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.rm-calc-card__title {
  font-size: clamp(30px, 3.4vw, 44px);
}

.rm-calc-card__text {
  margin: 0 0 24px;
}

/* =========================================
FORM
========================================= */

.rm-calc-form {
  display: grid;
  gap: 18px;
}

.rm-calc-form__grid {
  display: grid;
  gap: 16px;
}

.rm-calc-form__grid--2 {
  grid-template-columns: 1fr 1fr;
}

.rm-calc-field label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.rm-calc-field input,
.rm-calc-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.rm-calc-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.rm-calc-field input:focus,
.rm-calc-field select:focus {
  border-color: rgba(197, 160, 33, 0.46);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 4px rgba(197, 160, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  outline: none;
}

.rm-calc-field__hint {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================
OPTIONS
========================================= */

.rm-calc-options {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rm-calc-options__title {
  display: block;
  color: #e7c767;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rm-calc-options__grid {
  display: grid;
  gap: 12px;
}

.rm-calc-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.rm-calc-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rm-calc-option__box {
  display: block;
  padding: 16px 18px 16px 52px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rm-calc-option__box::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.rm-calc-option__box strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.rm-calc-option__box small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.rm-calc-option input:checked + .rm-calc-option__box {
  border-color: rgba(197, 160, 33, 0.34);
  background: rgba(197, 160, 33, 0.08);
  box-shadow: 0 12px 28px rgba(197, 160, 33, 0.08);
}

.rm-calc-option input:checked + .rm-calc-option__box::before {
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%);
  border-color: rgba(197, 160, 33, 0.42);
  box-shadow: inset 0 0 0 4px #0b1f3a;
}

/* =========================================
RESULT CARD
========================================= */

.rm-result-card__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rm-result-card__text {
  margin: 0 0 22px;
}

.rm-result-card__price {
  margin-bottom: 24px;
  color: #f0d98a;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 30px rgba(197, 160, 33, 0.18);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.rm-result-card__price.is-updated {
  transform: scale(1.04);
  opacity: 0.96;
}

.rm-result-card__rows {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.rm-result-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rm-result-row span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.rm-result-row strong {
  color: #ffffff;
  font-size: 15px;
  text-align: right;
}

.rm-result-card__note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================
REQUEST FORM BLOCK
========================================= */

.rm-calc-request {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #0a1728 0%, #0b1a2d 100%);
}

.rm-calc-request__bg {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0) 42%
  );
}

.rm-calc-request__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 1100px) {
  .rm-calc-request__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.rm-calc-request__text {
  margin: 0;
}

select:focus,
textarea:focus,
input:is(
    [type="url"],
    [type="tel"],
    [type="text"],
    [type="time"],
    [type="date"],
    [type="datetime"],
    [type="datetime-local"],
    [type="email"],
    [type="number"],
    [type="search"],
    [type="password"]
  ):focus,
.ct-pseudo-input:focus,
fieldset .wc-stripe-elements-field:focus,
.ff-inherit-theme-style .ff-el-form-control:not([size]):not([multiple]):focus {
  color: #efd98a !important;
}

/* =========================================
TRUST STRIP
========================================= */

.rm-calc-trust {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(180deg, #0b1a2d 0%, #08111f 100%);
}

.rm-calc-trust__bg {
  background:
    radial-gradient(
      circle at 14% 82%,
      rgba(197, 160, 33, 0.08),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0) 42%
    );
}

.rm-calc-trust__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.rm-calc-trust__item {
  padding: 28px 24px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.rm-calc-trust__item strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
}

.rm-calc-trust__item span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================
WPFORMS STYLE FOR REQUEST BLOCK
========================================= */

.rm-calc-request .wpforms-container {
  margin: 0 !important;
}

.rm-calc-request .wpforms-form {
  margin: 0 !important;
}

.rm-calc-request .wpforms-field-container {
  display: block !important;
}

.rm-calc-request .wpforms-field {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  clear: both !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

.rm-calc-request .wpforms-field-medium,
.rm-calc-request input.wpforms-field-medium,
.rm-calc-request textarea.wpforms-field-medium {
  width: 100% !important;
  max-width: 100% !important;
}

.rm-calc-request .wpforms-field-label {
  display: block !important;
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.rm-calc-request .wpforms-required-label {
  color: #e7c767 !important;
}

.rm-calc-request .wpforms-field input,
.rm-calc-request .wpforms-field textarea,
.rm-calc-request .wpforms-field select {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 56px !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease !important;
}

.rm-calc-request .wpforms-field textarea {
  min-height: 150px !important;
  padding: 16px 18px !important;
  resize: vertical !important;
}

.rm-calc-request .wpforms-field input::placeholder,
.rm-calc-request .wpforms-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42) !important;
}

.rm-calc-request .wpforms-field input:focus,
.rm-calc-request .wpforms-field textarea:focus,
.rm-calc-request .wpforms-field select:focus {
  border-color: rgba(197, 160, 33, 0.46) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 4px rgba(197, 160, 33, 0.1) !important;
  outline: none !important;
}

.rm-calc-request .wpforms-submit-container {
  padding-top: 10px !important;
  margin: 0 !important;
}

.rm-calc-request button.wpforms-submit {
  min-height: 56px !important;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #0b1f3a !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #c5a021 0%, #f0d98a 100%) !important;
  box-shadow:
    0 18px 40px rgba(197, 160, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease !important;
}

.rm-calc-request button.wpforms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 24px 52px rgba(197, 160, 33, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

/* =========================================
GLOBAL REVEAL CLASSES
========================================= */

.sr-item,
.sr-left {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: transform, opacity;
}

.sr-item {
  transform: translateY(70px);
}

.sr-left {
  transform: translateX(-90px);
}

.sr-item.is-visible,
.sr-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .rm-calc-page,
  .rm-calc-request {
    padding: 100px 20px;
  }

  .rm-calc-shell,
  .rm-calc-request__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rm-calc-trust__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rm-quote-hero {
    min-height: calc(100svh - 90px);
    padding: 40px 16px;
  }

  .rm-quote-hero__title,
  .rm-calc-card__title,
  .rm-calc-request__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rm-quote-hero__text,
  .rm-calc-card__text,
  .rm-result-card__text,
  .rm-calc-request__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .rm-quote-hero__actions,
  .rm-calc-form__actions {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .rm-quote-hero__actions .rm-btn,
  .rm-calc-form__actions .rm-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .rm-calc-page,
  .rm-calc-request,
  .rm-calc-trust {
    padding: 84px 16px;
  }

  .rm-calc-card,
  .rm-result-card,
  .rm-calc-request__form-wrap {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .rm-calc-form__grid--2 {
    grid-template-columns: 1fr;
  }

  .rm-result-card__price {
    font-size: 46px;
  }

  .rm-result-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .rm-result-row strong {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .rm-quote-hero {
    padding: 36px 12px;
  }

  .rm-calc-page,
  .rm-calc-request,
  .rm-calc-trust {
    padding: 78px 12px;
  }

  .rm-quote-hero__eyebrow,
  .rm-calc-card__eyebrow,
  .rm-result-card__eyebrow,
  .rm-calc-request__eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

/* =========================================
CALCULATOR REQUEST BLOCK WITH IMAGE
========================================= */

.rm-calc-request__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.rm-calc-request__left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rm-calc-request__image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.rm-calc-request__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 30%
    ),
    linear-gradient(
      180deg,
      rgba(8, 17, 32, 0.04) 0%,
      rgba(8, 17, 32, 0.24) 100%
    );
}

.rm-calc-request__image {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.06) saturate(1.04);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.5s ease;
}

@media (hover: hover) {
  .rm-calc-request__image-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
      0 40px 95px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .rm-calc-request__image-wrap:hover .rm-calc-request__image {
    transform: scale(1.08);
    filter: brightness(0.98) contrast(1.08) saturate(1.06);
  }
}

/* Hide calculation field */
.hidden-calculation {
  display: none !important;
}

/* =========================================
   Revival Moving Footer Text Logo
========================================= */

.rm-footer-logo {
  display: flex;
  align-items: center;
}

.rm-footer-logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  line-height: 0;
}

.rm-footer-logo__img {
  display: block;
  width: 70%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease;
}

.rm-footer-logo__link:hover .rm-footer-logo__img {
  transform: translateY(-2px) scale(1.02);
  opacity: 0.96;
}

/* Tablet */
@media (max-width: 1024px) {
  .rm-footer-logo__img {
    max-width: 280px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .rm-footer-logo {
    justify-content: center;
  }

  .rm-footer-logo__img {
    max-width: 220px;
  }
}
