/* Globalne style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0f1f;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Menu */
.menu-container {
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(15px);
    padding: 15px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 50, 0.3);
    border: 1px solid rgba(65, 105, 225, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.menu {
    display: flex;
    list-style: none;
    position: relative;
    justify-content: center;
}

.menu-item {
    position: relative;
    padding: 15px 25px;
    margin: 0 5px;
    color: #e6e6ff;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0f0c29, #302b63, #24243e);
    z-index: -1;
    border-radius: 10px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-item:hover::before {
    transform: scale(1);
    opacity: 1;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: royalblue;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 60%;
}

.highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: rgba(65, 105, 225, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 0;
    opacity: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(65, 105, 225, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(65, 105, 225, 0);
    }
}

.menu-item.active {
    animation: pulse 1.5s infinite;
    color: white;
}

.menu-item.active::before {
    transform: scale(1);
    opacity: 1;
}

.menu-item.active::after {
    width: 60%;
}

/* Sekcja Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('photos/tło-hero.png') center top/cover no-repeat;
    z-index: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #0f0c29, #302b63);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #302b63, #0f0c29);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.hero-btn:hover::before {
    opacity: 1;
}

.hero-btn-secondary {
    margin-left: 15px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsywność */
@media (max-width: 768px) {
    .menu {
        flex-wrap: wrap;
    }
    .menu-item {
        padding: 10px 15px;
        font-size: 14px;
    }
    .hero {
        padding: 0 5%;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-btn-secondary {
        margin-left: 0;
    }
}

/* Mobile Hero Section with Thor Image */
@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
    }
    .hero-bg {
        opacity: 0.5;
        background-position: 25% center;
        background-size: contain;
    }
    .hero-content {
        max-width: 100%;
        margin-top: 150px;
        padding: 20px;
        background: rgba(10, 15, 30, 0.7);
        border-radius: 10px;
    }
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-bg {
        background-size: cover;
        background-position: 100% center;
    }
    .hero-content {
        padding: 15px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
} /* <--- TUTAJ BYŁ BŁĄD, TEN NAWIAS BYŁ ZGUBIONY */

/* Sekcja Usługi (dawniej Prowadzenie) */
.coaching-section {
    background: linear-gradient(180deg, #1a2345 0%, #0a0f1f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coaching-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    /* ↓↓↓ ...I ZAMIEŃ JĄ NA TĘ WARTOŚĆ ↓↓↓ */
    align-items: stretch;
}

.coaching-offer {
    background: rgba(16, 22, 46, 0.7);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.4), 0 10px 30px rgba(0, 0, 50, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.coaching-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.1) 0%, rgba(30, 58, 138, 0.2) 100%);
    z-index: -1;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 1;
}

.coaching-offer:hover::before {
    opacity: 0.8;
}

.offer-highlight {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.3);
}

.offer-price {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, #ffffff, royalblue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(65, 105, 225, 0.5);
}

.offer-price span {
    font-size: 1.8rem;
    font-weight: normal;
    vertical-align: super;
    margin-left: 5px;
}

.offer-period {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #e6e6ff;
    font-weight: 700;
    position: relative;
}

.offer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: royalblue;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.offer-features li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.15);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 20px;
    flex-shrink: 0;
    color: royalblue;
    text-shadow: 0 0 8px rgba(65, 105, 225, 0.4);
}

.feature-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.feature-text strong {
    color: white;
    font-weight: 700;
}

.offer-cta {
    display: block;
    text-align: center;
    padding: 18px;
    background: linear-gradient(45deg, #0f0c29, #302b63);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    margin-top: auto;
}

.offer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #302b63, #0f0c29);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.offer-cta:hover::before {
    opacity: 1;
}

.coaching-benefits {
    /* Nadajemy styl "karty", taki jak w lewym kontenerze */
    background: rgba(16, 22, 46, 0.7);
    border-radius: 20px;
    padding: 40px; /* Zwiększamy padding dla spójności z lewą stroną */
    border: 1px solid rgba(65, 105, 225, 0.2);

    /* Dodajemy poświatę i cień, o które prosiłeś */
    box-shadow: 0 0 20px rgba(65, 105, 225, 0.4), 0 10px 30px rgba(0, 0, 50, 0.4);
}

