/* ===== GLOBALNE STYLE & TŁO ===== */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
}

#hero {
    position: relative;
    overflow: hidden;
}

#background-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#background-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#background-embede {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#background-embede iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.7;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 100rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: rgba(139, 92, 246, 0.8); /* Fioletowy z przezroczystością */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
}

#background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#background-overlaye {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

h1, h2, h3 {
    letter-spacing: -0.05em;
}

p {
    opacity: 1;
}

/* Nowa, animowana nawigacja */
.nav-link {
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
    position: relative; /* Potrzebne dla pseudoelementu ::after */
    padding-bottom: 4px; /* Robi miejsce na podkreślenie */
}
.nav-link:hover {
    opacity: 1;
    color: #ffffff;
}

/* Linia podkreślenia */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Na starcie linia ma zerową szerokość */
    height: 2px;
    background-color: #a855f7; /* Kolor fioletowy (violet-500 z Tailwind) */
    transition: width 0.3s ease-in-out; /* Animacja "rysowania" linii */
}

/* Po najechaniu myszką, linia rozszerza się do 100% */
.nav-link:hover::after {
    width: 100%;
}

/* Styl dla aktywnego linku (na podstronie, na której jesteśmy) */
.nav-link.active {
    opacity: 1;
    color: #ffffff;
}

.nav-link.active::after {
    width: 100%; /* Aktywny link ma od razu pełne podkreślenie */
}

