/* Brand section (moved Wed Tour Thailand block) */
.brand-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background: var(--primary-gradient);
}

.brand-section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(900px 600px at 80% 90%, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.18) 100%);
  mix-blend-mode: overlay;
}

.brand-section .container {
  position: relative;
  z-index: 1;
}

/* Make text readable on gradient */
.brand-section .guide-info .subtitle,
.brand-section .guide-info .description {
  color: rgba(255, 255, 255, 0.88);
}

.brand-section .guide-info h1 {
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.brand-section .book-btn-inline,
.brand-section .avatar-text-button {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Disable hover overlay effect on logo in brand section */
.brand-section .avatar-hover-wrapper:hover .avatar-image {
  opacity: 1 !important;
}

.brand-section .avatar-hover-wrapper:hover .avatar-logo-overlay {
  opacity: 0 !important;
}

.brand-section .avatar-hover-wrapper .avatar-logo-overlay {
  display: none;
}

/* Унифицированные стили для кнопок в блоке с аватаркой */
.avatar-text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  text-align: right;
  justify-content: flex-start;
  align-self: flex-end;
  width: auto;
  max-width: 100%;
}

.avatar-text-title,
.avatar-text-subtitle,
.avatar-text-description {
  width: auto;
  max-width: 280px;
  align-self: flex-end;
}

.avatar-text-button,
.avatar-text-button.mission-btn {
  width: auto;
  max-width: 280px;
  margin: 0;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 25px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  align-self: flex-end;
}

.avatar-text-button:hover,
.avatar-text-button.mission-btn:hover {
  background: var(--primary-gradient);
  filter: brightness(0.95) saturate(1.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Стили для кнопок в guide-info */
.brand-section .guide-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Переопределяем базовые стили guide-info для brand-section */
.brand-section .guide-info {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.guide-info .book-btn-inline,
.guide-info .book-btn-inline.mission-btn {
  width: 100%;
  max-width: 280px;
  margin: 0;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 25px;
  background: var(--primary-gradient);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: var(--shadow);
}

.brand-section .guide-info .book-btn-inline:hover,
.brand-section .guide-info .book-btn-inline.mission-btn:hover {
  background: var(--primary-gradient);
  filter: brightness(0.95) saturate(1.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}


