/* CSS de layouts/cliente.blade.php — extraído do bloco <style> inline (§4.3/§5.3). */

:root {
    --primary-color: #1e3a8a;
    --primary-hover: #1e40af;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --accent-color: #ff6b6b;
    --secondary-color: #10b981;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gray-color: #e5e7eb;
    --bs-body-bg: #ffffff;
    --bs-body-font-family: 'Nunito', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --bs-primary-bg-subtle: #e0e7ff;
}

.page-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
}
.page-breadcrumb .breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
}
.page-breadcrumb .breadcrumb-item.active {
    color: var(--gray-600);
}

body {
    font-family: var(--bs-body-font-family);
    background-color: var(--bs-body-bg);
    color: var(--gray-800);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    transition: background-color var(--transition-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.airbnb-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    /* Reduced from 1100 to be below Bootstrap modals (1055) */
    background: var(--bs-body-bg);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.airbnb-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding-inline: clamp(1rem, 5vw, 10rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    gap: 6px;
    /* Reduced gap */
    transition: all var(--transition-fast);
}

.header-logo span {
    font-weight: 800;
    color: #1e3a8a;
    /* Gradient removed for solid color match */
    /* background: linear-gradient(135deg, var(--primary-color), #4f46e5); */
    /* -webkit-background-clip: text; */

    letter-spacing: -0.5px;
}

.header-logo:hover {
    transform: translateY(-1px);
}

.header-logo img {
    height: 28px;
    max-height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.header-nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 16px;
    position: relative;
    transition: all var(--transition-fast);
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-nav-link:hover {
    color: var(--primary-color);
}

.header-nav-link.active {
    color: var(--primary-color);
}

.header-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
}

.header-nav-link--about {
    background-color: var(--gray-100);
    border: 1px solid transparent;
}

.header-nav-link--about:hover {
    border-color: var(--gray-300);
    background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] .header-nav-link--about {
    background-color: var(--gray-200);
}

.header-user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-full);
    background: var(--bs-body-bg);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    color: var(--gray-800);
}

.user-menu-button:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8125rem;
}

.user-menu-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-chevron {
    font-size: 0.75rem;
    color: var(--gray-500);
    transition: transform 0.2s ease;
}

.dropdown.show .user-menu-chevron {
    transform: rotate(180deg);
}

/* Menu dropdown do usuário (Meu perfil, Configurações, Sair) */
.user-dropdown-menu {
    min-width: 260px;
    padding: 0;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 10px !important;
}

.user-dropdown-header-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-dropdown-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(79, 70, 229, 0.06));
    border-bottom: 1px solid var(--gray-200);
}

