/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--light-red);
  transform: translateY(-2px);
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-details h4 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-details p {
  color: #666;
  font-size: 0.9rem;
}

/* Social Media */
.social-section {
  text-align: center;
  background: var(--light-gray);
  padding: 30px;
  border-radius: 12px;
}

.social-title {
  color: var(--primary-red);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.facebook {
  background: #3b5998;
}
.twitter {
  background: #1da1f2;
}
.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.line {
  background: #00b900;
}
.youtube {
  background: #ff0000;
}
.email {
  background: var(--primary-red);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-red);
  box-shadow: 0 5px 15px rgba(212, 0, 26, 0.1);
}

.faq-item.active {
  border-color: var(--primary-red);
}

.faq-question {
  background: var(--light-gray);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--light-red);
  color: var(--primary-red);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--primary-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 300px;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Privacy Policy */
.policy-intro {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: center;
}

.policy-intro h3 {
  color: var(--primary-red);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.policy-intro p {
  color: #666;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-item {
  padding: 25px;
  background: var(--light-gray);
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
  transition: all 0.3s ease;
}

.policy-item:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(212, 0, 26, 0.1);
  transform: translateX(5px);
}

.policy-item h4 {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-item p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 12px;
}

.policy-item p:last-child {
  margin-bottom: 0;
}

.policy-item ul {
  margin-left: 20px;
  color: #666;
}

.policy-item li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.highlight-note {
  background: var(--light-red);
  border: 2px solid var(--primary-red);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.highlight-note h5 {
  color: var(--primary-red);
  margin-bottom: 10px;
  font-weight: 600;
}

.highlight-note p {
  color: var(--dark-gray);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .section {
    padding: 25px;
  }

  .section-title {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .policy-item {
    padding: 20px;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