/* ===== STYL KART: GLASSMORPHISM ===== */
.glassmorphism {
    background: rgba(16, 16, 16, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

/* ===== STYL PRZYCISKÓW: NEUMORPHISM 3D ===== */
.neumorphism-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    background: linear-gradient(145deg, #1e1e1e, #181818);
    color: #a3a3a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 5px 5px 10px #0c0c0c, -5px -5px 10px #2a2a2a;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255,255,255,0.05);
}

.neumorphism-button:hover {
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 
        7px 7px 15px #0c0c0c, 
        -7px -7px 15px #2a2a2a,
        inset 0 0 20px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.4);
}

/* ===== PRZYKLEJONA NAWIGACJA Z ROZMYCIEM ===== */
/* ===== PRZYKLEJONA NAWIGACJA Z ROZMYCIEM ===== */
header.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== MENU MOBILNE ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.is-open {
    transform: translateX(0);
}

/* ===== ANIMACJE ===== */
.animate-on-load {
    animation: fadeInUp 1s 0.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-child {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-child.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FAQ ACCORDION ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

/* ===== SEKCJA CENNIK - NOWE TŁO ===== */
#cennik {
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/background-wizualizacj.jpg');
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ===== KONTENER SPLINE 3D ===== */
.spline-container {
    position: relative;
    aspect-ratio: 1 / 1; 
}

.spline-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ===== KOREKTA NA NACHODZĄCY NAVBAR ===== */
section[id] {
    scroll-margin-top: 100px;
}

/* Zaślepka do ukrycia logo Spline */
.logo-cover {
    position: absolute;
    bottom: 0px;      /* Odległość od dolnej krawędzi */
    right: 0px;       /* Odległość od prawej krawędzi */
    width: 250px;       /* Szerokość zaślepki */
    height: 60px;      /* Wysokość zaślepki */
    background-color: #000000; /* Kolor tła strony */
    z-index: 10;       /* Upewnia się, że jest na wierzchu */
}

/* ====================================================== */
/* NOWE STYLE DLA INTERAKTYWNEGO OKNA I EFEKTÓW "GLOW"    */
/* ====================================================== */

/* Ulepszony styl kart z efektem "glow" */
.glassmorphism:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.3), 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

/* Aktywny link w nawigacji */
.nav-link.active {
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.7);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8B5CF6; /* Kolor violet-500 */
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
}
.nav-link {
    position: relative;
    transition: opacity 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Styl okna aplikacji macOS */
.macos-window {
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.7), rgba(25, 25, 25, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    color: #e0e0e0;
    position: relative; /* Ważne dla przeciągania */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.macos-window:hover {
     box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(139, 92, 246, 0.3);
     transform: translateY(-5px);
}

.macos-titlebar {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 40px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: grab; /* Zmień kursor na "chwytający" */
}
.macos-titlebar:active {
    cursor: grabbing; /* Zmień kursor podczas przeciągania */
}

.macos-buttons {
    display: flex;
    gap: 8px;
    padding-right: 12px;
}

.macos-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.2);
}

.btn-red { background-color: #ff5f56; }
.btn-yellow { background-color: #ffbd2e; }
.btn-green { background-color: #27c93f; }

.macos-title {
    flex-grow: 1;
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
    font-weight: 500;
}

.macos-content {
    padding: 24px;
    height: 450px;
    overflow-y: auto;
}
/* Styl paska przewijania w oknie */
.macos-content::-webkit-scrollbar {
    width: 8px;
}
.macos-content::-webkit-scrollbar-track {
    background: transparent;
}
.macos-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.result-card {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.result-card:hover {
    background: rgba(0,0,0,0.4);
    border-color: rgba(139, 92, 246, 0.4);
}

/* ====================================================== */
/* ANIMACJA PRZEJŚCIA MIĘDZY STRONAMI                */
/* ====================================================== */

body.page-transition {
    /* Animacja pojawiania się nowej strony */
    animation: fadeInPage 0.4s ease-in-out forwards;
}

body.page-fade-out {
    /* Animacja znikania starej strony */
    animation: fadeOutPage 0.4s ease-in-out forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(15px); /* Delikatny ruch w górę */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutPage {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-15px); /* Delikatny ruch w dół */
    }
}

/* ====================================================== */
/* NOWE STYLE I ANIMACJE DLA STRONY "O NAS"               */
/* ====================================================== */

/* ====================================================== */
/* NOWE STYLE DLA INTERAKTYWNEGO DASHBOARDU             */
/* ====================================================== */

.dashboard-widget {
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
    
}

.drag-handle-icon {
    position:sticky;
    left: 5000px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: grab;
    opacity: 1;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.dashboard-widget:hover {
    background: rgba(0,0,0,0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

.chart-container {
    width: 100%;
    height: 150px;
}


.chart-svg {
    width: 100%;
    height: 100%;
}

/* Animacja "rysowania" wykresu */
#chart-line {
    /* Długość ścieżki (musisz ją zmierzyć lub oszacować) */
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s ease-in-out;
}

/* Klasa dodawana przez JS, aby uruchomić animację */
#results-dashboard.is-visible #chart-line {
    stroke-dashoffset: 0;
}

/* Efekt "glow" podążający za myszką */
.philosophy-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.25), transparent 60%);
    transform: translate(-50%, -50%);
    transition: top 0.2s ease, left 0.2s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 1;
}

.philosophy-card:hover::before {
    opacity: 1;
}


/* --- Animowana Oś Czasu (Timeline) --- */
.timeline {
    position: relative;
    padding-left: 50px;
}

/* Linia osi czasu */
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Animowana linia "rysująca się" */
.timeline::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    width: 4px;
    height: 0; /* Na starcie wysokość 0 */
    background-color: #8B5CF6; /* Fioletowy */
    transition: height 1s ease-in-out;
}

.timeline.is-visible::after {
    height: 100%; /* Uruchomienie animacji rysowania */
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    opacity: 0; /* Ukryte na starcie */
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item.is-visible {
    opacity: 1; /* Płynne pojawienie się */
    transform: translateX(0);
}

/* Kropka na osi czasu */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -47px; /* Ustawienie na linii */
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #000000;
    border: 4px solid #8B5CF6;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
}



/* ====================================================== */
/* INTERAKTYWNA SEKCJA ZESPOŁU                        */
/* ====================================================== */

.team-member-clickable img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Kiedy panel jest aktywny (otwarty), podświetl awatar */
.team-member.active .team-member-clickable img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.team-member-clickable .ph-plus-circle {
    transition: transform 0.4s ease;
}

.team-member.active .team-member-clickable .ph-plus-circle {
    transform: rotate(45deg); /* Zmień plus na 'x' */
}

/* Ukryty panel z informacjami */
.team-member-info {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease, margin-top 0.6s ease;
    margin-top: 0;
}

/* Styl dla aktywnego (widocznego) panelu */
.team-member.active .team-member-info {
    max-height: 300px; /* Ustaw wystarczająco dużą wartość */
    opacity: 1;
    margin-top: 2rem; /* Dodaj odstęp od góry */
}

/* Style dla Wykresu Kołowego (Doughnut) */
.doughnut-chart-container {
    position: relative;
    display: inline-block;
}
.doughnut-track,
.doughnut-value {
    fill: none;
    stroke-width: 3;
}
.doughnut-track {
    stroke: rgba(255, 255, 255, 0.1);
}
.doughnut-value {
    stroke: #0bf51b; /* Kolor amber-500 */
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    stroke-dasharray: 100, 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 2s ease-in-out;
}
#results-dashboard.is-visible .doughnut-value {
    stroke-dashoffset: 2; /* 100 - 98 = 2. Ustawiamy "brakujące" procenty */
}
.doughnut-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Style dla Panelu Aktywności */
.activity-feed .activity-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.activity-feed .activity-item i {
    font-size: 1.25rem;
    margin-top: 2px;
}
.activity-feed .activity-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* Style dla przełącznika zakresu czasu */
.time-selector-group {
    display: flex;
    background-color: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 2px;
}
.time-selector-btn {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    border-radius: 4px;
    transition: all 0.2s ease;
}
.time-selector-btn.active {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Style dla rozbudowanego wykresu */
.chart-area-fill {
    opacity: 0;
    transition: opacity 0.4s ease;
}
#results-dashboard.is-visible .chart-area-fill {
    opacity: 1;
}
.chart-point {
    fill: #8B5CF6;
    stroke: #000;
    stroke-width: 2;
    r: 5;
    cursor: pointer;
    transition: r 0.2s ease;
}
.chart-point:hover {
    r: 7;
}
.chart-tooltip-bg {
    fill: rgba(0,0,0,0.8);
    stroke: #8B5CF6;
    stroke-width: 1;
}
.chart-tooltip-text {
    fill: #fff;
    font-size: 12px;
    font-weight: 600;
}

