/* FIX FOR JUMPING CONTENT */
.request-layout {
  display: grid;
  grid-template-columns: 280px 1fr; /* Using Grid instead of Flex for stability */
  gap: 30px;
  margin-top: 20px;
}

.tab-pane {
  display: none;
  opacity: 0;
}

.tab-pane.show {
  display: block;
  animation: fadeInOnly 0.3s ease forwards; /* Removed the translateY to stop jumping */
}

@keyframes fadeInOnly {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-subtitle {
  color: var(--gray);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 10000px;
  margin: 0 auto;
}

/* WARNING NOTICE */
.warning-notice {
  margin-top: 150px;
  background: rgba(109, 108, 108, 0.1);
  border: 1px solid #8f8e8e;
  border-left: 5px solid #b4b4b4;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.warning-icon { font-size: 30px; }
.warning-text { color: #d3cece; font-size: 14px; line-height: 1.5; }

/* CONTACT GRID */
.contact-area {
  margin-top: 50px;
  text-align: center;
  padding: 40px;
  border-top: 2px solid var(--gold);
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-item {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
  width: 100px;
}

.social-item img {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 5px rgba(201,168,106,0.2));
}


.social-item:hover {
  transform: translateY(-5px);
  color: var(--gold);
}

/* UI ELEMENTS */
.tab-link {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  padding: 18px;
  text-align: left;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
  font-size: 16px;
}

.tab-link.active {
  background: var(--gold);
  color: #000;
  font-weight: bold;
}

.gold-gradient-text {
  background: linear-gradient(to right, #c9a86a, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .request-layout { grid-template-columns: 1fr; }
  .tabs-nav { display: flex; overflow-x: auto; gap: 10px; }
  .tab-link { white-space: nowrap; width: auto; }
}