.home__title {
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 15px;
    line-height: 1.1;
}
@media (max-width: 768px) {
    .home__title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
}
/* ==========================================
   SEKCJA 1: HERO - STYLE
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    overflow: hidden; 
    padding: 220px 0 80px; 
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.85) 100%);
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1240px; 
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-list {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tag-item {
    border: 2px solid #D9C331;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    text-transform: capitalize;
}

.hero__title {
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: clamp(2.5rem, 4vw, 4rem); 
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero__description {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 95%;
}

.hero__visuals {
    position: relative;
    height: 600px; 
    width: 100%;
}

/* Emblemat / Odznaka */
.hero__badge {
    position: absolute;
    top: -20px;
    left: 15%;
    width: 150px;
    height: auto;
    z-index: 10;
    border-radius: 50%; /* Zakładając, że to okrągła grafika */
}

/* Polaroidy bazowe */
.polaroid {
    background: #ffffff;
    padding: 15px 15px 60px 15px; /* Duży padding na dole dla efektu polaroida */
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: absolute;
    transition: transform 0.4s ease;
}

.polaroid img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 350px; /* Maksymalna szerokość zdjęcia */
    object-fit: cover;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg);
}

/* Duży Polaroid (Główny) */
.polaroid--main {
    top: 5%;
    right: 0;
    transform: rotate(-6deg);
    z-index: 2;
}

.polaroid--main img {
    width: 325px; 
    height: 350px;
}

/* Mniejszy Polaroid (Drugi) */
.polaroid--secondary {
    bottom: 0%;
    left: 0;
    transform: rotate(8deg);
    z-index: 3;
}

.polaroid--secondary img {
    width: 285px;
    height: 285px; 
}

