/* ==========================================
   COMPONENTS
   ========================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-gmail {
  background: linear-gradient(135deg, #EA4335 0%, #D93025 100%);
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.btn-gmail:hover {
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.4);
}

.btn-facebook-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1877F2;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  gap: 12px;
  margin-top: 20px;
}

.btn-facebook-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.6);
}

.btn-facebook-large svg {
  width: 24px;
  height: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.contact-actions .btn {
  margin-top: 0;
}

/* Floating Phone Button */
.floating-phone {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-phone:hover {
  transform: scale(1.1) translateY(0);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
  animation: pulse 0.6s ease-in-out infinite;
}

.floating-phone svg {
  width: 30px;
  height: 30px;
}

/* FAQ Section */
.faq-section {
  background: var(--theme-bg-section);
  border: 5px solid var(--theme-border);
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 15px 20px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: #333;
  transition: all 0.3s;
  border-radius: 4px;
}

.faq-question:hover {
  background: var(--theme-bg-section);
  color: var(--theme-primary);
  border-left: 4px solid var(--theme-border);
}

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

.faq-answer p {
  padding: 20px;
  margin: 0;
  color: var(--theme-text-main);
  border-left: 5px solid var(--theme-secondary);
  transition: all 0.5s ease;
}

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

.faq-item.active .faq-question {
  background: var(--theme-primary);
  color: var(--theme-text-alt);
  transition: all 0.3s ease;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s;
}

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

/* Click Effects */
.click-effect-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
  z-index: 9999;
}

.clicked-element {
  animation: clickPulse 0.2s ease-in-out;
}

/* Desktop Components */
@media (min-width: 768px) {
  .floating-phone {
    width: 70px;
    height: 70px;
    bottom: 40px;
    left: 40px;
  }

  .floating-phone svg {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767px) {
  .ai-widget {
    bottom: 100px;
    right: 10px;
    width: 140px;
  }
}