/* =========================
GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

h2 {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

p {
  line-height: 1.8;
  color: #b8b8b8;
}

/* =========================
HEADER
========================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}

.header.scrolled {
  position: fixed;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 22px;
  letter-spacing: 4px;
  color: #d4af37;
  font-weight: 600;
}

.logo span {
  color: white;
  margin: 0 10px;
}

nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  letter-spacing: 1px;
}

nav a:hover {
  color: #d4af37;
}

/* =========================
LANGUAGE SELECTOR - Luxury Private Club
========================= */
.language-box {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 78px;
  height: 38px;
  padding: 0 14px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212, 175, 55, 0.8);
  color: #d4af37;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.language-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  box-shadow:
    0 0 18px rgba(212, 175, 55, 0.3),
    0 0 40px rgba(212, 175, 55, 0.1),
    inset 0 0 12px rgba(212, 175, 55, 0.05);
}

.language-btn .lang-globe {
  display: flex;
  align-items: center;
  opacity: 0.85;
}

.language-btn .lang-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.language-btn .lang-arrow {
  display: flex;
  align-items: center;
  margin-left: -3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.7;
}

.language-box.open .lang-arrow {
  transform: rotate(180deg);
}

/* Language Dropdown Menu */
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 200px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 12px;
  overflow: hidden;
  z-index: 200;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(212, 175, 55, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menu Header */
.language-menu .lang-menu-header {
  padding: 14px 20px 10px;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(212, 175, 55, 0.6);
  font-weight: 500;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

/* Menu Items */
.language-menu .lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  padding: 0 18px;
  color: #dddddd;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.language-menu .lang-option:last-child {
  border-bottom: none;
}

.language-menu .lang-option .lang-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.language-menu .lang-option.active .lang-dot {
  background: #d4af37;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.7);
}

.language-menu .lang-option .lang-code {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(212, 175, 55, 0.7);
  width: 22px;
  flex-shrink: 0;
  transition: color 0.25s ease;
}

.language-menu .lang-option .lang-name {
  flex: 1;
  font-size: 13px;
  color: #cccccc;
  transition: color 0.25s ease;
}

.language-menu .lang-option:hover {
  background: #d4af37;
}

.language-menu .lang-option:hover .lang-dot {
  background: #000;
  box-shadow: none;
}

.language-menu .lang-option:hover .lang-code {
  color: rgba(0, 0, 0, 0.6);
}

.language-menu .lang-option:hover .lang-name {
  color: #000000;
}

.language-menu .lang-option.active .lang-name {
  color: #ffffff;
}

/* =========================
HERO
========================= */
.hero {
  height: 100vh;
  background: url("../assets/images/hero-private.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.9)
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.small-title {
  color: #d4af37;
  letter-spacing: 7px;
  font-size: 13px;
  font-weight: 500;
}

.hero h1 {
  font-size: 75px;
  font-weight: 300;
  line-height: 1.2;
  margin: 35px 0;
}

.hero-content p {
  font-size: 20px;
}

.hero-buttons {
  margin-top: 45px;
}

.hero-buttons button {
  padding: 18px 45px;
  background: #d4af37;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-buttons button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

.border-btn {
  margin-left: 20px;
  background: transparent !important;
  border: 1px solid #d4af37 !important;
  color: white !important;
}

.border-btn:hover {
  background: rgba(212, 175, 55, 0.15) !important;
}

.deep {
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #999;
}

/* =========================
SERVICES
========================= */
.services {
  padding: 120px 8%;
}

.section-desc {
  text-align: center;
  margin-top: 20px;
}

.service-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: #d4af37;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.service-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 25px;
  font-weight: 400;
  padding: 25px 25px 10px;
}

.service-card p {
  padding: 0 25px 30px;
  font-size: 14px;
}

/* =========================
EXPERIENCES
========================= */
.experiences {
  padding: 120px 8%;
  background: #0b0b0b;
}

.experience-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-item {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solid #222;
}

.experience-item:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}

.experience-item img {
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s;
}

.experience-item:hover img {
  transform: scale(1.05);
}

.experience-item div {
  padding: 30px;
}

.experience-item h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 15px;
}

/* =========================
PROCESS
========================= */
.process {
  padding: 120px 8%;
}

.process-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-grid div {
  background: #111;
  border: 1px solid #333;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.5s;
}

.process-grid div:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.process-grid span {
  color: #d4af37;
  font-size: 35px;
  font-weight: 600;
}

.process-grid h3 {
  margin: 20px 0;
  font-weight: 400;
}

/* =========================
MEMBERSHIP
========================= */
.membership {
  padding: 120px 8%;
  background: #0b0b0b;
}

.membership-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.membership-grid div {
  padding: 50px;
  background: #111;
  border: 1px solid #333;
  text-align: center;
  border-radius: 15px;
  transition: all 0.5s;
}

.membership-grid div:hover {
  border-color: #d4af37;
}

.membership-grid h3 {
  font-size: 32px;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 25px;
}

.membership-grid p {
  line-height: 2.2;
}

.membership .premium {
  border-color: #d4af37;
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

/* =========================
DEEP LABS
========================= */
.deep-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 10%;
}

.deep-section img {
  width: 45%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.deep-section h2 {
  text-align: left;
  margin-bottom: 25px;
}

/* =========================
CONTACT
========================= */
.contact {
  padding: 120px 10%;
  text-align: center;
  background: linear-gradient(135deg, #111, #050505);
}

.contact p {
  margin: 25px;
  font-size: 18px;
}

.contact button {
  background: #d4af37;
  border: none;
  padding: 18px 60px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}

.contact button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);
}

/* =========================
FOOTER
========================= */
footer {
  padding: 50px;
  text-align: center;
  border-top: 1px solid #222;
  color: #777;
}

footer div {
  color: #d4af37;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-size: 16px;
}

/* =========================
SCROLL ANIMATION
========================= */
.service-card,
.experience-item,
.membership-grid div,
.process-grid div {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }

  nav a {
    display: none;
  }

  .language-btn {
    width: 68px;
    height: 34px;
    font-size: 11px;
    gap: 5px;
    padding: 0 10px;
  }

  .language-btn .lang-globe svg {
    width: 14px;
    height: 14px;
  }

  .language-menu {
    right: -5px;
    width: 190px;
  }

  .language-menu .lang-option {
    height: 42px;
    padding: 0 14px;
  }

  .language-menu .lang-menu-header {
    padding: 12px 14px 8px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }

  .service-grid,
  .experience-grid,
  .membership-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .membership .premium {
    transform: none;
  }

  .deep-section {
    flex-direction: column;
  }

  .deep-section img {
    width: 100%;
  }

  .hero-buttons button {
    padding: 15px 30px;
    font-size: 14px;
  }

  .border-btn {
    margin-left: 0;
    margin-top: 15px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* =========================
MODAL OVERLAY
========================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-box {
  background: #111;
  border: 1px solid #d4af37;
  border-radius: 20px;
  padding: 50px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #999;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #d4af37;
}

.modal-title {
  font-size: 32px;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.modal-subtitle {
  color: #999;
  font-size: 14px;
  margin-bottom: 35px;
}

/* =========================
MODAL FORM
========================= */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-submit {
  background: #d4af37;
  border: none;
  padding: 16px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s;
  color: #000;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  margin-top: 10px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* =========================
MODAL LOADING
========================= */
.modal-loading {
  display: none;
  text-align: center;
  padding: 50px 0;
}

.modal-loading.active {
  display: block;
}

.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.loading-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loading-ring:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
  border-top-color: rgba(212, 175, 55, 0.7);
  animation-duration: 1.5s;
  animation-direction: reverse;
}

.loading-ring:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
  border-top-color: rgba(212, 175, 55, 0.4);
  animation-duration: 1.8s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal-loading p {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.modal-loading .loading-sub {
  color: #888;
  font-size: 13px;
  letter-spacing: 0;
}

/* =========================
SUCCESS STATE
========================= */
.modal-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}

.modal-success.active {
  display: block;
}

.modal-success .check-icon {
  width: 70px;
  height: 70px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #d4af37;
  font-size: 32px;
}

.modal-success h3 {
  font-size: 28px;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 15px;
}

.modal-success p {
  color: #999;
  font-size: 15px;
  margin-bottom: 30px;
}

.modal-success button {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 12px 40px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 8px;
}

.modal-success button:hover {
  background: rgba(212, 175, 55, 0.15);
}

/* =========================
MODAL RESPONSIVE
========================= */
@media (max-width: 768px) {
  .modal-box {
    padding: 35px 25px;
    width: 95%;
  }

  .modal-title {
    font-size: 24px;
  }
}

/* =========================
PRIVATE CONSULTANT FAB
========================= */
.consultant-fab {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.consultant-fab:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.1);
  transform: translateY(-3px);
}

.consultant-fab-pulse {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: consultantPulse 2s ease-in-out infinite;
}

@keyframes consultantPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.consultant-fab-icon {
  width: 22px;
  height: 22px;
  color: #d4af37;
}

.consultant-fab-label {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.consultant-fab-status {
  font-size: 11px;
  color: #4ade80;
  font-weight: 400;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* =========================
CONSULTANT PANEL
========================= */
.consultant-panel {
  position: fixed;
  bottom: 100px;
  right: 35px;
  width: 380px;
  max-height: 560px;
  z-index: 998;
  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(212, 175, 55, 0.3);
}

.consultant-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.consultant-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.consultant-panel-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.consultant-panel-avatar svg {
  width: 22px;
  height: 22px;
  color: #000;
}

.consultant-panel-info {
  flex: 1;
}

.consultant-panel-info h4 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.consultant-panel-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4ade80;
}

.consultant-panel-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: consultantPulse 2s ease-in-out infinite;
}

.consultant-panel-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #999;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.consultant-panel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Consultant States */
.consultant-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.consultant-state-hidden {
  display: none !important;
}

/* Registration Form */
.consultant-form-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultant-form-intro {
  text-align: center;
  margin-bottom: 24px;
}

.consultant-form-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.consultant-form-icon svg {
  width: 28px;
  height: 28px;
}

.consultant-form-intro h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.consultant-form-intro p {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.consultant-register-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultant-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consultant-form-group label {
  font-size: 11px;
  color: #d4af37;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.consultant-form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.consultant-form-group input:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.consultant-form-group input::placeholder {
  color: #555;
}

.consultant-form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.consultant-form-group select:focus {
  border-color: rgba(212, 175, 55, 0.6);
  background-color: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.consultant-form-group select option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.consultant-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  border: none;
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  font-family: inherit;
}

.consultant-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.consultant-form-privacy {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin-top: 16px;
}

/* Loading State */
.consultant-loading-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.consultant-loading-spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.consultant-spinner-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: #d4af37;
  border-radius: 50%;
  animation: consultant-spin 1.2s linear infinite;
}

.consultant-spinner-ring:nth-child(2) {
  inset: 6px;
  border-top-color: rgba(212, 175, 55, 0.6);
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.consultant-spinner-ring:nth-child(3) {
  inset: 12px;
  border-top-color: rgba(212, 175, 55, 0.3);
  animation-duration: 2.4s;
}

@keyframes consultant-spin {
  to { transform: rotate(360deg); }
}

.consultant-loading-text {
  font-size: 15px;
  color: #d4af37;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.consultant-loading-sub {
  font-size: 12px;
  color: #666;
}

/* Success State */
.consultant-success-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.consultant-success-check {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  animation: consultant-check-in 0.6s ease-out;
}

.consultant-success-check svg {
  width: 100%;
  height: 100%;
}

.consultant-success-check circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: consultant-circle-draw 0.6s ease-out 0.2s forwards;
}

.consultant-success-check path {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: consultant-check-draw 0.4s ease-out 0.6s forwards;
}

@keyframes consultant-check-in {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes consultant-circle-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes consultant-check-draw {
  to { stroke-dashoffset: 0; }
}

.consultant-success-body h3 {
  font-size: 20px;
  font-weight: 400;
  color: #d4af37;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.consultant-success-msg {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}

.consultant-success-btn {
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 10px;
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.consultant-success-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* =========================
CONSULTANT RESPONSIVE
========================= */
@media (max-width: 768px) {
  .consultant-fab {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
  }

  .consultant-fab-status {
    display: none;
  }

  .consultant-panel {
    bottom: 80px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: 75vh;
  }

  .consultant-form-body {
    padding: 20px 16px;
  }

  .consultant-form-intro h3 {
    font-size: 16px;
  }

  .consultant-form-group input {
    padding: 12px 14px;
    font-size: 13px;
  }

  .consultant-form-submit {
    padding: 14px;
    font-size: 13px;
  }
}
