/* 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: 900px;
  margin: 0 auto;
}

/* WARNING NOTICE */
.warning-notice {
  margin-top: 150px;
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-left: 5px solid rgba(212, 175, 55, 0.5);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-radius: 16px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04), inset 0 -1px 0 rgba(212,175,55,0.04);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.warning-notice::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: -1;
}

.warning-icon { font-size: 30px; }
.warning-text { color: #d3cece; font-size: 14px; line-height: 1.5; }

/* CONTACT GRID */
.contact-area {
  margin-top: 0;
  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));
  transition: transform 0.3s, filter 0.3s;
}
.social-item:hover img {
  filter: drop-shadow(0 4px 12px rgba(201,168,106,0.3));
}


.social-item:hover {
  transform: translateY(-5px);
  color: var(--gold);
}

/* UI ELEMENTS */
.tab-link {
  background: rgba(15, 15, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  color: #aaa;
  padding: 18px;
  text-align: left;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
  font-size: 16px;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.03);
}

.tab-link.active {
  background: linear-gradient(135deg, rgba(212,175,55,0.9), rgba(166,125,27,0.9));
  color: #000;
  font-weight: bold;
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}

.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; }
}