/* Custom Animations */
@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

.animate-scroll-line {
    animation: scrollLine 2s infinite ease-in-out;
}

/* FV Image Settings */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .fv-swiper .swiper-slide img {
        height: auto;
        object-fit: contain;
    }
}

/* Vertical bottom for image gaps */
.vertical-bottom {
    vertical-align: bottom;
}

/* Hover Effects */
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-img:hover {
    filter: brightness(1.1);
}

/* Form / Input Focus (Optional utility if needed) */
input:focus,
textarea:focus {
    outline: none;
    border-color: #f4c2c2;
    box-shadow: 0 0 0 2px rgba(244, 194, 194, 0.2);
}

/* SP Nav Links */
.sp-link {
    position: relative;
    padding-bottom: 2px;
}

.sp-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.sp-link:hover::after {
    width: 100%;
}

/* Section Title Clipping / Masking if desired, but here just sizing */
.section-heading {
    display: flex;
    justify-content: center;
}

/* Responsive Overrides */
@media (max-width: 767px) {
    .section-heading div {
        max-width: 80%;
        /* Slightly wider on SP */
    }
}

/* Prevent text selection since right click is disabled */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection in specific areas if needed, but per request usually global */
input,
textarea {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* CTA Custom Shadow */
.cta-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    background: transparent;
    /* Prevent background bleeding */
}

/* Base container for images */
.cta-inner-crop {
    display: block;
    line-height: 0;
    position: relative;
    overflow: visible;
    /* Restore original view */
}

.cta-inner-crop img {
    width: 100% !important;
    height: auto !important;
    display: block;
}