/* ====================================================== */
/* NOWE STYLE DLA SEKCJI CENNIKA I ANIMACJI TŁA         */
/* ====================================================== */

#cennik {
    background-color: #000000;
        border-top: 1px solid rgb(0, 0, 0);
    border-bottom: 1px solid rgba(0, 0, 0);
}

.falling-money-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.money-icon {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.05); /* Bardzo niska przezroczystość */
    animation: fall-pricing linear infinite;
    user-select: none; /* Zapobiegaj zaznaczaniu ikon */
}

@keyframes fall-pricing {
    0% {
        transform: translateY(0) rotateZ(0deg);
    }
    100% {
        transform: translateY(110vh) rotateZ(360deg);
    }
}

/* Indywidualne ustawienia dla każdej ikony dla naturalnego efektu */
.money-icon:nth-child(1) { left: 10%; font-size: 2rem; animation-duration: 15s; animation-delay: -5s; }
.money-icon:nth-child(2) { left: 20%; font-size: 1rem; animation-duration: 12s; animation-delay: -2s; }
.money-icon:nth-child(3) { left: 30%; font-size: 2.5rem; animation-duration: 18s; animation-delay: -10s; }
.money-icon:nth-child(4) { left: 40%; font-size: 1.5rem; animation-duration: 14s; animation-delay: -7s; }
.money-icon:nth-child(5) { left: 50%; font-size: 3rem; animation-duration: 11s; animation-delay: -1s; }
.money-icon:nth-child(6) { left: 60%; font-size: 1.2rem; animation-duration: 20s; animation-delay: -12s; }
.money-icon:nth-child(7) { left: 70%; font-size: 2.2rem; animation-duration: 13s; animation-delay: -4s; }
.money-icon:nth-child(8) { left: 80%; font-size: 1.8rem; animation-duration: 16s; animation-delay: -8s; }
.money-icon:nth-child(9) { left: 90%; font-size: 2.8rem; animation-duration: 10s; animation-delay: -6s; }
.money-icon:nth-child(10) { left: 5%; font-size: 1.4rem; animation-duration: 19s; animation-delay: -3s; }