.benefits-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, royalblue, transparent);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: royalblue;
    flex-shrink: 0;
    margin-top: 0;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.3);
}

.benefit-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #a7c7ff;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.lightning-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.lightning-bolt {
    position: absolute;
    opacity: 0;
    transform-origin: center center;
    animation: bolt-flash 1.5s ease-out forwards;
    overflow: visible;
}

@keyframes bolt-flash {
    0% {
        opacity: 0;
        transform: scale(0) rotate(var(--random-rotation));
        filter: blur(10px);
    }
    5% {
        opacity: 1;
        transform: scale(1) rotate(var(--random-rotation));
        filter: blur(40px);
    }
    30% {
        opacity: 0.9;
        transform: scale(0.95) rotate(var(--random-rotation));
        filter: blur(30px);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8) rotate(var(--random-rotation));
        filter: blur(15px);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(var(--random-rotation));
        filter: blur(0);
    }
}

/* ========================================= */
/* === POPRAWIONE STYLE DLA SEKCJI BOOKING === */
/* ========================================= */

.booking-section {
    background: #0a0f1f;
    padding: 80px 0;
    color: white;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-grid {
    display: flex; /* Zmienione z grid na flex dla lepszego dopasowania */
    gap: 40px;
    align-items: stretch; /* Rozciąga elementy na całą wysokość */
}

.booking-calendar {
    flex: 1; /* Kalendarz zajmie dostępną przestrzeń */
    background: rgba(16, 22, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.3);
    display: flex;
    flex-direction: column;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.2);
}

/* ZMIANA SELEKTORA: z .month-year na #month-year-header */
#month-year-header {
    font-size: 1.6rem;
    margin: 0;
    color: #a7c7ff;
    font-weight: 600;
}

/* ZMIANA SELEKTORA: z .nav-button na .month-nav-btn */
.month-nav-btn {
    background: rgba(65, 105, 225, 0.2);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.month-nav-btn:hover {
    background: rgba(65, 105, 225, 0.4);
    transform: scale(1.05);
}

/* ZMIANA SELEKTORA: z .weekdays na .calendar-weekdays */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 0;
}

/* ZMIANA SELEKTORA: z .days-grid na .calendar-days-grid */
.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.day {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Twój oryginalny, lepszy styl */
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    color: white;
}

.day:not(.disabled):not(.empty):hover { /* Dodany warunek .empty */
    background: rgba(65, 105, 225, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.day.selected {
    background: royalblue; /* Twój oryginalny kolor */
    color: white;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.5);
}

.day.disabled {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    background: transparent; /* Lepsze niż ciemne tło */
    opacity: 0.7;
    pointer-events: none; /* Zapobiega klikaniu */
}

/* Dodatkowy styl dla pustych dni, aby nie reagowały na hover */
.day.empty {
    cursor: default;
    background: transparent;
}
.day.empty:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}


.time-slots {
    margin-top: auto; /* Wypycha godziny na dół, jeśli jest mało dni */
    padding-top: 20px;
    border-top: 1px solid rgba(65, 105, 225, 0.1);
    text-align: left;
}

.time-slots h4 {
    margin-bottom: 15px;
    color: #a7c7ff;
    font-size: 1.2rem;
}

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.time-slot {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
    min-width: 80px;
    text-align: center;
}

.time-slot:hover {
    background: rgba(65, 105, 225, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.time-slot.selected {
    background: royalblue;
    border-color: royalblue;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.5);
    transform: scale(1.02);
}

/* Style dla formularza zostają bez zmian, bo są poprawne */
.booking-form {
    flex: 1.2; /* Formularz będzie trochę szerszy niż kalendarz */
    background: rgba(16, 22, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.3);
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px; /* Zwiększony odstęp */
    font-size: 1rem;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(65, 105, 225, 0.4);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: royalblue;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.3);
    background: rgba(10, 15, 30, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px; /* Zmniejszona wysokość */
}

.form-footer {
    margin-top: auto; /* Wypycha stopkę formularza na dół */
    padding-top: 20px;
}

/* Używamy cta-button z HTML */
.cta-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, royalblue, #302b63);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.6);
}

