/* --- Base Reset --- */
.rocket-contact-container,
.rocket-split,
.rocket-side,
.rocket-form-area {
  box-sizing: border-box;
}

.rocket-contact-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 15px;
  font-family: inherit;
}

/* --- Tab Navigation (Strict Black) --- */
.rocket-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .rocket-tabs {
    flex-direction: row;
    justify-content: space-between;
  }
}

.rocket-tab {
  flex: 1; 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1A1A1A;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.rocket-tab svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.rocket-tab.active {
  background-color: #D4AF37;
  color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* --- Layout Mechanics --- */
.rocket-pane {
  display: none;
  animation: fadeIn 0.3s ease-in-out forwards;
}
.rocket-pane.active {
  display: block;
}
.rocket-split {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid #eaeaea;
  width: 100%;
}

/* --- Left Panel (Desktop Only) --- */
.rocket-side {
  background-color: #F8F9FA; 
  color: #333333; 
  padding: 3rem 2.5rem;
}
.rocket-side h3 {
  color: #D4AF37;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.rocket-side p {
  font-size: 1.05rem;
  line-height: 1.6;
}
.rocket-side-icon {
  width: 48px;
  height: 48px;
  fill: #D4AF37;
  margin-bottom: 1.5rem;
}
.rocket-highlight {
  color: #D4AF37 !important;
  font-weight: bold;
  font-size: 0.95rem;
}

/* --- Desktop Values Cards Styling --- */
.rocket-values-container {
  position: relative;
  margin-top: 2rem;
}
.rocket-card-group {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeIn 0.6s ease-in-out forwards;
}
.rocket-card-group.active {
  display: flex;
}
.rocket-value-card {
  background-color: #FFFFFF; 
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  border-top: 4px solid transparent; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.rocket-value-card:hover {
  border-top: 4px solid #D4AF37; 
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.rocket-value-card h4 {
  color: #002244;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.rocket-value-card hr {
  border-top: 1px solid #e0e0e0;
  margin: 0.75rem 0;
  opacity: 1;
}
.rocket-value-card p {
  color: #555555;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.rvc-icon {
  width: 32px;
  height: 32px;
  fill: #D4AF37;
  margin-bottom: 0.25rem;
}

/* --- New Image Contact Cards Styling --- */
.rocket-media-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 140px; 
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: 100%;
}
.rocket-media-card:hover {
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.rocket-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.media-icon-circle {
  width: 36px;
  height: 36px;
  background-color: #1A1A1A; 
  border: 2px solid #D4AF37; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.media-icon-circle svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF; 
}
.media-contact-text {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  word-break: break-word; 
}

/* --- Form Area & Background Iconography --- */
.rocket-form-area {
  position: relative;
  z-index: 1;
  background: #ffffff;
}
.rocket-bg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 350px;
  height: auto;
  fill: #D4AF37;
  opacity: 0.04;
  z-index: -1; 
  pointer-events: none;
}

/* =========================================
   MOBILE ONLY: INLINE EXPANSION
   (Left completely untouched per instructions)
   ========================================= */
@media (max-width: 991px) {
  
  .rocket-mobile-intro {
    position: relative;
    border: 4px dashed #D4AF37;
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 1;
  }
  
  .rocket-intro-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    fill: #D4AF37;
    opacity: 0.08;
    z-index: -1;
  }
  
  .rocket-intro-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
  }

  .rocket-side {
    display: none !important;
  }

  .rocket-form-area {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    padding: 1rem 0 3rem 0 !important;
    overflow: visible !important;
  }

  .rocket-split {
    background: transparent;
    box-shadow: none;
    border: none;
  }
}

/* Desktop Only Adjustments */
@media (min-width: 992px) {
  .rocket-split {
    flex-direction: row;
  }
  .rocket-side {
    flex: 0 0 32%;
    border-right: 5px solid #D4AF37;
  }
  .rocket-form-area {
    flex: 1; 
    padding: 3rem 2.5rem;
    overflow: hidden;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}