.btn-primary-gradient {
    /* Wymiary i kształt z Figmy */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: 30px; /* Corner radius ze zdjęcia */
    
    /* Kolory gradientu z Figmy */
    background: linear-gradient(90deg, #B8991D 0%, #F5D76E 100%);
    /* Typografia */
    color: #ffffff ;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Upewnij się, że masz załadowany ten font */
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase; /* Duże litery jak na screenie */
    letter-spacing: 1px;
    
    /* Interakcja */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-gradient:hover {
    color: #ffffff ;
    transform: translateY(-2px);
    background: linear-gradient(180deg, #F5D76E 0%, #B8991D 100%);
}

.btn-primary-gradient.btn-header {
    border-radius: 40px ;
    padding: 20px 40px ;
    color: #fff;
}

/* ==========================================
   RESPONSYWNOŚĆ (Media Queries)
   ========================================== */

/* Tablety i małe laptopy */
@media (max-width: 1024px) { 
    .hero {
        padding: 160px 0 60px;
        min-height: auto;
    }
    .hero__container {
        gap: 20px;
    }
    .hero__visuals {
        height: 500px;
    }
    .polaroid--main img { width: 280px; }
    .polaroid--secondary img { width: 240px; }
    .hero__badge { width: 120px; }
}

/* Telefony komórkowe */
@media (max-width: 768px) {

    .hero__bg-overlay {
        /* Przyciemniamy bardziej na mobile, bo tekst wejdzie na zdjęcia */
        background: rgba(0, 0, 0, 0.75); 
    }
    .hero__container {
        grid-template-columns: 1fr; /* Jedna kolumna */
        text-align: center;
    }
    .hero__content {
        align-items: center; /* Centrujemy tekst na mobile */
    }
    .hero__description {
        margin: 0 auto 30px;
    }
    .tag-list {
        justify-content: center;
    }
    .hero__visuals {
        height: 450px;
        margin-top: 40px;
        display: none;
    }
    .polaroid--main {
        right: 10%;
    }
    .polaroid--secondary {
        left: 10%;
    }
    .mobile-item {
        display: none;
    }
}

/* ==========================================
   SEKCJA 2: USŁUGI - STYLE
   ========================================== */

.services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Górna część (Zdjęcie i Tekst) --- */
.services__top {
    display: flex;
    align-items: center;
    gap: 60px;
}

.services__image-col {
    flex: 0 0 55%; /* Zdjęcie zajmuje 55% szerokości */
}

.services__image-wrapper {
    position: relative;
}

.services__img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-top-right-radius: 80px; /* Charakterystyczne zaokrąglenie z projektu */
    display: block;
}

/* Plakietka z godzinami */
.hours-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hours-badge__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F5D76E 0%, #B8991D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-badge__text {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

/* Prawa kolumna (Tekst) */
.services__text-col {
    flex: 0 0 40%;
    padding-bottom: 120px;
}

.services__description {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Dolna część (Pudełko z usługami) --- */
.services__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #121212; /* Nieco jaśniejsze tło dla odróżnienia od sekcji */
    padding: 50px;
    border-radius: 12px;
    
    /* Magia nakładania na zdjęcie */
    position: relative;
    z-index: 10;
    width: 85%; /* Pudełko nie zajmuje całej szerokości */
    margin: -180px 0 0 auto; /* Ujemny margin górny wyciąga w górę, auto przesuwa do prawej */
    
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-card {
    padding: 0 30px;
    /* Linie oddzielające karty */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Usuwamy linię z ostatniego elementu */
.feature-card:last-child {
    border-right: none;
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F5D76E 0%, #B8991D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-card__title {
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card__desc {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   RESPONSYWNOŚĆ (Tablety i Mobile)
   ========================================== */

@media (max-width: 1024px) {
    .services__top {
        flex-direction: column; /* Na tabletach układamy w pionie */
        gap: 40px;
    }
    .services__image-col, 
    .services__text-col {
        flex: 0 0 100%;
        width: 100%;
    }
    .services__img {
        height: 400px;
        border-top-right-radius: 40px;
    }
    .services__features {
        width: 95%; /* Poszerzamy pudełko na mniejszych ekranach */
        margin: -30px auto 0; /* Wyśrodkowujemy na tablecie */
        padding: 40px 20px;
    }
    .feature-card {
        padding: 0 15px;
    }
    .services__text-col {
    padding-bottom: 20px;
    }
    #uslugi .mobile-item {
        display: none;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    .hours-badge {
        top: 20px;
        left: 20px;
    }
    .services__features {
        grid-template-columns: 1fr; /* Jedna kolumna na telefonach */
        gap: 40px;
        margin-top: 20px; /* Usuwamy nakładanie, żeby nie psuło czytelności */
        width: 100%;
    }
    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 0 40px 0;
    }
    .feature-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ==========================================
   SEKCJA 3: CENNIK SPLIT SCREEN - STYLE
   ========================================== */

.pricing-split {
    display: flex;
    background-color: #0B0B0B;
    position: relative;
    min-height: 100vh; 
    overflow: hidden;
}

/* --- Lewa Kolumna (Wizualna - Sticky) --- */
.pricing-split__visual {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.pricing-split__image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    position: absolute;
}

.pricing-split__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, #0B0B0B 100%);
    z-index: 1;
}

.pricing-split__badge {
    position: absolute;
    z-index: 2;
    border: 2px solid #D9C331;
    padding: 100px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(11, 11, 11, 0.6);
    backdrop-filter: blur(5px);
}

.badge-text {
    color: #D9C331;
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-split__content {
    width: 55%;
    padding: 100px 8%;
}

.pricing-split__divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B8991D 0%, #F5D76E 100%);
    margin-bottom: 60px;
}

.price-card {
    background: #151515;
    border-left: 4px solid #D9C331;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-card__header h3 {
    color: #D9C331;
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.5rem;
    margin: 0;
}

.price-card__value {
    color: #fff;
    font-size: 1.5rem;
    font-family: var(--ast-global-font-family-primary, serif);
    font-weight: bold;
}

.price-card p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.95rem;
}

.pricing-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list-modern li {
    margin-bottom: 30px;
}

.pricing-row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
}

.pricing-row h4 {
    color: #ffffff;
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-line {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.pricing-amount {
    color: #D9C331;
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

/* ==========================================
   RESPONSYWNOŚĆ (Tablety i Mobile)
   ========================================== */

@media (max-width: 992px) {
    .pricing-split {
        flex-direction: column; 
        min-height: 0; 
    }

    
    .pricing-split__visual {
        width: 100%;
        height: 400px;  
        position: relative; 
    }
    
    .pricing-split__overlay {
        /* Zmiana kierunku gradientu dla dopasowania pionowego */
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, #0B0B0B 100%);
    }

    .pricing-split__content {
        width: 100%;
        padding: 60px 20px;
    }
}
@media (max-width: 992px) {
    .pricing-row h4 { 
        max-width: 70%;
        font-size: 1rem;
    }
}
/* ==========================================
   SEKCJA 4: GODZINY OTWARCIA (Z GRAFIKĄ) - STYLE
   ========================================== */

.opening-hours {
    padding: 120px 0px 60px 0;
    overflow: hidden;
}

.opening-hours__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.opening-hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny */
    gap: 80px;
    align-items: center;
}

/* --- Lewa Kolumna (Tekst) --- */
.opening-hours__content {
    display: flex;
    flex-direction: column;
}

.opening-hours__header {
    margin-bottom: 40px;
}

.opening-hours__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B8991D 0%, #F5D76E 100%);
    margin-bottom: 25px;
    border-radius: 2px;
}

.opening-hours__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Tabela godzin (odchudzona) */
.opening-hours__schedule {
    background: transparent; /* Usunęliśmy szare tło z poprzedniej wersji */
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.schedule-item {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.schedule-day {
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
}

.schedule-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.schedule-time {
    color: #D9C331; /* Złoty czas od razu rzuca się w oczy */
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Wybrany dzień */
.schedule-item.is-today .schedule-day {
    color: #D9C331;
}
.schedule-item.is-today .schedule-dots {
    border-bottom: 1px solid #D9C331;
    opacity: 0.5;
}

.schedule-item--closed .schedule-time {
    color: rgba(255, 255, 255, 0.4);
    font-weight: normal;
    letter-spacing: 1px;
}

/* --- Prawa Kolumna (Zdjęcie i ramki) --- */
.opening-hours__visual {
    position: relative;
    padding: 20px; /* Miejsce na przesuniętą ramkę */
}

.opening-hours__image-wrapper {
    position: relative;
    z-index: 2;
}

/* Złota ramka w tle */
.opening-hours__image-wrapper::before {
    content: '';
    position: absolute;
    top: -45px;
    left: 45px;
    width: 100%;
    height: 100%;
    border: 2px solid #D9C331; /* Złoty border */
    z-index: -1;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

/* Efekt najechania na zdjęcie */
.opening-hours__image-wrapper:hover::before {
    transform: translate(-15px, 15px); /* Ramka przysuwa się do zdjęcia */
}

.opening-hours__img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px 8px 8px 80px;
    display: block;
}

/* Pływająca plakietka */
.opening-hours__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #121212;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.opening-hours__badge span {
    color: #ffffff;
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 992px) {
    .opening-hours__grid {
        grid-template-columns: 1fr; /* Kolumny układają się jedna pod drugą */
        gap: 60px;
    }
    
    .opening-hours__visual {
        padding: 0 20px 20px 20px; /* Poprawka marginesów na mobile */
    }
    
    .opening-hours__image-wrapper::before {
        top: 20px;
        left: -15px;
    }
    
    .opening-hours__img {
        height: 400px;
    }
    .opening-hours {
    padding: 60px 0px 60px 0;
    }
}

@media (max-width: 768px) {
    .opening-hours {
        padding: 60px 0;
    }
    .schedule-day, .schedule-time {
        font-size: 1rem;
    }
    .opening-hours__badge {
        bottom: -15px;
        right: 10px;
        padding: 15px 20px;
    }
    .opening-hours__badge span {
        font-size: 0.9rem;
    }
}

/* ==========================================
   SEKCJA 5: OPINIE - STYLE
   ========================================== */

.testimonials {
    /* Ustawiamy bardzo ciemny szary, aby odciąć się od czerni poprzedniej sekcji */
    background-color: #121212; 
    padding: 60px 0;
    position: relative;
}

.testimonials__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Nagłówek --- */
.testimonials__header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonials__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B8991D 0%, #F5D76E 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.testimonials__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Siatka Opinii --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center; /* Ważne, żeby środkowa karta mogła się poprawnie unieść */
}

/* --- Karta Opinii --- */
.review-card {
    background-color: #1A1A1A; /* Nieco jaśniejsze tło karty dla kontrastu */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px); /* Lekkie uniesienie po najechaniu myszką */
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Środkowa karta na stałe lekko uniesiona (przełamanie schematu) */
.review-card--highlight {
    transform: translateY(-20px);
    border-color: rgba(217, 195, 49, 0.2); /* Delikatna złota poświata na ramce */
    background: linear-gradient(to bottom, #1E1E1E, #151515);
}

.review-card--highlight:hover {
    transform: translateY(-25px); /* Hover dla środkowej karty idzie jeszcze wyżej */
}

/* Ogromny znak cytatu w tle */
.review-card__quote-bg {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    font-family: var(--ast-global-font-family-primary, serif);
    color: rgba(255, 255, 255, 0.03); /* Bardzo, bardzo wyblakły */
    line-height: 1;
    user-select: none; /* Żeby użytkownik nie zaznaczał go kursorem */
    z-index: 1;
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.review-card__text {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.review-card__author {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.review-card__name {
    color: #ffffff;
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.review-card__source {
    color: #D9C331; /* Złoty akcent */
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: 1fr; /* Na komórce jedna karta pod drugą */
        gap: 30px;
    }
    /* Wyłączamy wysunięcie środkowej karty na komórce, żeby równe przerwy wyglądały lepiej */
    .review-card--highlight {
        transform: translateY(0);
    }
    .review-card--highlight:hover {
        transform: translateY(-5px);
    }
}


/* ==========================================
   SEKCJA 6: KONTAKT I REZERWACJA - STYLE
   ========================================== */

.contact-cta {
    background-color: var(--ast-global-color-4, #0B0B0B);
    padding: 120px 0;
}

.contact__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.1fr; /* Prawa kolumna minimalnie szersza */
    gap: 80px;
    align-items: center;
}

/* --- Lewa Kolumna (Info) --- */

.contact__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B8991D 0%, #F5D76E 100%);
    margin-bottom: 30px;
    border-radius: 2px;
}

.contact__desc {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact__list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact__icon {
    width: 45px;
    height: 45px;
    background: rgba(217, 195, 49, 0.1); /* Bardzo delikatne złote tło */
    border: 1px solid rgba(217, 195, 49, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Zapobiega kurczeniu się ikony na małych ekranach */
}

.contact__icon svg {
    width: 20px;
    height: 20px;
    color: #D9C331;
}

.contact__text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact__text strong {
    color: #ffffff;
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.contact__text span,
.contact__text a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Klikalny telefon hover */
.contact__text a:hover {
    color: #D9C331;
}

/* --- Prawa Kolumna (Karta z Mapą) --- */
.action-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(217, 195, 49, 0.2);
    display: flex;
    flex-direction: column;
    background-color: #111111; /* Tło dla dolnej sekcji */
}

.map-wrapper {
    width: 100%;
    height: 300px; /* Wysokość mapy */
    border-bottom: 1px solid rgba(217, 195, 49, 0.2);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* MAGIA CSS: Filtr zamieniający jasną mapę Google na elegancką ciemną */
    filter: grayscale(100%) invert(92%) contrast(85%);
    transition: filter 0.3s ease;
}

/* Opcjonalnie: mapa może odzyskać kolory, gdy użytkownik na nią najedzie */
.map-wrapper iframe:hover {
    filter: grayscale(0%) invert(92%) contrast(85%) hue-rotate(180deg);
}

.action-card__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-card__content h3 {
    color: #ffffff;
    font-family: var(--ast-global-font-family-primary, serif);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.action-card__content p {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--ast-global-font-family-secondary, sans-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* ==========================================
   RESPONSYWNOŚĆ
   ========================================== */

@media (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .action-card {
        padding: 50px 20px;
    }
    
    .action-card__content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .map-wrapper {
        height: 250px; /* Nieco niższa mapa na telefonach */
    }
    
    .action-card__content {
        padding: 30px 20px;
    }
    .contact-cta {
        padding: 80px 0;
    }
    
    .contact__list li {
        gap: 15px;
    }
    
    .contact__icon {
        width: 40px;
        height: 40px;
    }
    
    .action-card__content h3 {
        font-size: 2rem;
    }
}