.form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    text-align: center;
}

/* --- Sekcja Współpracy --- */

/* 1. Upewnij się, że główna sekcja ma swoje oryginalne tło (gradient) */
.collaboration-section {
    background: linear-gradient(180deg, #0a0f1f 0%, #1a2345 100%);
    padding: 100px 0;
    position: relative;
}

.collaboration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.collaboration-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
    min-height: 500px;
}

/* 2. Lewy kontener z tekstem - TO JEST NASZ CEL */
.collaboration-text {
    flex: 1;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(65, 105, 225, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 50, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* Ważne dla nakładki */
    overflow: hidden;  /* Dobra praktyka przy zaokrąglonych rogach i tle */

    /* Tutaj wklej swoją ścieżkę do zdjęcia */
    background-image: url('frontend/photos/papito.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 3. Nakładka przyciemniająca na lewy kontener */
.collaboration-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* To jest kolor nakładki - reguluj ostatnią wartość dla mocy przyciemnienia */
    background: rgba(16, 22, 46, 0.8);
    border-radius: 20px;
    z-index: 1;
}

/* 4. Tekst i przycisk muszą być nad nakładką */
.collaboration-text > * {
    position: relative;
    z-index: 2;
}

/* Reszta stylów dla lewego kontenera (bez zmian) */
.collaboration-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.collaboration-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: royalblue;
}

.collaboration-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.collaboration-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #0f0c29, #302b63);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}
/* Tu powinny być jeszcze style dla hover przycisku, ale nie są kluczowe dla problemu */

/* Prawy kontener zostaje bez zmian */


.contact-section {
    background: linear-gradient(180deg, #1a2345 0%, #0a0f1f 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: rgba(16, 22, 46, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper .form-title,
.contact-info-wrapper .info-title {
    font-size: 2rem;
    color: #e6e6ff;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
}

.contact-form-wrapper .form-subtitle,
.contact-info-wrapper .info-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(65, 105, 225, 0.4);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: royalblue;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.3);
    background: rgba(10, 15, 30, 0.8);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, royalblue, #302b63);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.contact-form .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.6);
}

.contact-form .form-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
    text-align: center;
}

.contact-info-wrapper {
    justify-content: flex-start;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item .icon {
    font-size: 2.2rem;
    color: royalblue;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(65, 105, 225, 0.5);
}

.info-item h4 {
    font-size: 1.3rem;
    color: #a7c7ff;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.info-item p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: royalblue;
}

.social-media {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(65, 105, 225, 0.1);
}

.social-media h4 {
    font-size: 1.3rem;
    color: #a7c7ff;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: royalblue;
    transform: translateY(-5px);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: #0a0f1f;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 1001;
    background: rgba(10, 15, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: none;
}

.about-section {
    padding: 100px 0;
    color: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    background: rgba(16, 22, 46, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-content h3 {
    font-size: 1.5rem;
    color: #a7c7ff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(65, 105, 225, 0.3);
}

.text-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.achievements {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.achievement-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    padding: 15px 5px;
    border: 1px solid rgba(65, 105, 225, 0.2);
}

.achievement-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: royalblue;
    margin-bottom: 5px;
    line-height: 1;
}

.achievement-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}








.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 5px;
    z-index: 5;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-button.prev {
    left: 10px;
}

.slider-button.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: royalblue;
    transform: scale(1.2);
}

.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 30, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup-container {
    background: rgba(16, 22, 46, 0.95);
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border: 1px solid rgba(65, 105, 225, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 50, 0.4);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #a7c7ff;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.popup-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.popup-image {
    flex: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid rgba(65, 105, 225, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popup-text {
    flex: 1;
    color: white;
}

.popup-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.popup-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.popup-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #0f0c29, #302b63);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

@media (max-width: 768px) {
    .popup-container {
        padding: 25px 20px;
        max-width: 500px;
        position: relative;
    }
    .popup-content {
        flex-direction: column;
        gap: 20px;
    }
    .popup-image {
        width: 100%;
        min-height: 200px;
    }
    .popup-text {
        text-align: center;
    }
    .popup-btn {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #a7c7ff;
        background-color: #302b63;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border: 1px solid #4169E1;
        font-size: 28px;
        line-height: 1;
        padding: 0;
        margin: 0;
        cursor: pointer;
        user-select: none;
    }
}

@media (max-width: 480px) {
    .popup-container {
        padding: 20px 15px;
    }
    .popup-text h3 {
        font-size: 1.5rem;
    }
    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 8px;
        right: 8px;
    }
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
}

.about-gallery .gallery-slide:nth-child(2) img {
    object-position: top !important;
}





.transformations-section {
    padding: 100px 0;
    background: #0a0f1f;
}

.transformations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.3);
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 15, 31, 0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
    transform: translateY(0);
}

