
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 991px) {
  .services .hero-visual {
    margin-top: 3rem;
  }
}

.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}


.services .services-grid .service-card .card-header-visual {
  width: 100%;
  height: 180px; /* hauteur fixe */
  overflow: hidden;
}

.services .services-grid .service-card .card-header-visual .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}




/*--------------------------------------------------------------
# Travel Tours Section
--------------------------------------------------------------*/
.service-product .section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-product .tour-filters {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-product .tour-filters .form-select {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.service-product .tour-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-product .featured-tours-slider {
  padding-bottom: 40px;
}

.service-product .featured-tours-slider .swiper-wrapper {
  height: auto !important;
}

.service-product .featured-tours-slider .swiper-pagination {
  bottom: 0;
}

.service-product .featured-tours-slider .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.service-product .featured-tours-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.service-product .featured-tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-product .featured-tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.service-product .featured-tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-product .featured-tour-card .tour-image .tour-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-product .featured-tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.service-product .featured-tour-card .tour-content {
  padding: 1.5rem;
}

.service-product .featured-tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-product .featured-tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-product .featured-tour-card .tour-content .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.service-product .featured-tour-card .tour-content .tour-meta .duration {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
}

.service-product .featured-tour-card .tour-content .tour-meta .duration i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.service-product .featured-tour-card .tour-content .tour-meta .price {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.service-product .featured-tour-card .tour-content .btn {
  width: 100%;
}

.service-product .category-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-product .category-card:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.service-product .category-card .category-icon {
  margin-bottom: 1rem;
}

.service-product .category-card .category-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.service-product .category-card h5 {
  color: var(--heading-color);
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.service-product .special-offers .offer-banner {
  display: flex;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 15px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

@media (max-width: 768px) {
  .service-product .special-offers .offer-banner {
    flex-direction: column;
  }
}

.service-product .special-offers .offer-banner .offer-content {
  flex: 1;
  padding: 2rem;
  color: var(--contrast-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-product .special-offers .offer-banner .offer-content .discount-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.service-product .special-offers .offer-banner .offer-content h4 {
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-product .special-offers .offer-banner .offer-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-product .special-offers .offer-banner .offer-content .urgency {
  color: #ffeb3b;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.service-product .special-offers .offer-banner .offer-content .btn-accent {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  align-self: flex-start;
}

.service-product .special-offers .offer-banner .offer-content .btn-accent:hover {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

.service-product .special-offers .offer-banner .offer-image {
  flex: 0 0 200px;
}

@media (max-width: 768px) {
  .service-product .special-offers .offer-banner .offer-image {
    flex: none;
    height: 150px;
  }
}

.service-product .special-offers .offer-banner .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-product .tour-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-product .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-product .tour-card .tour-image {
  position: relative;
  overflow: hidden;
}

.service-product .tour-card .tour-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-product .tour-card .tour-image .tour-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
}

.service-product .tour-card .tour-image:hover img {
  transform: scale(1.05);
}

.service-product .tour-card .tour-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-product .tour-card .tour-content h4 {
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-product .tour-card .tour-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.service-product .tour-card .tour-content .tour-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-product .tour-card .tour-content .tour-details span {
  display: flex;
  align-items: center;
}

.service-product .tour-card .tour-content .tour-details span i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.service-product .tour-card .tour-content .btn {
  align-self: flex-start;
}

.service-product .cta-section {
  background-color: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.service-product .cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.service-product .cta-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .service-product .cta-section .cta-buttons .btn {
    display: block;
    margin-bottom: 1rem;
    width: 100%;
  }

  .service-product .cta-section .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.service-product .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-product .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.service-product .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-product .btn-outline-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
