/* Glassmorphism Container Base */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    border-radius: 16px !important;
    transition: all 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* Glass Form Inputs */
.glass-input {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(200, 200, 200, 0.3) !important;
    backdrop-filter: blur(4px);
    border-radius: 10px !important;
    padding: 12px 16px !important;
    transition: all 0.25s ease-in-out;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15) !important;
    outline: none;
}

/* Glowing Progress Bar */
.glass-progress-bg {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.glass-progress-fill {
    background: linear-gradient(90deg, #ffb703 0%, #fb8500 100%);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(251, 133, 0, 0.3);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Modern Stars */
.star-rating-wrapper .bi {
    transition: transform 0.2s ease, color 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(255, 183, 3, 0.2));
}

.star-rating-wrapper .bi:hover {
    transform: scale(1.25) rotate(-5deg);
}

/* Modern Review Item Cards */
.glass-review-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.25s ease;
}

.glass-review-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Modern Gradient Button */
.btn-glass-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.35);
    transition: all 0.25s ease;
}

.btn-glass-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(79, 70, 229, 0.5);
    color: #fff;
}