/* Custom Styles for Guinea Landing Page */

:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #0dcaf0;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.old-price {
  position: relative;
}

.new-price {
  font-size: 2.5rem !important;
}

/* Feature Cards */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
  color: var(--primary-color);
}

/* Gallery */
.thumbnail-img {
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail-img:hover {
  opacity: 0.8;
  border-color: var(--primary-color);
}

/* Step Numbers */
.step-number {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
}

/* Testimonials */
.testimonial-card {
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.stars {
  font-size: 1.2rem;
}

/* Order Form */
.order-card {
  border: 2px solid var(--primary-color);
  position: relative;
}

.order-card::before {
  content: "🔥 OFFRE LIMITÉE";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--danger-color);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price-highlight {
  background: linear-gradient(45deg, #fff3cd, #f8d7da);
  padding: 20px;
  border-radius: 15px;
  border: 2px dashed var(--danger-color);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #dee2e6;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Accordion Customization */
.accordion-button {
  background-color: #f8f9fa;
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2rem;
  }

  .new-price {
    font-size: 2rem !important;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .mobile-sticky-bar {
    display: block !important;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none !important;
  }
}

/* Loading Animation */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Success Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom Shadows */
.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sticky Top Bar Animation */
.sticky-top {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Form Validation Styles */
.form-control:invalid {
  border-color: var(--danger-color);
}

.form-control:valid {
  border-color: var(--success-color);
}

/* Pulse Animation for CTA */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.btn-danger:hover {
  animation: pulse 2s infinite;
}
