/* SASS VAR */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(197, 33, 107, 0.8);
  z-index: -1;
}

.social-link {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
}

.social-link:hover {
  opacity: 0.8;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
}

.logo-box {
  width: 40px;
  height: 40px;
  background-color: #C5216B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.brand-name {
  color: #504594;
  font-size: 20px;
  font-weight: bold;
}

.navbar-nav .nav-link {
  color: #000000 !important;
  margin: 0 10px;
  transition: color 0.3s;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #C5216B !important;
}

.btn-orange {
  background-color: #C5216B;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-orange:hover {
  background-color: #e54a0a;
  color: white;
}

.btn-blue {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-blue:hover {
  background-color: #0052a3;
  color: white;
}

.btn-green {
  background-color: #C5216B;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-green:hover {
  background-color: #229954;
  color: white;
}

.btn-purple {
  background-color: #001F54;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-purple:hover {
  background-color: #7c3aed;
  color: white;
}

.hero-section {
  background: linear-gradient(135deg, #504594 0%, #504594 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(80, 69, 148, 0.18);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 94, 20, 0.2);
  color: #C5216B;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-image i {
  font-size: 80px;
  margin-bottom: 20px;
  color: white;
}

.hero-image p {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: #F6F6F6;
}

.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #6c757d;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: white;
}

.service-icon.orange {
  background-color: rgba(255, 94, 20, 0.2);
  color: #C5216B;
}

.service-icon.blue {
  background-color: rgba(0, 102, 204, 0.2);
  color: #0066cc;
}

.service-icon.green {
  background-color: rgba(39, 174, 96, 0.2);
  color: #C5216B;
}

.service-icon.purple {
  background-color: rgba(139, 92, 246, 0.2);
  color: #001F54;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 15px;
}

.service-card p {
  color: #6c757d;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-link {
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.service-link.orange {
  color: #C5216B;
}

.service-link.orange:hover {
  gap: 12px;
}

.service-link.blue {
  color: #0066cc;
}

.service-link.blue:hover {
  gap: 12px;
}

.service-link.green {
  color: #C5216B;
}

.service-link.green:hover {
  gap: 12px;
}

.service-link.purple {
  color: #001F54;
}

.service-link.purple:hover {
  gap: 12px;
}

.about-section {
  background-color: white;
}

.about-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 20px;
}

.about-image {
  background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 80px;
  margin-bottom: 20px;
  color: #666;
}

.about-image p {
  color: #666;
  font-size: 18px;
  font-weight: 600;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  background-color: #f0f0f0;
  color: #6c757d;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background-color: #C5216B;
  color: white;
}

.tab-btn:hover {
  background-color: #C5216B;
  color: white;
}

.tab-content {
  background-color: #F6F6F6;
  padding: 30px;
  border-radius: 10px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  color: #504594;
  font-weight: 700;
  margin-bottom: 15px;
}

.tab-pane p {
  color: #6c757d;
}

.boutique-section {
  background-color: #F6F6F6;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.product-image {
  background: linear-gradient(135deg, #C5216B 0%, #ff7a3d 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.product-image i {
  font-size: 60px;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #C5216B;
}

.features-list {
  list-style: none;
  margin-bottom: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c757d;
}

.livraison-section {
  background-color: #F6F6F6;
}

.livraison-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 20px;
}

.livraison-section p {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 30px;
}

.livraison-image {
  background: linear-gradient(135deg, #C5216B 0%, #229954 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.livraison-image i {
  font-size: 80px;
  margin-bottom: 20px;
  color: white;
}

.livraison-image p {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.website-section {
  background-color: white;
}

.pricing-card {
  background: #F6F6F6;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--border-gray);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: #001F54;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.pricing-card.featured {
  border-color: #001F54;
  border: #C5216B dashed 1px;
  position: relative;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #001F54;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #001F54;
  margin-bottom: 15px;
  margin-top: 10px;
}

.pricing-card p {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #6c757d;
}

.pricing-features i {
  color: #001F54;
  font-size: 16px;
}

.testimonials-section {
  background-color: #504594;
  color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
  color: white;
}

.testimonial-card {
  background-color: #504594;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background-color: #C5216B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 20px;
}

.author-name {
  font-weight: 600;
  color: white;
  margin-bottom: 3px;
}

.author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.stats-section {
  background: linear-gradient(135deg, #C5216B 0%, #ff7a3d 100%);
  color: white;
}

.stat-box {
  padding: 30px;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section {
  background-color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #504594;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
}

.footer-logo .logo-box {
  width: 40px;
  height: 40px;
  background-color: #C5216B;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer h4 {
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links,
.footer-info {
  list-style: none;
}

.footer-links li,
.footer-info li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #C5216B;
}

.footer-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-info i {
  margin-right: 10px;
  color: #C5216B;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #C5216B;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .section-header p {
    font-size: 16px;
  }
  .top-bar span {
    display: none;
  }
  .top-bar .social-link {
    display: inline-block;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .stat-box h3 {
    font-size: 32px;
  }
  .tabs-nav {
    flex-direction: column;
  }
  .tab-btn {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-text {
    font-size: 14px;
  }
  .navbar-brand {
    gap: 5px;
  }
  .brand-name {
    font-size: 16px;
  }
  .logo-box {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .stat-box h3 {
    font-size: 28px;
  }
  .stat-box p {
    font-size: 14px;
  }
}