/* ============================================
   WINDOWS VISTA AERO GLASS DESIGN SYSTEM
   Complete Vista/XP Aesthetic
   ============================================ */

/* Vista Fonts */
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;500;600;700;800&display=swap');

/* Vista Color Palette */
:root {
    /* Vista Aero Glass Colors */
    --vista-blue: #0078D7;
    --vista-blue-light: #1E88E5;
    --vista-blue-dark: #005A9E;
    --vista-green: #00A86B;
    --vista-green-light: #00C853;
    --vista-glass-bg: rgba(240, 248, 255, 0.85);
    --vista-glass-border: rgba(255, 255, 255, 0.6);
    --vista-glass-shadow: rgba(0, 0, 0, 0.2);
    
    /* Vista Title Bar Colors */
    --vista-title-bg: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(200, 220, 240, 0.3) 100%
    );
    
    /* Vista Text Colors */
    --vista-text: #1A1A1A;
    --vista-text-light: #FFFFFF;
    --vista-text-muted: #666666;
    
    /* Vista Shadows */
    --vista-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.15);
    --vista-shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.2);
    --vista-shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Vista Glow */
    --vista-glow-blue: 0 0 20px rgba(0, 120, 215, 0.4);
    --vista-glow-green: 0 0 20px rgba(0, 168, 107, 0.4);
}

/* ============================================
   VISTA AERO GLASS WINDOW
   ============================================ */
.vista-window {
    background: var(--vista-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--vista-glass-border);
    border-radius: 8px;
    box-shadow: 
        var(--vista-shadow-strong),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

/* Vista Window Title Bar */
.vista-title-bar {
    background: var(--vista-title-bg);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    cursor: move;
    user-select: none;
}

.vista-title-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--vista-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.vista-window-controls {
    display: flex;
    gap: 8px;
}

.vista-control-btn {
    width: 21px;
    height: 21px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.2s;
    color: var(--vista-text);
    font-size: 11px;
}

.vista-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.vista-control-btn.close:hover {
    background: #E81123;
    color: white;
}

/* Vista Window Content */
.vista-window-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ============================================
   VISTA GLASS TEXT ELEMENTS
   ============================================ */
.vista-glass-text {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(240, 248, 255, 0.8) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(0, 120, 215, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: vistaTextGlow 3s ease-in-out infinite;
}

@keyframes vistaTextGlow {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(0, 120, 215, 0.3);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 0.7),
            0 0 30px rgba(0, 120, 215, 0.5);
    }
}

/* Vista Heading Styles */
.vista-h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--vista-text);
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(0, 120, 215, 0.4);
    letter-spacing: -0.5px;
    animation: vistaTextSlideIn 0.8s ease-out;
}

.vista-h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--vista-text);
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 120, 215, 0.3);
    letter-spacing: -0.3px;
    animation: vistaTextSlideIn 1s ease-out;
}

.vista-h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--vista-text);
    text-shadow: 
        0 1px 3px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(0, 120, 215, 0.3);
    animation: vistaTextSlideIn 1.2s ease-out;
}

.vista-body-text {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--vista-text);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

/* Vista Text Animations */
@keyframes vistaTextSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vistaTextFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.vista-text-animate {
    animation: vistaTextFadeIn 0.6s ease-out;
}

/* Vista Typing Effect */
.vista-typing {
    overflow: hidden;
    border-right: 2px solid var(--vista-blue);
    white-space: nowrap;
    animation: 
        vistaTyping 3s steps(40, end),
        vistaBlinkCursor 0.75s step-end infinite;
}

@keyframes vistaTyping {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes vistaBlinkCursor {
    from, to { border-color: transparent; }
    50% { border-color: var(--vista-blue); }
}

/* ============================================
   VISTA START MENU
   ============================================ */
.vista-start-menu {
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 300px;
    max-height: 500px;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.vista-start-menu.show {
    display: block;
    animation: vistaStartMenuSlide 0.3s ease-out;
}

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

.vista-start-menu-left {
    width: 200px;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.vista-start-menu-right {
    width: 100px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
}

.vista-start-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.2s;
    cursor: pointer;
}

.vista-start-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.vista-start-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* ============================================
   VISTA TASKBAR
   ============================================ */
.vista-taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: rgba(0, 120, 215, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 -2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
}

.vista-start-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
    color: white;
}

.vista-start-button:hover {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: scale(1.05);
}

.vista-taskbar-items {
    display: flex;
    gap: 4px;
    flex: 1;
}

.vista-taskbar-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.vista-taskbar-item:hover,
.vista-taskbar-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.vista-taskbar-item i {
    font-size: 16px;
}

/* ============================================
   VISTA BUTTONS
   ============================================ */
.vista-button {
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(200, 220, 240, 0.3) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: var(--vista-text);
    cursor: pointer;
    transition: all 0.2s;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vista-button:hover {
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(220, 240, 255, 0.4) 100%
    );
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        var(--vista-glow-blue);
}

.vista-button-primary {
    background: linear-gradient(to bottom,
        var(--vista-blue-light) 0%,
        var(--vista-blue) 50%,
        var(--vista-blue-dark) 100%
    );
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.vista-button-primary:hover {
    background: linear-gradient(to bottom,
        var(--vista-blue) 0%,
        var(--vista-blue-light) 50%,
        var(--vista-blue) 100%
    );
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        var(--vista-glow-blue);
}

/* ============================================
   VISTA ICONS
   ============================================ */
.vista-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 18px;
    color: var(--vista-text);
    transition: all 0.2s;
}

.vista-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: var(--vista-shadow-soft);
}

