/* Glass Panel - Navigation and larger containers */
.glass-panel {
    background: rgba(22, 36, 37, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(144, 244, 249, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

nav.nav-scrolled {
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
    border-color: rgba(144, 244, 249, 0.2);
}

/* Glass Card - Interactive cards */
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(144, 244, 249, 0.4);
    box-shadow: 0 0 20px rgba(144, 244, 249, 0.15);
    transform: translateY(-5px);
}

/* Glass Input - Form fields */
input.glass-input,
textarea.glass-input,
select.glass-input {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #0B1213 !important;
    backdrop-filter: blur(5px);
    -webkit-text-fill-color: #0B1213;
    transition: all 0.3s ease;
}

input.glass-input:focus,
textarea.glass-input:focus,
select.glass-input:focus {
    background: rgba(11, 18, 19, 0.9) !important;
    border-color: rgba(144, 244, 249, 0.6);
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 0 15px rgba(144, 244, 249, 0.1);
    outline: none;
}

input.glass-input::placeholder,
textarea.glass-input::placeholder {
    color: rgba(11, 18, 19, 0.55) !important;
}

input.glass-input:focus::placeholder,
textarea.glass-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

select.glass-input option {
    background-color: #ffffff;
    color: #0B1213;
}

/* Glass Button - Filter buttons */
.glass-btn {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glass-btn:hover,
.glass-btn.active {
    background: rgba(144, 244, 249, 0.1);
    border-color: rgba(144, 244, 249, 0.3);
    color: #90f4f9;
}

/* Neon Text Effect */
.neon-text {
    text-shadow: 0 0 10px rgba(144, 244, 249, 0.5);
}

/* Ambient Glow Background */
.ambient-glow {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 244, 249, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Map Container for Contact Page */
.map-container {
    background-image: url('../assets/images/external/contact-map-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    filter: invert(1) hue-rotate(180deg);
}

/* Process Line */
.process-line {
    background: linear-gradient(90deg, transparent 0%, rgba(145, 244, 249, 0.3) 50%, transparent 100%);
}

/* Primary Button Glow */
.btn-primary-glow {
    box-shadow: 0 0 20px rgba(144, 244, 249, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(144, 244, 249, 0.5);
}

/* Gradient Border */
.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(144, 244, 249, 0.3), rgba(59, 130, 246, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Glass Badge */
.glass-badge {
    background: rgba(144, 244, 249, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(144, 244, 249, 0.2);
}

/* Icon Container */
.icon-container {
    background: linear-gradient(135deg, rgba(144, 244, 249, 0.1) 0%, rgba(144, 244, 249, 0.05) 100%);
    border: 1px solid rgba(144, 244, 249, 0.2);
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(144, 244, 249, 0.15);
}

/* Social Button */
.social-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #90f4f9;
    border-color: #90f4f9;
    color: #0B1213;
}

/* Form Checkbox */
.glass-checkbox {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-checkbox:checked {
    background: #90f4f9;
    border-color: #90f4f9;
}

/* Decorative Line */
.decorative-line {
    background: linear-gradient(90deg, transparent, rgba(144, 244, 249, 0.5), transparent);
    height: 1px;
}

/* Card Divider */
.card-divider {
    background: linear-gradient(90deg, rgba(144, 244, 249, 0.5), transparent);
    height: 1px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.glass-card:hover .card-divider {
    opacity: 1;
}