.photo-overlay h3 {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.timeline-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0f1f 0%, #1a2345 100%);
    color: white;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: rgba(65, 105, 225, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #0a0f1f;
    border: 4px solid royalblue;
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background: rgba(16, 22, 46, 0.7);
    border: 1px solid rgba(65, 105, 225, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.4);
}

.timeline-content img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #a7c7ff;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-item::after {
        left: 20px;
    }
}

/* Efekt pojawiania się dla animacji JS (TYMCZASOWO WYŁĄCZONY DO TESTÓW) */
.timeline-item {
    /* opacity: 0;  <-- Ta linia została usunięta, aby elementy były widoczne */
    transform: translateY(0px); /* Ustawiamy pozycję startową na docelowej */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Nowy blok ze szczegółami w ofercie */
.offer-details {
    margin-top: 30px; /* Odstęp od listy powyżej */
    margin-bottom: 35px; /* Odstęp od przycisku poniżej */
    padding: 20px;
    background: rgba(10, 15, 30, 0.5); /* Lekko ciemniejsze tło dla wyróżnienia */
    border-radius: 12px;
    border-top: 2px solid rgba(65, 105, 225, 0.4); /* Akcent kolorystyczny na górze */
    border-bottom: 1px solid rgba(65, 105, 225, 0.1);
}

.offer-details h4 {
    font-size: 1.1rem;
    color: #a7c7ff; /* Kolor pasujący do innych nagłówków */
    margin-bottom: 10px;
    font-weight: 600;
}

.offer-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0; /* Resetujemy marginesy z globalnych stylów */
}

/* Dodaj do istniejących stylów */
.time-slot.booked {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
    cursor: not-allowed;
    text-decoration: line-through;
}
.day.booked::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
    color: royalblue;
}

.booking-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    display: none; /* Ukryty domyślnie */
}

.booking-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* Styl dla pustych komórek (dni z poprzedniego miesiąca) */
.day.empty {
    cursor: default;
}

/* ========================================= */
/* === SEKCJA OPINII KLIENTÓW (POPRAWIONA) === */
/* ========================================= */

.reviews-section {
    background: linear-gradient(180deg, #1a2345 0%, #0a0f1f 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, transparent, royalblue, transparent);
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: start;
    margin-top: 50px;
}

/* ZMIANA 1: Usunięto padding z kontenera opinii */
.review-item {
    background: rgba(16, 22, 46, 0.8);
    border-radius: 16px;
    padding: 0; /* <-- USUNIĘTO PADDING */
    border: 1px solid rgba(65, 105, 225, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 50, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    break-inside: avoid;
}

.review-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.3);
    border-color: rgba(65, 105, 225, 0.4);
}

