/* ============================================
   QuickCI - THÈME TONNERRE DORÉ ⚡
   ============================================ */

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 50px rgba(251, 191, 36, 0.5); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in-up { animation: fadeInUp 0.5s ease-out forwards; }
.fade-in { animation: fadeIn 0.3s ease-out forwards; }
.slide-in-left { animation: slideInLeft 0.3s ease-out forwards; }
.slide-in-right { animation: slideInRight 0.3s ease-out forwards; }
.float { animation: float 6s ease-in-out infinite; }
.glow-pulse { animation: glow-pulse 2s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }

/* === SKELETON LOADING === */
.skeleton {
  background: linear-gradient(90deg, #242424 25%, #2d2d2d 50%, #242424 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* === TEXT GRADIENT GOLD === */
.text-gradient-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTON GOLD === */
.btn-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #D97706 100%);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  color: #0a0a0a;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(251, 191, 36, 0.5);
  transform: translateY(-2px);
}

.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* === BUTTON OUTLINE GOLD === */
.btn-gold-outline {
  background: transparent;
  border: 2px solid rgba(251, 191, 36, 0.5);
  color: #FBBF24;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #FBBF24;
}

/* === INPUT GOLD === */
.input-gold {
  background: #1a1a1a;
  border: 1px solid #2d2d2d;
  color: white;
  transition: all 0.3s ease;
}

.input-gold:focus {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
  border-color: #FBBF24;
  background: #242424;
}

.input-gold::placeholder {
  color: #4a4a4a;
}

/* === CARD DARK === */
.card-dark {
  background: linear-gradient(145deg, #1a1a1a, #242424);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 1rem;
}

.card-dark:hover {
  border-color: rgba(251, 191, 36, 0.2);
}

/* === HEADER GOLD === */
.header-gold {
  background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

/* === SERVICE CARD === */
.service-card {
  background: linear-gradient(145deg, #1a1a1a, #242424);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(251, 191, 36, 0.1);
}

/* === MESSAGE BUBBLES === */
.message-sent {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  color: #0a0a0a;
  border-radius: 20px 20px 6px 20px;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.message-received {
  background: #242424;
  color: white;
  border-radius: 20px 20px 20px 6px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

/* === CONVERSATION ITEM === */
.conversation-item {
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.conversation-item:hover {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.05) 0%, transparent 100%);
  border-left-color: rgba(251, 191, 36, 0.5);
}

.conversation-item.active {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
  border-left-color: #FBBF24;
}

/* === TABS === */
.tab-btn {
  position: relative;
  transition: all 0.3s ease;
  color: #6b7280;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 3px;
  background: linear-gradient(90deg, #FBBF24, #D97706);
  border-radius: 2px 2px 0 0;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #FBBF24;
}

.tab-btn.active::after {
  left: 0;
  right: 0;
}

.tab-btn:hover:not(.active) {
  color: #F59E0B;
  background: rgba(251, 191, 36, 0.05);
}

/* === SCROLLBAR === */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #3d3d3d;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #FBBF24;
}

/* === LINE CLAMP === */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === BADGE GOLD === */
.badge-gold {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  color: #0a0a0a;
  font-weight: bold;
}

/* === VERIFIED BADGE === */
.badge-verified {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #0a0a0a;
}

/* === CONTACT BUTTON === */
.contact-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* === PAYMENT BADGE === */
.payment-badge {
  transition: all 0.3s ease;
}

.payment-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* === FOOTER === */
.footer-dark {
  background: #121212;
  border-top: 1px solid rgba(251, 191, 36, 0.1);
}

/* === TOAST === */
.toast-success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.toast-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.toast-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.toast-warning {
  background: linear-gradient(135deg, #FBBF24, #D97706);
  color: #0a0a0a;
}



