/**
 * RSM Public CSS
 * Premium clean UI, mobile-first, matching Rocket Science Moving design
 */

:root {
    --rsm-primary-color: #0056b3;
    --rsm-primary-hover: #004494;
    --rsm-text-color: #333333;
    --rsm-text-muted: #666666;
    --rsm-bg-color: #f8f9fa;
    --rsm-card-bg: #ffffff;
    --rsm-border-color: #e0e0e0;
    --rsm-error-color: #dc3545;
    --rsm-success-color: #28a745;
    --rsm-font-family: inherit;
    --rsm-border-radius: 12px;
    --rsm-transition: all 0.3s ease;
}

.rsm-wrapper-new {
    font-family: var(--rsm-font-family);
    color: var(--rsm-text-color);
    box-sizing: border-box;
    width: 100%;
}

.rsm-wrapper-new * {
    box-sizing: border-box;
}

.rsm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.rsm-hero-section {
    background: url('/wp-content/uploads/2026/05/custom_bg_copy.jpg') no-repeat center bottom;
    background-size: cover;
    background-color: #001026;
    color: #fff;
    padding: 120px 0 160px 0; 
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .rsm-custom-rocket-1, .rsm-custom-rocket-2 {
        opacity: 0.2;
    }
    .rsm-custom-boxes-1, .rsm-custom-boxes-2 {
        display: none !important;
    }
    .rsm-screen2-images-wrapper {
        height: 0 !important;
        margin-top: 0 !important;
    }
}

/* Add some stars/particles effect via CSS (Optional, but kept to enhance the image) */
.rsm-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
      radial-gradient(1px 1px at 20px 30px, #eee, rgba(0,0,0,0)),
      radial-gradient(1px 1px at 40px 70px, #fff, rgba(0,0,0,0)),
      radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0));
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.rsm-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .rsm-hero-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 60px;
    }
}

/* Left Content */
.rsm-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.rsm-star { color: #38bdf8; margin-right: 5px; }

.rsm-hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
}

.rsm-hero-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 500px;
}

.rsm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rsm-feature {
    text-align: left;
}

.rsm-feature-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #38bdf8;
}

.rsm-feature h4 {
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.rsm-feature p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .rsm-hero-title { font-size: 32px; }
    .rsm-features { grid-template-columns: 1fr; gap: 20px; }
    .rsm-feature { display: flex; align-items: center; text-align: left; }
    .rsm-feature-icon { margin-bottom: 0; margin-right: 15px; flex-shrink: 0; }
}

/* Right Form Area */
.rsm-hero-form {
    position: relative;
}

.rsm-screen {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(20px);
}

.rsm-screen.rsm-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.rsm-card {
    background: var(--rsm-card-bg);
    border-radius: var(--rsm-border-radius);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--rsm-text-color);
    text-align: center;
}

.rsm-card-icon {
    width: 60px; height: 60px;
    background: #0a1f44;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.rsm-card .rsm-title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 10px;
    color: #0a1f44;
}

.rsm-card .rsm-subtitle {
    font-size: 15px;
    color: var(--rsm-text-muted);
    margin-bottom: 30px;
}

.rsm-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.rsm-promo-group {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: var(--rsm-border-radius);
}

.rsm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
}

.rsm-input-wrapper {
    position: relative;
}

.rsm-input-icon {
    position: absolute;
    right: 15px; top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.rsm-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--rsm-border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--rsm-transition);
    background: #fff;
    color: #333;
}

.rsm-input:focus {
    outline: none;
    border-color: var(--rsm-primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.rsm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--rsm-primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--rsm-transition);
    box-shadow: 0 4px 10px rgba(0,86,179,0.2);
}

.rsm-btn:hover {
    background-color: var(--rsm-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,86,179,0.3);
}

.rsm-secure-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 13px;
    color: #0056b3;
    font-weight: 500;
}

/* Screen 2 Adjustments */
.rsm-card-large {
    text-align: left;
    padding: 30px;
}

.rsm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px 20px;
}

@media (min-width: 640px) {
    .rsm-grid { grid-template-columns: 1fr 1fr; }
    .rsm-col-full { grid-column: 1 / -1; }
}

/* Steps Section */
.rsm-steps-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.rsm-steps-kicker {
    color: #38bdf8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rsm-steps-title {
    color: #0a1f44;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.rsm-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.rsm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}

.rsm-step-icon {
    width: 80px; height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1f44;
    margin-bottom: 20px;
    position: relative;
}

.rsm-step-number {
    position: absolute;
    top: -5px; right: -5px;
    width: 24px; height: 24px;
    background: #0056b3;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsm-step h4 {
    color: #0a1f44;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rsm-step p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.rsm-step-arrow {
    display: none;
    color: #cbd5e1;
}

@media (min-width: 992px) {
    .rsm-steps-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
    }
    .rsm-step-arrow {
        display: block;
        margin-top: 30px;
    }
}

/* --- New Form Styles from untitled folder 3 --- */
.rsm-form-card {
  background: rgba(255,255,255,.98);
  color: #09243d;
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
  border: 1px solid rgba(255, 255, 255, .80);
  backdrop-filter: blur(8px);
}

.rsm-form-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.rsm-form-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #082b46;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 12px 24px rgba(8,43,70,.18);
}

.rsm-form-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rsm-form-head h2 {
  margin: 0;
  font-size: clamp(25px, 2.3vw, 32px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #09243d;
}

.rsm-form-head p {
  margin: 7px 0 0;
  color: #075fc4;
  font-weight: 800;
  font-size: 15px;
}

.rsm-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.rsm-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

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

.rsm-field label {
  font-size: 14px;
  font-weight: 800;
  color: #1f2937;
}

.rsm-field input,
.rsm-field textarea {
  width: 100%;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 15px;
  outline: none;
  background: #fff;
  transition: .2s ease;
  font-family: inherit;
  color: #111827;
}

.rsm-field.with-icon input { padding-left: 44px; }

.field-ico {
  position: absolute;
  left: 16px;
  top: 42px;
  color: #075fc4;
  font-weight: 900;
  z-index: 1;
}

.rsm-field textarea {
  min-height: 96px;
  resize: vertical;
}

.rsm-field input:focus,
.rsm-field textarea:focus {
  border-color: #66d4d0;
  box-shadow: 0 0 0 4px rgba(102, 212, 208, .18);
}

.rsm-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
  border: none;
  border-radius: 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #0868d6, #004fb0);
  color: white;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  transition: .2s ease;
  box-shadow: 0 14px 32px rgba(7, 95, 196, .24);
}

.rsm-submit span { float: right; }

.rsm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(7, 95, 196, .34);
}

.rsm-secure {
  margin-top: 18px;
  padding: 14px;
  text-align: center;
  background: #f1f7fc;
  border-radius: 12px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .rsm-form-card { padding: 30px 22px; border-radius: 24px; }
  .rsm-form-grid { grid-template-columns: 1fr; }
}
