/* Liquid Glass Styles - Krauck Systems Website */

/* Background label in hero - liquid glass */
.hero-background-label {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    background: rgba(20, 30, 25, 0.75);
    backdrop-filter: blur(15px) saturate(140%);
    -webkit-backdrop-filter: blur(15px) saturate(140%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.hero-background-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-background-label i {
    margin-right: 6px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Status badge for hero cards - liquid glass */
.hero-status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.2));
    overflow: hidden;
}

.hero-status-badge::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.hero-badge-available {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(125, 179, 19, 0.5), rgba(125, 179, 19, 0.35));
    border: 1px solid rgba(125, 179, 19, 0.4);
}

.hero-badge-preparation {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(201, 169, 97, 0.5), rgba(201, 169, 97, 0.35));
    border: 1px solid rgba(201, 169, 97, 0.4);
}

.hero-badge-completed {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(16, 185, 129, 0.55), rgba(5, 150, 105, 0.4));
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.hero-status-badge.project-hero-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-status-badge.project-hero-badge::before {
    top: 50%;
    left: 50%;
}

.hero-status-badge.project-hero-badge i {
    font-size: 15px;
}

/* Project card badges - liquid glass */
.badge-available {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(125, 179, 19, 0.55), rgba(125, 179, 19, 0.4));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(125, 179, 19, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.2));
    position: relative;
    overflow: hidden;
}

.badge-available::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.badge-completed {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(100, 100, 100, 0.55), rgba(100, 100, 100, 0.4));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(100, 100, 100, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.2));
    position: relative;
    overflow: hidden;
}

.badge-completed::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.badge-preparation {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(201, 169, 97, 0.55), rgba(201, 169, 97, 0.4));
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(201, 169, 97, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.2));
    position: relative;
    overflow: hidden;
}

.badge-preparation::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

/* Hero CTA Buttons - liquid glass (matching nav bar style) */
.hero-cta-primary {
    padding: 16px 40px;
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background 0.1s ease, box-shadow 0.1s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary i {
    color: #7db313 !important;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1);
}

.hero-cta-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Reusable Liquid Glass Button Classes */
.btn-liquid-glass-green {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-liquid-glass-green i {
    color: #7db313 !important;
}

.btn-liquid-glass-green::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.btn-liquid-glass-green:hover {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1) !important;
}

.btn-liquid-glass-white {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-liquid-glass-white i {
    color: #7db313 !important;
}

.btn-liquid-glass-white::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.btn-liquid-glass-white:hover {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1) !important;
}

.btn-liquid-glass-border {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-liquid-glass-border i {
    color: #7db313 !important;
}

.btn-liquid-glass-border::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.btn-liquid-glass-border:hover {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1) !important;
}

.btn-liquid-glass-dark {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.15));
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-liquid-glass-green,
.btn-liquid-glass-white,
.btn-liquid-glass-border,
.btn-liquid-glass-dark {
    justify-content: center;
    text-align: center;
}

.btn-liquid-glass-dark i {
    color: #7db313 !important;
}

.btn-liquid-glass-dark::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.btn-liquid-glass-dark:hover {
    background: linear-gradient(var(--glass-angle, 135deg), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: rgba(125, 179, 19, 1) !important;
}

/* Timeline Glassmorphism Components - Enhanced Liquid Glass Effect */
.timeline-card {
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(255, 255, 255, 0.55),
        rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.2));
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.4);
    border-radius: 50%;
}

.timeline-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(255, 255, 255, 0.65),
        rgba(255, 255, 255, 0.45));
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(125, 179, 19, 0.4);
}

.timeline-icon-badge {
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(125, 179, 19, 0.5),
        rgba(90, 138, 15, 0.35));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(125, 179, 19, 0.4);
    box-shadow: 0 4px 15px rgba(125, 179, 19, 0.3), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-icon-badge::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.6);
    border-radius: 50%;
}

.timeline-icon-badge:hover {
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(125, 179, 19, 0.6),
        rgba(90, 138, 15, 0.45));
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(125, 179, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.timeline-icon-badge-neutral {
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(107, 114, 128, 0.5),
        rgba(75, 85, 99, 0.35));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(107, 114, 128, 0.35);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.25), inset 0 1px 0 rgba(255, 255, 255, var(--glass-highlight, 0.25));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-icon-badge-neutral::before {
    content: '';
    position: absolute;
    top: var(--glass-shine-y, 50%);
    left: var(--glass-shine-x, 50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 30%, transparent 70%);
    pointer-events: none;
    transition: top 0.2s ease, left 0.2s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: var(--glass-shine-opacity, 0.5);
    border-radius: 50%;
}

.timeline-icon-badge-neutral:hover {
    background: linear-gradient(var(--glass-angle, 135deg),
        rgba(107, 114, 128, 0.6),
        rgba(75, 85, 99, 0.45));
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(107, 114, 128, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.timeline-summary-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.5));
    backdrop-filter: blur(40px) saturate(200%) brightness(105%);
    -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(105%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 20px 60px rgba(31, 38, 135, 0.15),
        0 10px 30px rgba(31, 38, 135, 0.1),
        inset 0 2px 8px rgba(255, 255, 255, 0.9),
        inset 0 -2px 8px rgba(255, 255, 255, 0.5);
}

.timeline-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.timeline-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.2);
}

.timeline-image-container img {
    transition: all 0.6s ease;
}

.timeline-image-container:hover img {
    transform: scale(1.05);
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
    .hero-status-badge {
        top: 20px;
        right: 20px;
        padding: 8px 16px;
        font-size: 10px;
    }
}
