.profiles-section-fullwidth {
  width: 100%;
  background: #050505 url('../../assets/images/sttw1_min.png') no-repeat center center / cover;
  padding: 70px 0 90px;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .profiles-section-fullwidth {
    padding: 50px 0 65px;
  }
}

.profiles-inner-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .profiles-inner-container {
    padding: 0 16px;
  }
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-content.active {
  display: block;
}

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

.profile-card {
  background: rgba(18, 18, 21, 0.95);
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  text-align: left;
}

@media (max-width: 768px) {
  .profile-card {
    padding: 24px 18px;
  }
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ffffff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 850px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.avatar-column {
  text-align: center;
}

.avatar-frame {
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  border-radius: 28px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-glow);
  position: relative;
}

@media (max-width: 480px) {
  .avatar-frame {
    width: 200px;
    height: 200px;
    border-radius: 22px;
    margin-bottom: 18px;
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  background-color: #18181b;
  display: block;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  flex-shrink: 0;
}

.info-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.person-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .person-name {
    font-size: 2rem;
  }
}

.person-role {
  color: #a1a1aa;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.person-bio {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 26px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .person-bio {
    font-size: 1rem;
    line-height: 1.65;
  }
}

.person-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  width: 100%;
}

.tag-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-glow);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

@media (max-width: 768px) {
  .tag-item {
    font-size: 0.92rem;
    padding: 10px 14px;
  }
}

.tag-item svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  flex-shrink: 0;
}

.rate-card {
  background: #18181b;
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-top: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .rate-card {
    padding: 18px 16px;
  }
}

.rate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rate-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  font-weight: 800;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

.rate-amount-container {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}

.rate-usd {
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 800;
  color: #ffffff;
}

@media (max-width: 768px) {
  .rate-usd {
    font-size: 2.2rem;
  }
}

.rate-converted {
  font-size: 1.2rem;
  color: #a1a1aa;
  font-weight: 600;
}

.action-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.btn-talk-now {
  background: #ffffff;
  color: #09090b;
  padding: 18px 28px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .btn-talk-now {
    padding: 16px 20px;
    font-size: 1.1rem;
  }
}

.btn-schedule-later {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-schedule-later:hover {
  color: #a1a1aa;
}
