/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.faq-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea1c26 0%, #c41820 100%);
}

.faq-hero h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-hero .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ea1c26;
}

.faq-hero .hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #ddd;
}

/* FAQ Navigation */
.faq-nav-section {
  background: white;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.faq-nav-item {
  display: inline-block;
  padding: 12px 25px;
  background: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-nav-item:hover {
  background: #ea1c26;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 28, 38, 0.3);
  text-decoration: none;
}

.faq-nav-item i {
  margin-right: 8px;
}

/* FAQ Content Section */
.faq-content-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.faq-category {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  scroll-margin-top: 120px;
}

.category-title {
  font-size: 2em;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ea1c26;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-title i {
  color: #ea1c26;
  font-size: 0.9em;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  transition: all 0.3s ease;
  border-left: 4px solid #ea1c26;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.faq-question i {
  color: #ea1c26;
  font-size: 1.5em;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-size: 1.3em;
  color: #333;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-left: 0;
}

.faq-answer i {
  color: #28a745;
  font-size: 1.2em;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
  padding: 80px 0;
  background: white;
  text-align: center;
  border-top: 4px solid #ea1c26;
}

.faq-cta-section h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

.faq-cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #666;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid #ea1c26;
}

.btn-primary {
  background: #ea1c26;
  color: white;
}

.btn-primary:hover {
  background: #c41820;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(234, 28, 38, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #ea1c26;
}

.btn-secondary:hover {
  background: #ea1c26;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(234, 28, 38, 0.3);
  text-decoration: none;
}

/* Quick Tips Section */
.quick-tips-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tip-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 2px solid transparent;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: #ea1c26;
}

.tip-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ea1c26 0%, #c41820 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
  transform: scale(1.1) rotate(360deg);
}

.tip-icon i {
  font-size: 2.5em;
  color: white;
}

.tip-card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
}

.tip-card p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero {
    padding: 50px 0 40px;
  }

  .faq-hero h1 {
    font-size: 2em;
  }

  .faq-hero .hero-subtitle {
    font-size: 1.2em;
  }

  .faq-hero .hero-description {
    font-size: 1em;
  }

  .faq-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-nav-item {
    text-align: center;
  }

  .faq-nav-section {
    position: relative;
  }

  .faq-category {
    padding: 25px 20px;
    scroll-margin-top: 20px;
  }

  .category-title {
    font-size: 1.5em;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-item {
    padding: 20px 15px;
  }

  .faq-question h3 {
    font-size: 1.1em;
  }

  .faq-answer p {
    font-size: 1em;
  }

  .faq-cta-section h2 {
    font-size: 1.8em;
  }

  .faq-cta-section p {
    font-size: 1.1em;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .faq-hero h1 {
    font-size: 1.6em;
  }

  .faq-question {
    flex-direction: column;
    gap: 10px;
  }

  .faq-question i {
    font-size: 1.2em;
  }

  .faq-answer {
    flex-direction: column;
    gap: 10px;
  }

  .tip-icon {
    width: 60px;
    height: 60px;
  }

  .tip-icon i {
    font-size: 2em;
  }
}
