* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

/* Анимация автобусов Валера и Аврора */
.bus-moving {
    animation: drive 3s ease-in-out infinite;
    color: var(--valera-color);
}

@keyframes drive {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

/* Навигация */
.navbar {
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
}

.navbar-brand {
    font-weight: 600;
    color: var(--valera-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--valera-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ИСПРАВЛЕНИЕ для выпадающего меню профиля */
.navbar .dropdown-menu {
    z-index: var(--z-dropdown, 100) !important;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
    min-width: 200px;
}

.navbar .dropdown-item {
    padding: 0.7rem 1.2rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    color: white !important;
    transform: translateX(5px);
}

.navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

/* Кнопки */
.btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    border: none;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    background: linear-gradient(45deg, var(--aurora-color), var(--valera-color));
}

.btn-outline-primary {
    border: 2px solid var(--valera-color);
    color: var(--valera-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    border-color: transparent;
    transform: translateY(-2px);
}

/* Карточки */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    transition: all 0.3s ease;
    height: 200px;
    object-fit: cover;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Категории */
.category-badge {
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

/* Ссылки */
a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Хлебные крошки */
.breadcrumb {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1rem;
}

.breadcrumb-item a {
    color: var(--valera-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--aurora-color);
    text-decoration: underline;
}

/* Формы */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--valera-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

/* Алерты */
.alert {
    border-radius: 10px;
    border: none;
}

.alert-success {
    background: linear-gradient(45deg, #d4edda, #c3e6cb);
    color: #155724;
}

.alert-warning {
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    color: #856404;
}

.alert-danger {
    background: linear-gradient(45deg, #f8d7da, #f5c6cb);
    color: #721c24;
}

/* ===== FOOTER ===== */
/* Mobile-first: base styles are mobile, desktop overrides in @media (min-width: 768px) */
.footer {
    background: var(--color-bg, #ffffff);
    border-top: 1px solid var(--color-border, #dee2e6);
    color: var(--color-text, #2c3e50);
    margin-top: 2rem;
    padding: 1.5rem 0 0;
}

.footer a {
    color: var(--color-text-muted, #6c757d);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--color-valera, #4a90e2);
}

.footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

/* Footer brand — scoped under .footer to avoid collision with social_premium.css */
.footer .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border, #dee2e6);
    margin-bottom: 1.5rem;
}

.footer .footer-brand-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text, #2c3e50);
    margin-bottom: 0.25rem;
}

.footer .footer-brand-info p {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--color-text-muted, #6c757d);
    margin-bottom: 0;
    max-width: 320px;
}

/* Social icons — scoped under .footer to avoid collision with social_premium.css */
.footer .footer-social {
    display: flex;
    gap: 12px;
}

.footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer .footer-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-social-vk {
    background: #0077ff;
    color: #fff !important;
}

.footer-social-tg {
    background: #26a5e4;
    color: #fff !important;
}

.footer-social-wa {
    background: #25d366;
    color: #fff !important;
}

/* Footer links — mobile: single column with accordions */
.footer-links {
    display: block;
    padding-bottom: 0;
}

.footer-links-section {
    border-bottom: 1px solid var(--color-border, #dee2e6);
}

/* Accordion base styles (mobile default) */
.footer-accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    font-size: var(--font-size-sm, 0.875rem);
    font-weight: 600;
    color: var(--color-text, #2c3e50);
    cursor: pointer;
    list-style: none;
    user-select: none;
    min-height: 44px;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-muted, #6c757d);
}

.footer-accordion[open] summary::after {
    content: '\2212';
}

.footer-accordion .footer-accordion-content {
    padding-bottom: 0.75rem;
}

.footer-accordion .footer-accordion-content li {
    padding: 0.25rem 0;
}

.footer-links ul li a {
    font-size: var(--font-size-sm, 0.875rem);
    padding: 2px 0;
    display: inline-block;
}

/* Footer muted text (replaces inline styles) */
.footer-text-muted {
    color: var(--color-text-muted, #6c757d);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid var(--color-border, #dee2e6);
    padding: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.footer-bottom-copy {
    font-size: var(--font-size-sm, 0.875rem);
    color: var(--color-text-muted, #6c757d);
    margin: 0;
}

.footer-bottom-legal {
    display: flex;
    gap: 1rem;
    order: -1;
}

.footer-bottom-legal a {
    font-size: var(--font-size-sm, 0.875rem);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.6;
}

/* ===== FOOTER DESKTOP OVERRIDES ===== */
@media (min-width: 768px) {
    .footer {
        padding: 2.5rem 0 0;
        margin-top: 4rem;
    }

    .footer .footer-brand {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* Links grid — 3 columns */
    .footer-links {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }

    .footer-links-section {
        border-bottom: none;
    }

    /* Style accordion summary as heading on desktop */
    .footer-accordion summary {
        pointer-events: none;
        cursor: default;
        padding: 0;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .footer-accordion summary::after {
        display: none;
    }

    .footer-accordion .footer-accordion-content {
        padding-bottom: 0;
    }

    .footer-accordion .footer-accordion-content li {
        padding: 0;
    }

    /* Bottom bar: horizontal layout */
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 1rem 0;
    }

    .footer-bottom-legal {
        order: 0;
    }
}

/* Анимации загрузки */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* ==================== CLS ОПТИМИЗАЦИИ (Cumulative Layout Shift) ==================== */

/* Резервирование места для изображений (предотвращает сдвиг при загрузке) */
img {
    height: auto;
    max-width: 100%;
}

/* Aspect ratio для карточек изображений (предотвращает CLS) */
.card-img-top {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #f0f0f0; /* Placeholder цвет */
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

img[loading="lazy"].loaded {
    animation: none;
    background: none;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Фиксированные размеры для критических элементов */
.navbar {
    min-height: 66px;
    z-index: var(--z-navbar, 300);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .navbar {
        min-height: 76px;
    }
}

/* ==================== /CLS ОПТИМИЗАЦИИ ==================== */

/* Адаптивность (mobile-first base) */
.container-fluid {
    padding: 0 15px;
}

.card {
    margin-bottom: 1rem;
}

.btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

@media (min-width: 769px) {
    .container-fluid {
        padding: 0 calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    }

    .card {
        margin-bottom: 0;
    }

    .btn {
        font-size: 1rem;
        padding: .375rem .75rem;
    }
}

/* Специальные эффекты */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.text-gradient {
    background: linear-gradient(45deg, var(--valera-color), var(--aurora-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Улучшения для мобильных устройств (mobile-first base) */
.navbar-brand {
    font-size: 1.1rem;
}

.navbar-brand img {
    height: 40px !important;
}

.card-body {
    padding: 1rem;
}

/* Full-width buttons only inside content areas on mobile */
.card .btn,
.modal-body .btn,
.form-group .btn,
.content-section .btn {
    width: 100%;
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-brand img {
        height: 50px !important;
    }

    .card-body {
        padding: var(--bs-card-spacer-y, 1rem) var(--bs-card-spacer-x, 1rem);
    }

    .card .btn,
    .modal-body .btn,
    .form-group .btn,
    .content-section .btn {
        width: auto;
        margin-bottom: 0;
    }
}

/* Анимации появления */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для tour_detail sticky sidebar */
.sticky-top {
    position: sticky;
    top: 100px;
    z-index: var(--z-sticky, 200) !important;
}

/* Убеждаемся что dropdown всегда поверх */
.dropdown-menu.show {
    z-index: var(--z-dropdown, 100) !important;
    position: absolute !important;
}

/* ===== СТИЛИ ДЛЯ АВТОБУСОВ ВАЛЕРА И АВРОРА ===== */

/* Карточки автобусов с фразами */
.bus-card-valera {
    background: linear-gradient(135deg, var(--valera-color) 0%, #1e3c72 100%);
    color: white !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bus-card-aurora {
    background: linear-gradient(135deg, var(--aurora-color) 0%, #ff4757 100%);
    color: white !important;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bus-card-valera:hover,
.bus-card-aurora:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.bus-card-valera p,
.bus-card-aurora p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.bus-card-valera strong,
.bus-card-aurora strong {
    color: white !important;
    font-weight: 600;
}

/* Информация о водителях/автобусах */
.driver-info {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin: 5px 5px 5px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.driver-valera {
    background: rgba(74, 144, 226, 0.15);
    color: var(--valera-color) !important;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.driver-aurora {
    background: rgba(255, 107, 157, 0.15);
    color: var(--aurora-color) !important;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.driver-valera:hover,
.driver-aurora:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Иконки автобусов */
.bus-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}


/* Стили для badge автобусов */
.bus-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
}

.bus-badge.bus-valera {
    background: rgba(74, 144, 226, 0.2);
    color: var(--valera-color);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.bus-badge.bus-aurora {
    background: rgba(255, 107, 157, 0.2);
    color: var(--aurora-color);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

/* Анимации для автобусов */
.bus-character {
    animation: busFloat 3s ease-in-out infinite;
}

@keyframes busFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Эмоции автобусов */
.bus-emotion-happy {
    color: #4CAF50;
    animation: bounce-bus 1s infinite;
}

.bus-emotion-excited {
    color: #FF9800;
    animation: wiggle 0.5s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes bounce-bus {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* ===== ИСПРАВЛЕНИЕ ДЛЯ КНОПКИ КАЛЕНДАРЬ ===== */

/* Кнопка календарь на главной странице */
.btn-outline-light {
    color: #4a90e2 !important;
    border-color: #4a90e2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.2);
}

.btn-outline-light:hover {
    color: white !important;
    background-color: #4a90e2 !important;
    border-color: #4a90e2 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-outline-light:focus,
.btn-outline-light:active {
    color: white !important;
    background-color: #3d7bc6 !important;
    border-color: #3d7bc6 !important;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.5);
}

/* === ПОДДЕРЖКА НОВОГО ДИЗАЙНА === */

/* Отступ для fixed navbar */
body {
    padding-top: 66px; /* Высота навбара (мобильный) */
}

/* Анимация логотипа */
.navbar-brand {
    transition: all 0.3s ease;
}

/* Плавные переходы для навбара */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Поддержка glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Анимации для элементов */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Градиентные кнопки */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: white;
}

/* Поддержка современных карточек */
.modern-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Респонсивность (mobile-first base) */
.hero-modern {
    min-height: 70vh !important;
}

@media (min-width: 769px) {
    body {
        padding-top: 76px; /* Высота навбара (десктоп) */
    }

    .hero-modern {
        min-height: 100vh !important;
    }
}

/* ===== MOBILE OVERLAY MENU ===== */

/* Fix stacking context: navbar (z:300) traps menu (z:450) below backdrop (z:400).
   When menu is open, elevate navbar so menu renders above backdrop. */
body.mobile-menu-open .navbar {
    z-index: var(--z-menu, 450);
}

/* Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay, 400);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* On mobile: transform navbar-collapse into fullscreen overlay */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed !important;
        top: 0;
        right: 0;
        bottom: 0;
        width: 85%;
        max-width: 360px;
        background: #fff;
        z-index: var(--z-menu, 450);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        padding: 1.5rem;
        padding-top: 80px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        display: block !important; /* Override Bootstrap collapse */
    }

    .navbar-collapse.mobile-open {
        transform: translateX(0);
    }

    /* Close button (added via JS) */
    .mobile-menu-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-color);
        cursor: pointer;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.2s ease;
    }

    .mobile-menu-close-btn:hover {
        background: var(--light-bg);
    }

    /* Nav links in mobile: full-width, large touch targets */
    .navbar-collapse .nav-link {
        padding: 0.75rem 0 !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-collapse .nav-link::after {
        display: none; /* Remove underline animation on mobile */
    }

    .navbar-collapse .nav-link:hover {
        transform: none; /* No Y shift on mobile */
    }

    /* Hide socials and partner button from overlay menu — they're in the tab bar bottom sheet now */
    .navbar-collapse .d-flex.gap-2.ms-3,
    .navbar-collapse .ms-2 {
        display: none;
    }

    /* Dropdown menu inline on mobile */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        border: none;
        padding-left: 1rem;
        background: transparent;
    }

    .navbar-collapse .dropdown-item {
        padding: 0.75rem 0.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* ===== TOUCH TARGET MINIMUMS (WCAG / Apple HIG: 44x44px) ===== */
@media (max-width: 991px) {
    .navbar .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Chat icon in navbar */
    .nav-link .fas.fa-comments {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Focus states для accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid #4F46E5;
    outline-offset: 2px;
}
.btn:focus-visible, .form-control:focus-visible {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}