.user-dropdown-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.user-dropdown-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-email {
    font-size: 0.8rem;
    margin-top: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown-divider {
    margin: 0.25rem 0;
    border-color: var(--gray-200);
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-800);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.user-dropdown-item i {
    font-size: 1.15rem;
    width: 1.25rem;
    text-align: center;
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.user-dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.user-dropdown-item:hover i {
    color: var(--primary-color);
}

.user-dropdown-item-logout {
    color: var(--danger-color) !important;
}

.user-dropdown-item-logout i {
    color: var(--danger-color);
}

.user-dropdown-item-logout:hover {
    background-color: rgba(220, 53, 69, 0.08);
    color: var(--danger-color) !important;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--bs-body-bg);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.25rem;
}

.theme-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.main-wrapper {
    flex: 1;
    min-height: calc(100vh - 80px);
}

.main-content {
    max-width: 100%;
    margin: 0 auto;
    padding-block: clamp(2rem, 4vh, 4rem);
    padding-inline: clamp(1rem, 5vw, 10rem);
}

/* Notificações */
.notification-dropdown {
    min-width: 380px;
    max-width: 400px;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}

.notification-header {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-body {
    max-height: 350px;
    overflow-y: auto;
}

.notification-item {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transition: background-color 0.2s ease;
    display: flex;
    cursor: pointer;
}

.notification-item:hover {
    background-color: var(--gray-100);
}

.notification-item.unread {
    background-color: #f0f9ff;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.notification-icon.primary {
    background-color: #e0e7ff;
    color: var(--primary-color);
}

.notification-icon.success {
    background-color: #d1fae5;
    color: var(--success-color);
}

.notification-icon.warning {
    background-color: #fef3c7;
    color: var(--warning-color);
}

.notification-icon.danger {
    background-color: #fee2e2;
    color: var(--danger-color);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.notification-footer {
    padding: 0.75rem;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

/* Fade in */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

[data-bs-theme="dark"] {
    --bs-body-bg: #0f172a;
    --gray-100: #1e293b;
    --gray-200: #334155;
    --gray-300: #475569;
    --gray-800: #f8fafc;
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

    .header-container {
        padding: 0 20px;
    }

    .main-content {
        padding: 32px 20px;
    }
}

/* --- ANIMAÇÕES PREMIUM --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.animate-up {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-in {
    animation: fadeIn 0.5s ease-out both;
}

/* --- UTILITÁRIOS DE HOVER --- */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shimmer-effect:hover::after {
    left: 100%;
}

/* Botão customizado para ícones (notificações) */
.btn-custom-icon {
    border: 1px solid var(--gray-300);
    background: var(--bs-body-bg);
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.btn-custom-icon:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.05);
    /* Fallback */
}

/* Dark Mode Overrides Específicos */
[data-bs-theme="dark"] .btn-custom-icon {
    background-color: var(--gray-100);
    /* Slightly lighter than body */
    border-color: var(--gray-200);
    color: var(--gray-400);
}

[data-bs-theme="dark"] .btn-custom-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--gray-200);
}

[data-bs-theme="dark"] .notification-dropdown {
    background-color: var(--bs-body-bg);
    border: 1px solid var(--gray-200);
}

[data-bs-theme="dark"] .notification-header,
[data-bs-theme="dark"] .notification-footer {
    background-color: var(--bs-body-bg);
    border-color: var(--gray-200);
}

[data-bs-theme="dark"] .notification-item {
    border-color: var(--gray-200);
    background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] .notification-item:hover {
    background-color: var(--gray-100);
}

[data-bs-theme="dark"] .notification-item.unread {
    background-color: rgba(30, 58, 138, 0.15);
    /* Primary subtle dark */
}

[data-bs-theme="dark"] .notification-title {
    color: var(--gray-800);
    /* Actually light due to var inversion logic in root or just consistent text color */
}

/* Menu do usuário - modo escuro */
[data-bs-theme="dark"] .user-menu-label {
    color: var(--gray-800);
}

[data-bs-theme="dark"] .user-menu-chevron {
    color: var(--gray-400);
}

[data-bs-theme="dark"] .user-dropdown-menu {
    background-color: var(--bs-body-bg);
    border-color: var(--gray-200);
}

[data-bs-theme="dark"] .user-dropdown-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border-bottom-color: var(--gray-200);
}

[data-bs-theme="dark"] .user-dropdown-name {
    color: var(--gray-800);
}

[data-bs-theme="dark"] .user-dropdown-email {
    color: var(--gray-500);
}

[data-bs-theme="dark"] .user-dropdown-divider {
    border-color: var(--gray-200);
}

[data-bs-theme="dark"] .user-dropdown-item {
    color: var(--gray-800);
}

[data-bs-theme="dark"] .user-dropdown-item i {
    color: var(--gray-500);
}

[data-bs-theme="dark"] .user-dropdown-item:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

[data-bs-theme="dark"] .user-dropdown-item-logout:hover {
    background-color: rgba(239, 68, 68, 0.15);
}

/* --- MOBILE FIRST NAVIGATION --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bs-body-bg);
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0 12px 0;
    /* Nova redução: de 8/16 para 6/12 */
    z-index: 1030;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.75rem;
    /* Reduzido de 0.8rem */
    gap: 2px;
    /* Reduzido de 3px */
    transition: color 0.2s;
    flex: 1 1 0;
    min-width: 0;
}

