/* ===========================================
   FAQ ELITE SECTION
   =========================================== */
.faq-elite-section {
  position: relative;
  padding: 110px 0 45px;
  color: #fff;
  z-index: 10;
}

.faq-ambient-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.05) 0%,
    rgba(107, 33, 168, 0.05) 40%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.faq-header {
  margin-bottom: 15px;
}

.faq-title {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000000;
}
.text-italic-cyan {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-purple);
  font-weight: 600;
}

.faq-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  font-weight: 400;
  max-width: 600px;
}

.faq-2col-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-2col-wrapper.has-active .faq-item:not(.active) {
  opacity: 0.4;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.4s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 35px 0;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 50px;
  color: var(--brand-purple);
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 1.6rem;
  clip-path: polygon(
    12px 0%,
    100% 0%,
    100% calc(100% - 12px),
    calc(100% - 12px) 100%,
    0% 100%,
    0% 12px
  );
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
  opacity: 0.7;
}

.faq-text {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.5px;
  transition:
    color 0.4s,
    transform 0.4s;
  transform-origin: left;
  line-height: 1.4;
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horizontal-line,
.vertical-line {
  position: absolute;
  background: #000000;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.horizontal-line {
  width: 100%;
  height: 2px;
}
.vertical-line {
  width: 2px;
  height: 100%;
}

.faq-question:hover .faq-text {
  color: var(--brand-purple);
  transform: translateX(5px);
}
.faq-question:hover .faq-num {
  color: var(--brand-purple);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  padding-bottom: 35px;
  padding-left: 78px;
  padding-right: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-item.active .faq-question .faq-text {
  color: var(--brand-purple);
  transform: translateX(5px);
}
.faq-item.active .faq-question .faq-num {
  background: var(--brand-purple);
  color: #ffffff;
  transform: scale(1.05);
}
.faq-item.active .vertical-line {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active .horizontal-line {
  background: var(--brand-purple);
}
.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}
.faq-item.active .faq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.faq-footer {
  margin-top: 15px;
}
.support-text {
  font-size: 1rem;
  color: var(--text-muted-light);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .faq-2col-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .faq-header {
    margin-bottom: 50px;
  }
  .faq-text {
    font-size: 1.15rem;
  }
  .faq-answer-inner p {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .faq-elite-section {
    padding: 0px 0;
  }
}

/* ===========================================
   ENQUIRY FORM SECTION
   =========================================== */
.enquiry-premium-section {
  position: relative;
  padding: 100px 0;
  z-index: 10;
  background: transparent;
}

@media (max-width: 768px) {
  .enquiry-premium-section {
    padding: 40px 0;
  }
}

.enquiry-glass-panel {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  padding: 60px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.08),
    0 10px 40px rgba(91, 33, 182, 0.06);
  position: relative;
  overflow: hidden;
}

.enquiry-glass-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 40%;
  transform: translateX(-50%);
  width: 60%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(192, 38, 211, 0.05) 0%,
    rgba(6, 182, 212, 0.05) 50%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
}

.enquiry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.enquiry-info,
.enquiry-form-wrapper {
  min-width: 0;
}

.enquiry-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #0f172a;
  letter-spacing: -1px;
}

.enquiry-subtitle {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 25px;
}

.c-method {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.c-method h5 {
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.c-method p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

.glass-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    inset 0 4px 15px rgba(0, 0, 0, 0.01),
    inset 0 1px 3px rgba(0, 0, 0, 0.01);
}

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

.input-group {
  position: relative;
  min-width: 0;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  color: #0f172a;
  padding: 10px 0 15px 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.glass-form select {
  color: #94a3b8;
}
.glass-form select option {
  color: #0f172a;
  background: #ffffff;
}
.glass-form select:valid {
  color: #0f172a;
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
  border-bottom-color: var(--brand-cyan);
  box-shadow: 0 15px 10px -15px rgba(6, 182, 212, 0.3);
}

.select-wrapper {
  position: relative;
}
.glass-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.glass-form select option[value=""][disabled] {
  display: none;
}

.select-icon {
  position: absolute;
  right: 5px;
  top: 40%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  font-size: 0.9rem;
}

.btn-form-submit {
  background: var(--brand-purple);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.btn-form-submit:hover {
  background: var(--brand-purple);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(91, 33, 182, 0.3);
}

@media (max-width: 991px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .enquiry-glass-panel {
    padding: 40px 30px;
  }
  .enquiry-info {
    text-align: center;
  }
  .glass-form {
    padding: 30px 20px;
    margin: 0 auto;
  }
  .btn-form-submit {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .enquiry-subtitle {
    font-size: 1rem;
    text-align: center;
  }
  .c-method h5 {
    text-align: justify;
  }
  .enquiry-glass-panel::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .btn-form-submit {
    width: 100%;
    justify-content: center;
  }
}
