/* === TRJC Custom Inquiry Page === */
/* Fonts: Playfair Display + Montserrat */
/* Colors: #1C1C1C dark, #EFCB28 gold, #FAF5ED cream, #FFFFFF white */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 48px;
  font-weight: 300;
}

.gold-text {
  color: #EFCB28;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(239, 203, 40, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #EFCB28;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-logo {
  width: 260px;
  margin-bottom: 32px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(45%) saturate(700%) hue-rotate(358deg) brightness(100%) contrast(90%);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 0.95rem;
  color: #999;
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: #EFCB28;
  color: #1a1a1a;
}

.btn-gold:hover {
  background: #f5d76e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 203, 40, 0.2);
}

.btn-outline {
  background: transparent;
  color: #EFCB28;
  border: 1.5px solid #EFCB28;
}

.btn-outline:hover {
  background: rgba(239, 203, 40, 0.08);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 0.9rem;
  width: 100%;
  max-width: 400px;
}

/* === Process Steps — Alternating Cards === */
.process {
  padding: 80px 0;
  background: #111;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-card {
  display: flex;
  align-items: stretch;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
}

.process-card.reverse {
  flex-direction: row-reverse;
}

.process-card-image,
.process-card-video {
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
}

.process-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #EFCB28;
  color: #EFCB28;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.process-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #EFCB28;
}

.process-card-content p {
  color: #999;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* === Investment === */
.investment {
  padding: 80px 0;
  background: #0a0a0a;
  text-align: center;
}

.investment-intro {
  color: #999;
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.investment-center {
  max-width: 500px;
  margin: 0 auto;
}

.price-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #EFCB28;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 32px;
}

.investment-box {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  margin-bottom: 24px;
}

.investment-box h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #EFCB28;
  text-underline-offset: 4px;
}

.investment-list {
  list-style: none;
}

.investment-list li {
  padding: 6px 0;
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 300;
  position: relative;
  padding-left: 20px;
}

.investment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #EFCB28;
  border-radius: 50%;
}

.investment-credit {
  color: #EFCB28;
  font-size: 0.85rem;
  font-weight: 500;
}

/* === Form Section === */
.form-section {
  padding: 80px 0;
  background: #111;
}

.inquiry-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #bbb;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.optional {
  color: #555;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EFCB28' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

select option {
  background: #1a1a1a;
  color: #ffffff;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #EFCB28;
}

::placeholder {
  color: #555;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  color: #ccc;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: all 0.2s ease;
}

.checkbox-label:hover {
  border-color: #EFCB28;
}

.checkbox-label input[type="checkbox"] {
  accent-color: #EFCB28;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 2px dashed #333;
  border-radius: 6px;
  text-align: center;
  color: #666;
  transition: all 0.3s ease;
  gap: 6px;
}

.file-upload:hover .file-upload-label {
  border-color: #EFCB28;
  color: #999;
}

.file-icon {
  font-size: 1.5rem;
  color: #EFCB28;
  line-height: 1;
}

.file-types {
  font-size: 0.7rem;
  color: #555;
}

/* Form Actions */
.form-actions {
  text-align: center;
  margin-top: 36px;
}

.deposit-note {
  color: #777;
  font-size: 0.75rem;
  margin-top: 10px;
  font-weight: 300;
}

.secondary-note {
  color: #555;
  font-size: 0.75rem;
  margin-top: 8px;
  font-weight: 300;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: #444;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
}

/* Success */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EFCB28;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  font-weight: 700;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.form-success p {
  color: #999;
  font-size: 0.95rem;
}

/* === FAQ === */
.faq {
  padding: 80px 0;
  background: #0a0a0a;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-toggle {
  color: #EFCB28;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: #999;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  padding-bottom: 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* === Footer === */
.footer {
  padding: 48px 0 32px;
  background: #111;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-logo {
  width: 100px;
  margin-bottom: 8px;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(82%) sepia(45%) saturate(700%) hue-rotate(358deg) brightness(100%) contrast(90%);
}

.footer-tagline {
  color: #EFCB28;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #777;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #EFCB28;
}

.footer-address {
  color: #444;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.footer-copyright {
  color: #333;
  font-size: 0.7rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-logo {
    width: 180px;
  }

  .process-card,
  .process-card.reverse {
    flex-direction: column;
  }

  .process-card-image,
  .process-card-video {
    flex: none;
    max-width: 100%;
    height: 200px;
  }

  .process-card-content {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 16px;
  }

  .process-card-content {
    padding: 20px;
  }

  .process-card-content h3 {
    font-size: 1.05rem;
  }

  .checkbox-label {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}
