/* ================================================
   Contact Page Custom Styles
   ================================================ */

/* Custom animation delays */
.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

.animation-delay-1000 {
    animation-delay: 1000ms;
}

.animation-delay-2000 {
    animation-delay: 2000ms;
}

.animation-delay-4000 {
    animation-delay: 4000ms;
}

/* Enhanced shadow */
.shadow-3xl {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive text scaling */
@media (max-width: 640px) {
    .font-playfair {
        line-height: 1.2;
    }
}

/* Swiper Customization */
.serviceSwiper {
    width: 100%;
    padding: 20px 0 60px 0;
}

.serviceSwiper .swiper-slide {
    height: auto;
}

.serviceSwiper .swiper-button-next,
.serviceSwiper .swiper-button-prev {
    color: rgb(255, 203, 48);
    margin-top: -22px;
}

.serviceSwiper .swiper-button-next:after,
.serviceSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}

.serviceSwiper .swiper-pagination-bullet {
    background: rgba(255, 203, 48, 0.3);
    opacity: 1;
}

.serviceSwiper .swiper-pagination-bullet-active {
    background: rgb(255, 203, 48);
}

/* Enhanced mobile interactions */
@media (hover: none) {
    .group:hover .group-hover\:scale-110 {
        transform: scale(1);
    }

    .hover\:scale-105:hover {
        transform: scale(1);
    }
}

/* Equal card height for swiper slides */
.whyServicesSwiper .swiper-slide {
    height: auto;
    display: flex;
    z-index: 0;
}

.whyServicesSwiper .swiper-slide > div {
    width: 100%;
    z-index: 0;
}

.whyServicesSwiper .swiper-slide .relative.flex.flex-col {
    min-height: 800px;
    z-index: 0;
}

/* Custom Swiper slides per view - whybalil class */
.whybalil {
    width: 100%;
}

/* Desktop: 3 slides per view */
@media (min-width: 1024px) {
    .whybalil .swiper-slide {
        width: calc(100% / 3);
    }
}

/* Tablet: 2 slides per view */
@media (min-width: 768px) and (max-width: 1023px) {
    .whybalil .swiper-slide {
        width: calc(100% / 2);
    }
}

/* Mobile: 1.3 slides per view */
@media (max-width: 767px) {
    .whybalil .swiper-slide {
        width: calc(100% / 1.3);
    }
}

/* Better mobile spacing */
@media (max-width: 768px) {
    .space-y-6 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 1rem;
    }

    .space-y-8 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 1.5rem;
    }

    .serviceSwiper .swiper-button-next,
    .serviceSwiper .swiper-button-prev {
        display: none;
    }

    /* Responsive card height for mobile */
    .whyServicesSwiper .swiper-slide .relative.flex.flex-col {
        min-height: 850px;
    }
}

/* Medium devices */
@media (max-width: 1024px) {
    .whyServicesSwiper .swiper-slide .relative.flex.flex-col {
        min-height: 820px;
    }
}

/* Swiper Carousel Styling */
.destinations-swiper {
    padding-bottom: 60px;
}

.destinations-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Navigation Button Styling */
.destinations-swiper-prev,
.destinations-swiper-next {
    width: 50px;
    height: 50px;
    background-color: rgba(251, 191, 36, 0.2);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 0;
    color: #fccb30;
    transition: all 0.3s ease;
}

.destinations-swiper-prev:hover,
.destinations-swiper-next:hover {
    background-color: rgba(251, 191, 36, 0.4);
    border-color: #fccb30;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.destinations-swiper-prev::after,
.destinations-swiper-next::after {
    font-size: 20px;
    font-weight: bold;
}

/* Pagination Styling */
.destinations-swiper-pagination {
    bottom: 0;
}

.destinations-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(251, 191, 36, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.destinations-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fccb30;
    border-color: #fccb30;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

/* Responsive Swiper */
@media (max-width: 768px) {

    .destinations-swiper-prev,
    .destinations-swiper-next {
        width: 40px;
        height: 40px;
    }

    .destinations-swiper-prev::after,
    .destinations-swiper-next::after {
        font-size: 16px;
    }
}

@media (max-width: 640px) {

    .destinations-swiper-prev,
    .destinations-swiper-next {
        display: none;
    }

    .destinations-swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

/* FAQ Details marker color */
.faq-item::marker {
    color: #00000000;
}

.faq-item summary::marker {
    color: #00000000;
}