/* ============================================
   VISTA DESKTOP
   ============================================ */
.vista-desktop {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.vista-desktop-icons {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vista-desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.vista-desktop-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.vista-desktop-icon span {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    max-width: 80px;
}

.vista-icon-large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 24px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   VISTA WINDOWS CONTAINER
   ============================================ */
.vista-windows-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding-bottom: 60px;
}

.vista-window-main {
    animation: vistaWindowOpen 0.4s ease-out;
}

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

/* ============================================
   VISTA PROFILE SECTION
   ============================================ */
.vista-profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vista-profile-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.vista-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 120, 215, 0.4);
    object-fit: cover;
    animation: vistaProfileFloat 4s ease-in-out infinite;
}

.vista-profile-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 120, 215, 0.4) 0%, transparent 70%);
    animation: vistaGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

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

@keyframes vistaGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.vista-profile-info {
    flex: 1;
}

/* ============================================
   VISTA INFO PANEL
   ============================================ */
.vista-info-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vista-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vista-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.vista-info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vista-info-item strong {
    display: block;
    font-size: 12px;
    color: var(--vista-text-muted);
    margin-bottom: 4px;
}

.vista-info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--vista-text);
}

/* ============================================
   VISTA ACTIONS PANEL
   ============================================ */
.vista-actions-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vista-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

/* ============================================
   VISTA SOCIAL PANEL
   ============================================ */
.vista-social-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vista-social-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vista-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    color: var(--vista-text);
    transition: all 0.3s;
    min-width: 100px;
}

.vista-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        var(--vista-glow-blue);
    border-color: rgba(255, 255, 255, 0.5);
}

.vista-social-link i {
    font-size: 32px;
    color: var(--vista-blue);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.vista-social-link span {
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ============================================
   VISTA SYSTEM TRAY
   ============================================ */
.vista-system-tray {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    background: rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.vista-tray-item {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}

.vista-tray-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.vista-tray-time {
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: white;
    padding: 4px 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   VISTA RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .vista-start-menu {
        width: 100%;
        max-width: 300px;
    }
    
    .vista-taskbar {
        height: 56px;
        flex-wrap: wrap;
    }
    
    .vista-taskbar-items {
        flex-wrap: wrap;
    }
    
    .vista-taskbar-item span {
        display: none;
    }
    
    .vista-h1 {
        font-size: 32px;
    }
    
    .vista-h2 {
        font-size: 24px;
    }
    
    .vista-profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .vista-info-grid,
    .vista-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .vista-desktop-icons {
        display: none;
    }
    
    .vista-window {
        margin: 20px 10px !important;
        max-width: calc(100% - 20px) !important;
    }
}

/* ============================================
   VISTA FORM ELEMENTS
   ============================================ */
.vista-form-group {
    margin-bottom: 20px;
}

.vista-form-label {
    display: block;
    font-family: 'Segoe UI', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--vista-text);
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.vista-form-input,
.vista-form-textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: var(--vista-text);
    transition: all 0.2s;
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5);
}

.vista-form-input:focus,
.vista-form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--vista-blue);
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 10px rgba(0, 120, 215, 0.3);
}

.vista-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   VISTA CONTENT SECTIONS
   ============================================ */
.vista-content-section {
    margin-bottom: 30px;
}

.vista-content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ============================================
   VISTA PORTFOLIO ITEMS
   ============================================ */
.vista-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vista-portfolio-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.vista-portfolio-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        var(--vista-glow-blue);
    border-color: rgba(255, 255, 255, 0.4);
}

.vista-portfolio-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--vista-text);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.vista-portfolio-item .vista-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vista-text);
    margin: 4px 4px 4px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ============================================
   VISTA TESTIMONIAL CARDS
   ============================================ */
.vista-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vista-testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
}

.vista-testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        var(--vista-glow-green);
}

.vista-testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--vista-text);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.vista-testimonial-author {
    font-weight: 600;
    color: var(--vista-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

