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

::selection {
  background: #FF0000;
  color: #000;
}

/* Removed obsolete ::-webkit-selection and ::-moz-selection */

html,
body {
  font-family: 'Inter';
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #f6f6f6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== HERO SECTION ========== */
.hero-section {
  padding-top: 50px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  width: 100%;
  z-index: 2;
}

.hero-title {
  font-size: 100px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #000;
}

.text-gray {
  color: #aaa;
}

.hero-description {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.vector-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100vh;
  z-index: 1;
}

.vector-lines svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s forwards;
  stroke: #00000033 !important;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background-color: #000;
  padding: 60px 0;
  color: #fff;
  font-family: 'Inter';
}

.faq-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1920px;
  margin: 0 auto;
  gap: 50px;
}

/* Left Side Styles */
.faq-left {
  width: 40%;
  min-width: 300px;
}

.faq-category-container,
.faq-form-container {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  background: #211E1E;
  padding: 32px;
  margin-bottom: 54px;
}

.faq-form-container {
  margin-bottom: 80px;
}

.faq-category-title,
.faq-form-title {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #fff;
}

.faq-form-title {
  margin-bottom: 32px;
}

.faq-category-list {
  list-style: none;
  padding: 0;
}

.faq-category-item {
  display: flex;
  align-items: center;
  margin-bottom: 27px;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-category-item:hover .faq-category-text,
.faq-category-item.active .faq-category-text {
  color: #FF0000;
  font-weight: 600;
}

.faq-category-item.active .faq-category-dot {
  background-color: #FF0000;
  transform: scale(1.2);
}

.faq-category-dot {
  width: 10px;
  height: 10px;
  background-color: #FF0000;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-category-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  transition: color 0.3s;
}

/* FAQ Contact Form */
.form-success-message,
.form-failure-message {
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  display: none;
  text-align: center;
  font-size: 16px;
}

.form-success-message {
  background-color: #4CAF50;
  color: #fff;
}

.form-failure-message {
  background-color: #c38282;
  color: #fff;
}

.faq-form-row {
  display: flex;
  gap: 22px;
  margin-bottom: 0;
}

.faq-form-group {
  margin-bottom: 24px;
  width: 100%;
}

.faq-form-label {
  display: block;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.faq-form-input,
.faq-form-textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  padding: 0 12px;
}

.faq-form-input {
  height: 48px;
}

.faq-form-textarea {
  height: 100px;
  padding: 12px;
  resize: none;
}

.faq-form-submit {
  width: 131px;
  height: 46px;
  border-radius: 4px;
  background: #FF0000;
  border: none;
  font-weight: 500;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
}

.faq-form-submit:hover,
.faq-form-submit:focus {
  background: #e6c84f;
  outline: 2px solid #FFDE59;
}

/* Right Side Styles */
.faq-right {
  width: 60%;
  min-width: 300px;
  padding-left: 30px;
}

.faq-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.faq-title {
  font-weight: 600;
  font-size: 32px;
  color: #fff;
  margin-right: 20px;
  white-space: nowrap;
}

.faq-line {
  width: 201px;
  height: 2px;
  background-color: #fff;
  flex-grow: 1;
}

.faq-questions {
  max-width: 100%;
}

.faq-question-item {
  margin-bottom: 20px;
}

.faq-question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 0;
}

.faq-question-title {
  font-family: 'Inter', Arial;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  margin: 0;
  width: 90%;
  word-wrap: break-word;
}

.faq-toggle-btn {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  color: #D9D9D9;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-toggle-btn i {
  transition: transform 0.3s;
}

.faq-toggle-btn.active i.fa-plus {
  transform: rotate(135deg);
}

.faq-toggle-btn.active i.fa-minus {
  transform: rotate(0deg);
}

.faq-question-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
  padding-right: 40px;
}

.faq-question-content.active {
  max-height: 1000px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 16px;
}

.faq-question-answer {
  font-family: 'Lato', Arial;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin: 0;
  word-wrap: break-word;
}

.faq-divider {
  width: 100%;
  height: 1px;
  background-color: #E5E7EB;
  margin-top: 16px;
  transition: opacity 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1400px) {
  .hero-title { font-size: 80px; }
  .faq-question-title { font-size: 24px; }
  .faq-question-answer { font-size: 18px; }
}

@media (max-width: 1200px) {
  .hero-title { font-size: 70px; }
  .faq-container {
    flex-direction: column;
    align-items: center;
    width: 90%;
  }
  .faq-left, .faq-right {
    width: 100%;
    padding-left: 0;
  }
  .faq-right { margin-top: 30px; }
  .faq-category-container, .faq-form-container {
    width: 100%;
    max-width: 100%;
  }
  .faq-questions { width: 100%; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 60px; }
  .hero-description { font-size: 20px; }
  .faq-category-text { font-size: 20px; }
  .faq-question-title { font-size: 22px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 48px; }
  .hero-description { font-size: 18px; }
  .hero-description br { display: none; }
  .faq-section { padding: 40px 0; }
  .faq-form-row { flex-direction: column; gap: 24px; }
  .faq-title { font-size: 28px; }
  .faq-line { width: 100px; }
  .faq-question-title { font-size: 20px; width: 80%; }
  .faq-question-answer { font-size: 16px; padding-right: 20px; }
  .faq-category-text { font-size: 18px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .faq-container { gap: 30px; }
  .faq-question-title { font-size: 20px; line-height: 1.4; width: 85%; }
  .faq-question-answer { font-size: 16px; line-height: 1.5; }
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .faq-container { align-items: flex-start; }
  .faq-right { padding-top: 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; line-height: 1.2; }
  .hero-description { font-size: 16px; }
  .faq-container { width: 95%; gap: 20px; }
  .faq-category-title, .faq-form-title { font-size: 22px; }
  .faq-category-text { font-size: 16px; }
  .faq-title { font-size: 22px; }
  .faq-question-title { font-size: 18px; line-height: 1.4; width: 80%; }
  .faq-question-answer { font-size: 14px; line-height: 1.5; padding-right: 10px; }
  .faq-form-submit { width: 100%; }
  .faq-form-label { font-size: 16px; }
}

@media (max-width: 280px) {
  .faq-container { width: 95%; }
  .faq-category-title, .faq-form-title, .faq-title { font-size: 20px; }
  .faq-question-title { font-size: 16px; width: 75%; }
  .faq-question-answer { font-size: 14px; }
}