.v-testimonial-slider .swiper-pagination {
    right: 10px;
    /* Position on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Vertically center */
    display: flex;
    flex-direction: column;
    /* Stack dots vertically */
    gap: 8px;
    /* Spacing between dots */
    justify-content: center;
    left: auto;
    /* Ensure no conflict with left: 0px */
}


.swiper-pagination-bullet-custom {
    width: 8px;
    /* Default size */
    height: 8px;
    background: #000;
    /* Default color */
    opacity: 0.2;
    /* Inactive opacity */
    border-radius: 50%;
    transition: background 0.3s, opacity 0.3s;
    /* Smooth transitions */
}

.swiper-pagination-bullet-custom.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-theme-color, #007aff);
    /* Active color */
}

/* Hide pagination on small screens */
@media (max-width: 991px) {
    .v-testimonial-slider .swiper-pagination {
        display: none !important;
    }
}

/* ---------------- Contact Us Modal Redesign ---------------- */
.contact-modal .modal-dialog {
    max-width: 880px;
}

.contact-modal__content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(10, 20, 40, 0.18);
    background: #ffffff;
}

.contact-modal__layout {
    display: flex;
    min-height: 420px;
}

.contact-modal__aside {
    flex: 0 0 38%;
    background: linear-gradient(135deg, #2a2e3a 0%, #34394a 55%, #2a2e3a 100%);
    color: #ffffff;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.contact-modal__aside::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -120px;
    top: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.contact-modal__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-modal__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-modal__subtitle {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 22px;
}

.contact-modal__list {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.contact-modal__infographic {
    margin: 12px 0 16px;
    height: 70%;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 26px rgba(8, 20, 38, 0.25);
    position: relative;
}

.contact-modal__infographic-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* display: block; */
    /* position: absolute; */
    /* inset: 0; */
}

.contact-modal__infographic-img--primary {
    animation: contactInfographicFloat 4.8s ease-in-out infinite, contactInfographicFadePrimary 10s ease-in-out infinite;
}

.contact-modal__infographic-img--secondary {
    opacity: 0;
    animation: contactInfographicFloat 4.8s ease-in-out infinite, contactInfographicFadeSecondary 10s ease-in-out infinite;
}

@keyframes contactInfographicFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

@keyframes contactInfographicFadePrimary {
    0%, 44% { opacity: 1; }
    50%, 94% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes contactInfographicFadeSecondary {
    0%, 44% { opacity: 0; }
    50%, 94% { opacity: 1; }
    100% { opacity: 0; }
}

.contact-modal__main {
    flex: 1;
    padding: 26px 30px 28px;
    /* background: #f8fafc; */
    background: white;
}

.contact-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-modal__headline {
    font-size: 22px;
    font-weight: 700;
    color: #0f1d33;
    margin-bottom: 4px;
}

.contact-modal__hint {
    font-size: 13px;
    color: #5a6b83;
    margin-bottom: 0;
}

.contact-modal__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #5a6b83;
    margin-bottom: 6px;
}

.contact-modal__input,
.contact-modal__textarea {
    border-radius: 12px;
    border: 1px solid #dfe6ef;
    background: #ffffff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__input {
    height: 44px;
}

.contact-modal__textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-modal__input:focus,
.contact-modal__textarea:focus {
    border-color: #1a6fa0;
    box-shadow: 0 0 0 3px rgba(26, 111, 160, 0.15);
}

.contact-modal__dropdown {
    position: relative;
}

.contact-modal__dropdown-trigger {
    width: 100%;
    height: 44px;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #22344a;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__dropdown-trigger:hover {
    border-color: #c7d5e6;
}

.contact-modal__dropdown-trigger[aria-expanded="true"] {
    border-color: #1a6fa0;
    box-shadow: 0 0 0 3px rgba(26, 111, 160, 0.15);
}

.contact-modal__dropdown-placeholder,
.contact-modal__dropdown-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 3.5rem;
}

.contact-modal__dropdown-placeholder {
    color: #8a97aa;
}

.contact-modal__dropdown-value {
    color: #22344a;
}

.contact-modal__dropdown-arrow {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-modal__dropdown-caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid #6b7a90;
    border-bottom: 2px solid #6b7a90;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-modal__dropdown-caret.is-open {
    transform: rotate(-135deg);
    border-color: #1a6fa0;
}

.contact-modal__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    background: #ffffff;
    border: 1px solid #dfe6ef;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(15, 29, 51, 0.14);
    max-height: 220px;
    overflow-y: auto;
    scroll-behavior: smooth;
    transform-origin: top center;
    animation: categoryDropdownIn 0.2s ease;
}

@keyframes categoryDropdownIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scaleY(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
    }
}

.contact-modal__dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.contact-modal__dropdown-menu::-webkit-scrollbar-thumb {
    background: #b9c7d8;
    border-radius: 10px;
}

.contact-modal__dropdown-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 14px;
    color: #22344a;
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-modal__dropdown-item:hover {
    background: #f2f7fc;
    color: #0f1d33;
}

.contact-modal__dropdown-empty {
    padding: 12px 14px;
    color: #7a8699;
    font-size: 13px;
}

.contact-modal__footer {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-modal__submit {
    border: 0;
    border-radius: 12px;
    height: 48px;
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #1a6fa0 0%, #22b49b 100%);
    box-shadow: 0 12px 30px rgba(26, 111, 160, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(26, 111, 160, 0.28);
}

.contact-modal__note {
    font-size: 12px;
    color: #7a8699;
}

.contact-success-modal__content {
    border-radius: 18px;
    border: 0;
    padding-bottom: 8px;
}

.contact-success-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(26, 111, 160, 0.12);
    color: #1a6fa0;
    font-weight: 600;
    margin-bottom: 14px;
}

.contact-success-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f1d33;
    margin-bottom: 6px;
}

.contact-success-modal__text {
    color: #5a6b83;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .contact-modal__layout {
        flex-direction: column;
    }

    .contact-modal__aside {
        flex: 1 1 auto;
        padding: 24px;
    }

    .contact-modal__main {
        padding: 22px 22px 26px;
    }

    .contact-modal__infographic {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}