/* ZMIANA 2: Kontener obrazka ma teraz wysokość 100% i usunięte niepotrzebne style */
.review-image {
    width: 100%;
    height: 100%; /* <-- DODANO, aby wypełnił całą wysokość rodzica */
    margin-bottom: 0; /* <-- ZRESETOWANO MARGINES */
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 2;
}

/* ZMIANA 3: Obrazek wypełnia swój kontener w 100% */
.review-image img {
    width: 100%;
    height: 100%; /* <-- DODANO, aby wypełnił kontener .review-image */
    object-fit: cover; /* <-- KLUCZOWE, aby obrazek się nie rozciągał, tylko przycinał */
    display: block;
    transition: transform 0.4s ease;
}

.review-item:hover .review-image img {
    transform: scale(1.05); /* Zmieniono z 1.02 na 1.05 dla lepszego efektu */
}

/* Pozostałe style (rozmiary, animacje etc.) pozostają bez zmian */
.review-item.size-small { grid-row: span 1; }
.review-item.size-medium { grid-row: span 2; }
.review-item.size-large { grid-row: span 3; }

.review-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.review-item:nth-child(1) { animation-delay: 0.1s; }
.review-item:nth-child(2) { animation-delay: 0.2s; }
.review-item:nth-child(3) { animation-delay: 0.3s; }
.review-item:nth-child(4) { animation-delay: 0.4s; }
.review-item:nth-child(5) { animation-delay: 0.5s; }
.review-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================= */
/* === POPRAWIONE STYLE DLA SLIDERÓW === */
/* ========================================= */

/* 1. SLIDER W SEKCJI "O MNIE" - POPRAWIONA WERSJA */
.about-gallery {
    display: flex; /* ZMIENIONE z grid na flex */
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    transform: translateX(0); /* Przygotowanie do animacji JS */
    transition: transform 0.5s ease; /* Płynne przejścia między slajdami */
    flex-direction: row;
}

.about-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex; /* Dodaj tę linię */
    align-items: center; /* I tę */
    justify-content: center; /* I tę */
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. SLIDER W SEKCJI WSPÓŁPRACY */





/* 4. DODATKOWE ZABEZPIECZENIA DLA KONTENERÓW SLIDERÓW */
.about-gallery-container {
    position: relative;
    overflow: hidden; /* Kluczowe - ukrywa wszystko co wychodzi poza kontener */
    border-radius: 20px;
    flex: 1;
    height: auto;
    min-height: 500px; /* Zachowuje wysokość z oryginalnego CSS */
}



/* 5. STYLE DLA PRZYCISKÓW NAWIGACJI (jeśli używasz) */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.6rem;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-button.prev {
    left: 15px;
}

.slider-button.next {
    right: 15px;
}

/* 6. STYLE DLA WSKAŹNIKÓW (DOTS) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active,
.dot:hover {
    background-color: royalblue;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 7. RESPONSYWNOŚĆ DLA SLIDERÓW */
@media (max-width: 768px) {
    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 8px;
    }
    
    .slider-button.prev {
        left: 10px;
    }
    
    .slider-button.next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
}

/* 8. DODATKOWE ZABEZPIECZENIE DLA PRZEGLĄDAREK */
.about-gallery-container *,
.collaboration-gallery-container * {
    box-sizing: border-box;
}

/* === POPRAWIONE STYLE DLA SLIDERA WSPÓŁPRACY === */

/* 1. Główny kontener, który "przycina" całą zawartość */
.collaboration-gallery-container {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden; /* KLUCZOWE: Ukrywa wszystko, co wychodzi poza kontener */
}

/* 2. Wewnętrzny "pasek" ze slajdami */
.collaboration-gallery {
    display: flex; /* Ustawia slajdy w jednym rzędzie */
    height: 100%;
    /* Ta transformacja będzie zmieniana przez JavaScript do przesuwania slajdów */
    transition: transform 0.5s ease-in-out;
}

/* 3. Każdy pojedynczy slajd */
.collaboration-slide {
    min-width: 100%;  /* Każdy slajd ma dokładnie 100% szerokości kontenera */
    flex-shrink: 0;   /* Zapobiega kurczeniu się slajdów */
    height: 100%;
    overflow: hidden; /* Dodatkowe zabezpieczenie */
}