/* ====================================================== */
/* STYLE DLA STRONY REGULAMINU                        */
/* ====================================================== */
.terms-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}
.terms-nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}
.terms-nav-link.active {
    color: #a855f7; /* Fioletowy */
    border-left-color: #a855f7;
    font-weight: 600;
}

/* Zapewnia odpowiednie formatowanie tekstu w regulaminie */
.prose ol > li::marker {
    color: #a855f7;
}

#cennik {
    opacity: 1;
}

/* ====================================================== */
/* NOWE STYLE DLA STRONY "KONTAKT"                      */
/* ====================================================== */

/* Karty wyboru kontaktu */
.contact-card {
    background: rgba(16, 16, 16, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Kontener na ukryty formularz */
.contact-form-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease, margin-top 0.8s ease;
}
.contact-form-container.is-visible {
    max-height: 500px; /* Wystarczająco duża wartość */
    opacity: 1;
}

/* Zaawansowane style dla pól formularza */
.form-group {
    position: relative;
}
.form-input {
    width: 100%;
    background-color: rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    transition: border-color 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #a855f7;
}
.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}
/* Animacja etykiety po focusie lub gdy pole jest wypełnione */
.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.75rem;
    padding: 0 0.25rem;
    background-color: #101010; /* Kolor tła karty */
    color: #a855f7;
}

/* Styl dla niestandardowej mapy */
#contact-map {
    background-color: #4a4a4a;
}
.leaflet-tile-pane {
    filter: invert(1) grayscale(2) brightness(1.6) contrast(1.2);
}
.leaflet-marker-icon {
    filter: hue-rotate(-90deg) saturate(1.5);
}
.pulsing-marker {
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 1);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* ====================================================== */
/* STYLE DLA PODSTRON BIO I LINKÓW ZESPOŁU              */
/* ====================================================== */

/* Linki do social mediów na stronie bio */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 1.25rem;
}
.social-link:hover {
    background-color: #8B5CF6;
    color: #fff;
    transform: translateY(-3px);
}

/* Karta-link do bio na stronie "O Nas" */
.team-member-link {
    display: block;
    padding: 2rem;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.team-member-link:hover {
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}
.team-member-link:hover img {
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

/* ====================================================== */
/* STYLE DLA ROZBUDOWANEJ PODSTRONY BIO                 */
/* ====================================================== */

/* Subtelne, animowane tła dla głębi */
.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
}
.glow-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background-color: #8B5CF6;
}
.glow-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    background-color: #3b82f6;
}

/* Sekcja z kluczowymi osiągnięciami */
.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Karty ze specjalizacjami */
.skill-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.skill-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #8B5CF6;
    transform: translateX(5px);
}
.skill-card i {
    font-size: 1.5rem;
    color: #a78bfa;
}

/* Sekcja z cytatem */
.testimonial-quote {
    position: relative;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1), transparent 70%);
}
.testimonial-quote i.ph-quotes {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: rgba(139, 92, 246, 0.3);
}
.testimonial-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: #fff;
    margin: 0;
    padding: 0;
}
.testimonial-quote cite {
    display: block;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

/* Style dla linków w menu mobilnym */
.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8); /* Jasny, lekko przezroczysty kolor */
    font-size: 1.5rem; /* Większa czcionka dla łatwiejszej nawigacji */
    font-weight: 500; /* Lekko pogrubiona */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1); /* Subtelne podświetlenie po najechaniu */
}