.mobile-bottom-nav .nav-item span {
    font-weight: 500;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.3rem;
    /* Reduzido de 1.4rem */
    margin-bottom: 0px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-bottom-nav .nav-item.active i {
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .mobile-bottom-nav {
    background: rgba(15, 23, 42, 0.95);
    border-top-color: var(--gray-200);
}

/* Ajuste para não esconder conteúdo atrás da barra */
@media (max-width: 992px) {
    body {
        padding-bottom: 60px;
    }

    .main-content {
        padding: 20px 16px !important;
    }

    .header-container {
        padding: 0 16px;
        height: 64px;
    }

    .header-logo {
        font-size: 1.25rem;
        gap: 4px;
        min-width: 0;
    }

    .header-logo i {
        font-size: 1.25rem;
    }

    .header-logo img {
        height: 22px;
        max-height: 22px;
        max-width: 90px;
    }
}

/* Top modal mobile: largura total, altura só do conteúdo (header + 2 botões), sem espaço em branco */
#authMobileTopModal.offcanvas-top,
#authMobileTopModal.offcanvas-top.show,
#authMobileTopModal.offcanvas-top.showing {
    --bs-offcanvas-height: auto;
    z-index: 2000 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: fit-content !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: none;
    border-top: none;
    border-bottom: 1px solid var(--gray-200);
}

#authMobileTopModal .offcanvas-body {
    flex: 0 0 auto !important;
    padding: 1rem 1.5rem 1.5rem;
    overflow: visible;
}

#authMobileTopModal .offcanvas-header {
    flex: 0 0 auto;
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(79, 70, 229, 0.06));
}

#authMobileTopModal .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

#authMobileTopModal .auth-mobile-choice {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.9375rem;
}

[data-bs-theme="dark"] #authMobileTopModal.offcanvas-top {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Drawer Lateral (Offcanvas) Personalizado */
.custom-offcanvas {
    z-index: 2000 !important;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow: hidden;
    width: 85% !important;
    /* Não preenche 100% */
    max-width: 320px;
}

.custom-offcanvas .btn-close {
    background-color: var(--gray-100);
    padding: 0.8rem;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.2s;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.custom-offcanvas .btn-close:hover {
    background-color: var(--gray-200);
    transform: rotate(90deg);
}

.offcanvas-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(79, 70, 229, 0.05));
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.offcanvas-title {
    font-weight: 700;
    color: var(--primary-color);
}

.offcanvas-body {
    padding: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: var(--gray-800);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.mobile-menu-link:active {
    background-color: var(--gray-100);
}

.mobile-menu-link i {
    font-size: 1.25rem;
    width: 32px;
    color: var(--gray-500);
}

.mobile-menu-link.active {
    color: var(--primary-color);
    background: rgba(30, 58, 138, 0.05);
    border-left: 4px solid var(--primary-color);
}

.mobile-menu-link.active i {
    color: var(--primary-color);
}

.mobile-user-profile {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-100);
    margin-bottom: 8px;
}

.mobile-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Input Base Otimizado para Mobile */
input,
select,
textarea {
    font-size: 16px !important;
    /* Evita zoom no iOS */
}

/* --- UX ENHANCEMENTS & MOBILE FEEDBACK --- */
@media (max-width: 991px) {

    .btn,
    .property-card,
    .stat-card,
    .quick-action,
    .nav-item,
    .card-radio-btn {
        transition: transform 0.1s ease-out;
    }

    .btn:active,
    .property-card:active,
    .stat-card:active,
    .quick-action:active,
    .nav-item:active,
    .card-radio-btn:active {
        transform: scale(0.97) !important;
    }
}

/* --- SKELETON SCREEN ANIMATIONS --- */
.skeleton-card {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

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

    100% {
        background-position: -200% 0;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* --- PAYMENT PROCESSING OVERLAY --- */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--bs-body-bg-rgb), 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.processing-overlay.active {
    visibility: visible;
    opacity: 1;
}

.processing-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--gray-200);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- FOOTER SOCIAL LINKS --- */
.footer-social-link {
    color: var(--gray-600);
    background-color: var(--gray-100);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

[data-bs-theme="dark"] .footer-social-link {
    color: var(--gray-400);
    background-color: var(--gray-800);
}

.footer-social-link:hover {
    color: #ffffff;
    background-color: var(--primary-color);
    transform: scale(1.1) translateY(-4px);
    box-shadow: var(--shadow-md);
}

.footer-link {
    transition: color 0.2s ease-in-out;
    color: var(--gray-600);
    text-decoration: none;
}

[data-bs-theme="dark"] .footer-link {
    color: var(--gray-400);
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