.collaboration-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Obrazek wypełnia slajd bez zniekształceń */
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    background: linear-gradient(to right, #ffffff, #a7c7ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, royalblue, transparent);
    border-radius: 2px;
    z-index: 0;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #c3d1ff;
    text-align: center;
    margin-top: -40px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
}

.gallery-slide img {
    background-color: #1a2345; /* Kolor tła jeśli obrazek się nie załaduje */
}




/* =============================================== */
/* --- OSTATECZNA SEKCJA OPINII (JEDEN PLIK) --- */
/* =============================================== */

.reviews-section {
    padding: 60px 15px;
    background-color: #f8f9fa;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
}

/* --- Siatka Isotope (Mobile-First) --- */

.reviews-masonry {
    position: relative; /* Absolutnie kluczowe dla Isotope */
}

/* Element pomocniczy i pojedynczy element siatki */
/* BAZA: Telefony - 1 kolumna */
.grid-sizer,
.review-item {
    width: 100%;
}

.review-item {
    margin-bottom: 15px; /* Zastępuje 'gap' w Isotope */
}

/* Po załadowaniu Isotope, padding jest lepszy niż margines */
.isotope .review-item {
    margin-bottom: 0;
    padding: 7px;
    box-sizing: border-box;
}

.review-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* TABLETY: 2 kolumny */
@media (min-width: 481px) {
    .grid-sizer,
    .review-item {
        width: 50%;
    }
}

/* DESKTOP: 3 kolumny */
@media (min-width: 768px) {
    .grid-sizer,
    .review-item {
        width: 33.333%;
    }
}

/* ================================================= */
/* === POPRAWIONE Style dla animacji "Droga do formy" === */
/* ================================================= */

/* Stan początkowy: ukryty (bardziej precyzyjny selektor) */
.timeline-section .timeline-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stan końcowy: widoczny (bardziej precyzyjny selektor) */
.timeline-section .timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================= */
/* === Style dla nowych ikon SVG === */
/* ======================================= */

/* Ustawia rozmiar i kolor dla ikon w sekcji "Usługi" */
.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: royalblue; /* Używamy 'fill' zamiast 'color' dla SVG */
}

/* Ustawia rozmiar i kolor dla ikon w sekcji "Kontakt" (email, telefon, adres) */
.info-item .icon svg {
    width: 36px;
    height: 36px;
    fill: royalblue;
}

/* Ustawia rozmiar i kolor dla ikon social media */
.social-icons .icon svg {
    width: 40px;
    height: 40px;
    fill: rgba(255, 255, 255, 0.6); /* Domyślny kolor */
    transition: fill 0.3s ease; /* Płynna zmiana koloru */
}

/* Zmienia kolor ikony social media po najechaniu myszką */
.social-icons a:hover .icon svg {
    fill: royalblue;
}

/* === STYLE DLA OKIENKA POTWIERDZENIA REZERWACJI (WERSJA Z UNIKALNYMI KLASAMI) === */

.booking-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Domyślnie całkowicie ukryty */
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-success-overlay.visible {
    display: flex; /* Pokazujemy, gdy jest aktywny */
    opacity: 1;
}

.booking-success-content {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.booking-success-overlay.visible .booking-success-content {
    transform: scale(1); /* Efekt lekkiego powiększenia */
}

.booking-success-content h2 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.booking-success-content p {
    color: #34495e;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.booking-success-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #bdc3c7;
    cursor: pointer;
    transition: color 0.2s ease;
}

.booking-success-close-btn:hover {
    color: #7f8c8d;
}

.booking-success-ok-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.booking-success-ok-btn:hover {
    background-color: #2ecc71;
    transform: translateY(-2px);
}

/* Dodaj tę klasę na końcu swojego pliku CSS */
body.modal-open {
    overflow: hidden; /* Blokuje możliwość przewijania strony w tle */
}