/*All Animation*/
/*used in PYC*/
/* service-card */

.service-card {
    transition: all 0.35s ease;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid hsl(var(--text-neutral-gray-hls) / .2);
}

/* FULL CARD HOVER */
.service-card-link:hover .service-card {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
    background: hsl(var(--chestnut-brown-hls) /.07)
}

/* ICON ZOOM SMOOTH EFFECT */
.service-icon {
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--cerulean-blue-hls));
    color: hsl(var(--text-soft-white-hls))
}

.service-card-link:hover .service-icon {
    transform: scale(1.1);
    background: hsl(var(--chestnut-brown-hls));
    color: hsl(var(--text-soft-white-hls))
}
/* LINK ANIMATION */
.link-anim {
    transition: all 0.3s ease;
    color: hsl(var(--cerulean-blue-hls));
}

.service-card-link:hover .link-anim {
    color: hsl(var(--chestnut-brown-hls));
    transform: translateX(6px);
}

/* ARROW MOVE */
.service-card-link:hover .link-anim i {
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/*Hover Effect*/
.price-card {
  transition: all 0.3s ease;
  border-radius: 14px;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
}

.fleet-card {
    transition: all .3s ease;
    border-radius: 18px;
    overflow: hidden;
    padding-top:15px;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12) !important;
}

.fleet-card img {
    object-fit: cover;
}

.card-body h4 {
    color: #1d3557;
}

.btn-primary {
    background: #0d6efd;
    border: none;
}

.btn-primary:hover {
    background: #0b5ed7;
}
/*carousel icon*/
.carousel-controls-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    margin-top: 20px;
}

.carousel-controls-bottom .btn {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Tour*/

.attraction-list a{
    background: hsl(var(--chestnut-brown-hls) /.04);
    border: 1px solid hsl(var(--text-neutral-gray-hls) / .2);
    color: hsl(var(--chestnut-brown-hls));
    transition:all .3s ease;
}

.attraction-list a:hover{
    color: hsl(var(--chestnut-brown-hls));
    transform:translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
    background: hsl(var(--chestnut-brown-hls) /.07)
}
/*Form*
.form-control:required,
.form-select:required {
    border: 2px solid #dc3545 !important;
}

.form-control:focus:required {
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25);
}*/





/*used in PYC*/






















.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    background: transparent;
    border: 0;
    color: hsl(var(--text-white-color-hls)/ .8);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {color: hsl(var(--text-white-color-hls));}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/*All Effects*/

/* === box shadow effects & animation === */
.card-effects {
    cursor: pointer;
    border-radius: 1.25rem;
    border-width: 1px;
    border-color: hsl(var(--border) / .3);
    background-color: hsl(var(--card));
    padding: 1.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
    animation-duration: .3s;
    animation-timing-function: cubic-bezier(0,0,.2,1)
}

.card-effects {
    box-shadow: var(--shadow-soft)
}

.card-effects:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    border-color: hsl(var(--accent) / .2)
}
  .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    background-color: hsl(var(--accent) / .1);
    transition: all 0.25s ease;
  }

  .card-effects:hover .icon-box {
    background-color: hsl(var(--accent) / .15);
    transform: scale(1.05);
  }

  .solution-link {
    transition: all 0.25s ease;
  }

  .card-effects:hover .solution-link {
    gap: 10px !important;
  }
/*Button move effects - used in toutes les situations*/
.situation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid hsl(var(--accent-color-hls) / .8);
    text-decoration: none;
    color: hsl(var(--text-blue-gray-hls));
    font-size: 18px;;
    font-weight: 500;
    transition: all .3s ease;
}

.situation-btn .icon-left,
.situation-btn .icon-right {
    transition: all .3s ease;
}

/* Hover effects */
.situation-btn:hover {
    transform: translateY(-3px);
    border: 1px solid hsl(var(--accent-color-hls) / .5);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
    color: hsl(var(--text-blue-gray-hls));
}

.situation-btn:hover .icon-left {
    transform: scale(1.1);
    color:  hsl(var(--text-golden-color-hls));
}

.situation-btn:hover .icon-right {
    transform: translateX(4px);
    color:  hsl(var(--text-golden-color-hls));
}


