* {
    box-sizing: border-box;
}
/* Zmienne i podstawy */
:root {
    --primary-green: #2a362f; 
    --gold-accent: #c9a763;  
    --text-light: #f4f4f4;
    --text-dark: #333333;
    --bg-light: #fbfbfb;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--primary-green);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* NAWIGACJA */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #F7F7F5;
    border-bottom: 1px solid rgba(201, 167, 99, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text { font-size: 32px; color: var(--gold-accent); letter-spacing: 2px; }
.logo-sub { font-size: 13px; color: var(--gold-accent); letter-spacing: 3px; text-transform: uppercase; display: block; }


header nav a {
    display: inline-block !important; /* Wymuszamy, by link stał się "pudełkiem" przyjmującym ramkę */
    border: 0.1px solid var(--gold-accent) !important; /* Wymuszamy złotą ramkę */
    padding: 8px 18px !important;
    margin-left: 15px !important;
    color: var(--text-light) !important;
    text-decoration: none !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out !important;
    background: transparent;
}

/* EFEKT NAJECHANIA */
header nav a:hover {
    background-color: var(--gold-accent) !important;
    color: var(--primary-green) !important;
    box-shadow: 0 0 10px rgba(201, 167, 99, 0.4);
}

/* EFEKT KLIKNIĘCIA */
header nav a:active {
    transform: scale(0.92);
}

/* POPRAWKA DLA WIDOKU MOBILNEGO ( display: block, żeby ramki nie dotykały krawędzi) */
@media (max-width: 1050px) {
    header nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px;
    }

    header nav a {
        width: 200px !important; /* Stała szerokość przycisków na telefonie */
        margin-left: 0 !important;
        text-align: center;
    }
}
/* HERO */
.hero { text-align: center; padding: 120px 20px; }
.hero h1 { font-size: 48px; color: var(--gold-accent); margin-bottom: 24px; }
.hero p { font-size: 18px; max-width: 650px; margin: 0 auto 40px; color: #d1d6d3; }

.btn {
    border: 1px solid var(--gold-accent);
    padding: 15px 40px;
    color: var(--gold-accent);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.4s;
    display: inline-block;
}

.btn:hover { background: var(--gold-accent); color: var(--primary-green); }

/* USŁUGI */
.services { background: var(--bg-light); color: var(--text-dark); padding: 100px 10%; text-align: center; }
.service-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.service-card { background: white; padding: 40px; width: 280px; border-top: 3px solid var(--gold-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* SEKCJA ZESPOŁU */
.team-section { padding: 100px 10%; background: var(--white); color: var(--text-dark); text-align: center; }
/* --- SEKCJA ZESPOŁU (STRONA GŁÓWNA) --- */

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolumny */
    gap: 60px 50px; /* odstępy, żeby siatka wyglądała "bogaciej" */
    margin-top: 60px;
    
    /* KLUCZOWA ZMIANA: max-width z 1100px na np. 1400px */
    max-width: 1400px; 
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px; /* Margines bezpieczeństwa, żeby nie dotykały krawędzi ekranu */
}

.photo-box {
    background-color: #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    
    /*  proporcje - kafelki będą wyższe i szersze */
    aspect-ratio: 3 / 2 !important;
    
    
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100% !important; /* Zawsze wypełnia swoją kolumnę */
}


.spec-name {
    font-size: 22px; 
    font-weight: 600;
    margin: 8px 0;
}

.spec-degree {
    font-size: 14px;
    letter-spacing: 1px;
}



@media (max-width: 1100px) {
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr); /* Na mniejszych laptopach przeskoczy na 2 w rzędzie */
        max-width: 900px;
    }
}

@media (max-width: 700px) {
    .specialists-grid {
        grid-template-columns: 1fr; /* Na telefonie 1 w rzędzie */
        padding: 0 20px;
    }
}
.specialist-card { text-decoration: none; color: inherit; }
.photo-box { 
    background: #e0e0e0; 
    border-radius: 20px; 
    aspect-ratio: 3/4; 
    overflow: hidden; 
    margin-bottom: 15px;
    transition: transform 0.3s;
}
.specialist-card:hover .photo-box { transform: translateY(-10px); }
.spec-name { font-size: 20px; font-weight: 600; color: var(--primary-green); margin: 5px 0; }
.spec-degree { font-size: 14px; color: var(--gold-accent); }

/* PODSTRONA SPECJALISTY  */
.profile-card {
    background: white; border-radius: 30px; padding: 50px;
    display: grid; grid-template-columns: 300px 1fr 250px; gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); color: var(--text-dark);
}
/* SEKCJA O NAS (STRONA GŁÓWNA) */
.about-preview {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--gold-accent);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #d1d6d3;
    margin-bottom: 30px;
}

.about-image-box {
    flex: 1;
    position: relative;
}

/* Dekoracyjna ramka za zdjęciem */
.about-image-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-accent);
    top: 20px;
    left: 20px;
    border-radius: 30px;
    z-index: 1;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #3a4740; /* Nieco jaśniejsza zieleń */
    border-radius: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-style: italic;
}



@media (max-width: 900px) {
    
    .container, 
    div[style*="padding: 100px 10%"] { 
        padding: 40px 15px !important; 
    }

    .profile-card {
        grid-template-columns: 1fr; 
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    /* Zdjęcie na środku */
    .profile-left .photo-box {
        margin: 0 auto 20px auto;
        width: 200px; /* Nieco mniejsze zdjęcie na telefonie */
    }

    
    .profile-right, 
    div[style*="border-left"] {
        border-left: none !important;
        border-top: 1px solid #eee;
        padding-left: 0 !important;
        padding-top: 30px;
    }

    /* Lista zakresem pomocy wyrównana do lewej dla czytelności */
    .profile-right ul, .list-styled {
        display: inline-block;
        text-align: left;
    }

    /* Przycisk na całą szerokość dla łatwiejszego klikania kciukiem */
    .btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}
/* --- MODAL (OKNO CV) --- */
.modal {
    display: none; /* Domyślnie ukryte */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 54, 47, 0.9); 
    backdrop-filter: blur(5px); 
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px;
    border-radius: 30px;
    width: 80%;
    max-width: 800px;
    position: relative;
    color: var(--text-dark);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 35px;
    cursor: pointer;
    color: var(--primary-green);
    line-height: 1;
}

.modal-content h2 {
    color: var(--gold-accent);
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.cv-section {
    margin-bottom: 30px;
}

.cv-section h4 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.cv-list {
    list-style: none;
    padding: 0;
}

.cv-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.cv-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
}
.profile-wrapper {
    padding: 100px 10%;
}
.photo-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}
@media (max-width: 900px) {
    
    /* Główny kontener sekcji O nas */
    .about-preview {
        display: flex !important;
        flex-direction: column !important; /* Układa tekst nad zdjęciem */
        align-items: center !important;
        text-align: center !important;
        padding: 40px 20px !important;
    }

    /* Kontener z tekstem (opisy) */
    .about-preview .about-text {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }

    /* Kontener ze zdjęciem/grafiką gabinetu */
    .about-preview .about-image-container {
        width: 100% !important;
        position: relative !important; 
        right: auto !important;
        left: auto !important;
        display: flex;
        justify-content: center;
    }

    
    .about-preview h2 {
        font-size: 28px !important;
        margin-bottom: 20px !important;
        line-height: 1.3;
    }
}
.profile-right-column { 
        border-left: none !important;
        border-top: 1px solid #eee; 
        padding-top: 30px;
    }

    
@media (max-width: 1100px) {
    
    
    div[style*="padding: 100px 10%"] {
        padding: 40px 5% !important;
    }

    .profile-card {
      
        grid-template-columns: 1fr !important; 
        gap: 30px;
        text-align: center;
    }

    
    .profile-card > div:last-child {
        border-left: none !important;
        border-top: 1px solid #eee; 
        padding-left: 0 !important;
        padding-top: 30px;
    }

    
    .photo-box {
        margin: 0 auto 20px auto !important;
    }
}
.about-main-image {
    max-width: 100%; 
    height: auto;    
    display: block;  
}
@media (max-width: 768px) {
    
    nav, .navbar, header {
        position: relative !important;
        height: auto !important; 
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;   
        padding: 15px 0 !important;
        gap: 15px; 
    }

    
    nav ul, .nav-links, .menu {
        display: flex !important;
        flex-wrap: wrap !important; 
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 10px 20px; 
    }

    .logo-subtitle, nav p {
        text-align: center !important;
        margin: 5px 0 0 0 !important;
    }
}
.site-footer {
    background-color: #1a2a24; 
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px; 
    font-family: 'Montserrat', sans-serif;
}

.footer-container p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #d4af37; 
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 1;
}
.legal-container {
    max-width: 800px; 
    margin: 60px auto; 
    padding: 0 20px;
    color: #f5f5f5; 
    line-height: 1.6; 
    font-family: 'Montserrat', sans-serif;
}

.legal-container h1 {
    color: #d4af37; 
    text-align: center;
    margin-bottom: 10px;
}

.last-update {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.legal-container h2 {
    color: #d4af37;
    margin-top: 40px;
    border-bottom: 1px solid #d4af3733; 
    padding-bottom: 10px;
}

.company-data {
    background: rgba(255, 255, 255, 0.05); 
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid #d4af37;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-container li {
    margin-bottom: 8px;
    list-style-type: none;
}

.legal-container li::before {
    content: "→";
    color: #d4af37;
    margin-right: 10px;
}
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2a24; 
    color: white;
    padding: 15px 20px;
    z-index: 9999;
    border-top: 2px solid #d4af37; 
    display: none; 
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

.cookie-content a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-btn {
    background: #d4af37;
    color: #1a2a24;
    border: none;
    padding: 8px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #c19b2e;
    transform: scale(1.05);
}

/* Responsywność dla telefonów */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

nav, header, .navbar {
    margin-bottom: 0 !important;
    padding-bottom: 5px !important;
}


.hero, main, section:first-of-type {
    padding-top: 20px !important;
    margin-top: -10px !important; 
}


h1 {
    margin-top: 10px !important;
}
@media (max-width: 1050px) {
    
    nav {
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important;   
        justify-content: center !important;
        width: 100% !important;
        padding: 5px 0 !important;
        margin: 0 auto !important;
    }

   
    nav a {
        display: block !important;        
        text-align: center !important;    
        padding: 5px 0 !important;        
        width: 100% !important;            
        margin: 0 !important;              
        text-decoration: none !important;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 20px !important; 
    }
    .hero h1 {
        font-size: 32px !important; 
    }
    .btn {
        padding: 12px 20px !important;
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; 
}


section[id] {
    scroll-margin-top: 100px;
}
@media (max-width: 768px) {
    .modal-content {
        width: 92% !important;      /* Okno zajmie 92% szerokości ekranu */
        max-width: none !important;
        padding: 30px 20px !important; 
        margin: 15% auto !important;   
        border-radius: 20px;         /* Delikatnie mniejsze zaokrąglenia na mobile */
    }

    .close-modal {
        top: 15px;                  
        right: 20px;
        font-size: 30px;
    }
    
    .modal-content h2 {
        font-size: 20px;            
        margin-bottom: 20px;
    }
}
.contact-section {
    padding: 100px 10% !important; 
    background-color: var(--primary-green); 
    /* Zmieniamy tekst na jasny */
    color: var(--text-light); 
    border-top: 1px solid rgba(201, 167, 99, 0.2); 
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.contact-info h3 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 20px;
}

.map-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-btn {
    display: inline-block;
    padding: 12px 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    transition: 0.4s;
    text-align: center;
}

.map-btn.google {
    background: #4285F4;
    color: white;
}

.map-btn.apple {
    background: #000;
    color: white;
}

.map-btn:hover {
    background: var(--gold-accent);
    color: var(--primary-green);
}


@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .map-buttons {
        align-items: center;
    }
}
@media (max-width: 600px) {
    .map-buttons {
        grid-template-columns: 1fr;
    }
}

.contact-section h2,
.contact-info h3,
.contact-info p,
.contact-info strong {
    color: var(--gold-accent) !important;
}
.list-styled {
    list-style: none; 
    padding: 0;
}

.list-styled li {
    position: relative;
    padding-left: 10px; 
    margin-bottom: 5px;
}

.list-styled li::before {
    content: "•"; 
    color: var(--gold-accent); 
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 5px;
    font-size: 20px; 
    line-height: 1;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; 
    text-decoration: none; 
}

.header-logo {
    height: 80px; 
    width: auto;
    display: block;
}


@media (max-width: 768px) {
    .header-logo {
        height: 80px;
    }
    .logo-wrapper {
        justify-content: center;
    }
}
body  {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    
    background: var(--primary-green) url('img/paper.jpg') repeat;
   
    background-blend-mode: multiply; 
    color: var(--text-light);
    line-height: 1.6;
}


.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-wrapper:hover {
    opacity: 0.9;
}

.header-logo {
    height: 80px; 
    width: auto;
    display: block;
}


.logo-wrapper div {
    display: flex;
    flex-direction: column;
}
.about-preview {
    
    background: var(--primary-green) url('img/paper.jpg') repeat !important;
    
    
    background-blend-mode: multiply !important;
    
   
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.contact-section {
    
    background: var(--primary-green) url('img/paper.jpg') repeat !important;
    
    
    background-blend-mode: multiply !important;
    
   
    color: var(--text-light);
    padding: 80px 0; 
}


.contact-container, .contact-info, .contact-form {
    background: transparent !important;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}


.profile-wrapper {
    flex: 1 0 auto; 
}


.site-footer {
    flex-shrink: 0;
    margin-top: auto; 
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 10px 2%; 
    background-color: #F7F7F5;
    flex-wrap: nowrap;
}

nav {
    display: flex;
   
    gap: 8px; 
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
   
    padding: 6px 12px; 
    border: 1px solid rgba(201, 167, 99, 0.5); 
    white-space: nowrap;
    transition: all 0.3s ease;
}


.header-logo {
    height: 80px; 
    width: auto;
}

.btn-discover {
    display: inline-block;
    background-color: transparent;
    color: #c9a763; 
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 35px;
    border: 2px solid #c9a763;
    border-radius: 30px; 
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-discover:hover {
    background-color: #c9a763;
    color: #2a362f; 
    box-shadow: 0 5px 15px rgba(201, 167, 99, 0.3);
    transform: translateY(-3px); 
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: var(--primary-green); 
    line-height: 1.6;
    position: relative;
}


body::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/paper.jpg');
    background-repeat: repeat;
    background-size: 500px; 
    

    mix-blend-mode: multiply; 
    opacity: 0.180;             
    
    z-index: -1;              
    pointer-events: none;     
}


h1, h2, h3, .spec-name, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold-accent, #c9a763);
}

.contact-section, .about-preview {
    position: relative;
    background-color: var(--primary-green); 
    color: var(--text-light);
    overflow: hidden;
    z-index: 1;
}


.contact-section::before, .about-preview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/paper.jpg');
    background-repeat: repeat;
    background-size: 400px; 
    
  
    mix-blend-mode: multiply;
    

    opacity: 0.4; 
    
    z-index: -1; 
    pointer-events: none;
}


.contact-section {
    padding: 80px 0;
}


body, 
.contact-section, 
.about-preview, 
.profile-wrapper {
    background-color: var(--primary-green) !important;
    background-image: none !important; 
    background-blend-mode: normal !important;
    position: relative !important;
}


body::before {
    content: "" !important;
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('img/paper.jpg') !important;
    background-repeat: repeat !important;
    background-size: 400px !important; 
    
    
    mix-blend-mode: multiply !important; 
    opacity: 0.4 !important; 
    
    z-index: 0 !important; 
    pointer-events: none !important;
}


body > * {
    position: relative !important;
    z-index: 1 !important;
}


.contact-section, .about-preview {
    z-index: 2 !important;
}

.nav-menu-container { 
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}


.nav-menu-container a, 
.mobile-nav a { 
    display: block !important;
    width: 80% !important; 
    max-width: 400px !important; 
    margin: 0 auto -1px auto !important; 
    padding: 15px 20px !important;
    border: 1px solid var(--gold-accent) !important;
    text-align: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    position: relative !important;
}


.nav-menu-container a:last-child {
    margin-bottom: 0 !important;
}
.nav-menu-container li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body > * {
    position: relative !important;
    z-index: 1 !important;
}

.modal {
    display: none; 
    z-index: 9999 !important; 
}


#cvModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
}
/* WYRWANIE PRZYCISKU Z DOŁU STRONY */
.floating-booking-btn {
    position: fixed !important; /* To go odkotwiczy i sprawi, że będzie latał */
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important; /* Musi być na samej górze wszystkiego */
    
    /* Reszta stylu dla pewności */
    display: flex !important;
    background-color: var(--gold-accent, #c9a763) !important;
    color: var(--primary-green, #2a362f) !important;
    padding: 15px 25px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
    border: 2px solid var(--primary-green, #2a362f) !important;
    transition: transform 0.3s ease !important;
}

/* Żeby na mobile nie zasłaniał za dużo, możemy go trochę zmniejszyć */
@media (max-width: 768px) {
    .floating-booking-btn {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
    }
}
.btn-cta-main {
    background-color: var(--gold-accent, #c9a763) !important;
    color: var(--primary-green, #2a362f) !important;
    font-weight: 700 !important;
    border: 2px solid transparent !important;
    animation: subtle-pulse 2s infinite;}
    @keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 167, 99, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(201, 167, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 167, 99, 0); }
}
/* ZAAWANSOWANY PŁYWAJĄCY PRZYCISK Z ANIMACJĄ */
.floating-booking-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    
    display: flex !important;
    align-items: center !important;
    background-color: var(--gold-accent, #c9a763) !important;
    color: var(--primary-green, #2a362f) !important;
    padding: 15px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
    border: 2px solid var(--primary-green, #2a362f) !important;
    
    /* ANIMACJE */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Sprężysty ruch */
    animation: floating-pulse 3s infinite !important; /* Ciągłe pulsowanie */
}

/* EFEKT "DOTKNIĘCIA" I NAJECHANIA */
.floating-booking-btn:hover {
    transform: scale(1.1) translateY(-5px) !important; /* Powiększenie i lekki skok do góry */
    background-color: #d4b87a !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5) !important;
    cursor: pointer !important;
}

/* EFEKT KLIKNIĘCIA (fizyczne wciśnięcie) */
.floating-booking-btn:active {
    transform: scale(0.95) !important; /* Przycisk "siada" pod palcem/myszką */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

/* DEFINICJA PULSOWANIA DLA PŁYWAJĄCEGO PRZYCISKU */
@keyframes floating-pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 167, 99, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(201, 167, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 167, 99, 0); }
}

/* Dopasowanie na mobile */
@media (max-width: 768px) {
    .floating-booking-btn {
        bottom: 20px !important;
        right: 20px !important;
        padding: 12px 20px !important;
        font-size: 11px !important;
    }
}
/* Główny kontener sekcji kontaktowej */
.branch-block {
    display: flex;
    flex-wrap: wrap; /* Pozwala na zawijanie na telefonach */
    gap: 40px; /* Odstęp między danymi a mapą */
    align-items: flex-start; /* Wyrównanie do góry */
    margin: 40px 0;
}

/* Lewa kolumna: Dane kontaktowe */
.contact-info {
    flex: 1; /* Zajmuje proporcjonalną część miejsca */
    min-width: 300px; /* Zabezpieczenie przed zbyt wąską kolumną */
}

.contact-info h3 {
    margin-top: 0;
    font-family: 'Playfair Display', serif; /* Zakładając, że używasz tego fontu */
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Przyciski pod danymi */
.map-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.map-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.map-btn.google {
    background-color: var(--gold-accent); /* Złoty przycisk */
    color: white;
}

.map-btn.apple {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

/* Prawa kolumna: Ramka z mapą */
.map-frame {
    flex: 1.5; /* Mapa będzie nieco szersza niż kolumna z tekstem */
    min-width: 300px;
}

.map-frame iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
}

/* Responsywność: Na urządzeniach mobilnych dane będą nad mapą */
@media (max-width: 992px) {
    .branch-block {
        flex-direction: column;
        gap: 30px;
    }

    .map-frame {
        width: 100%;
    }

    .map-frame iframe {
        height: 350px;
    }
}
/* --- Style głównej sekcji i karty --- */
.contact-section {
    padding: 60px 0;
    /* Jeśli body ma inny kolor, dostosuj tło karty poniżej */
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-size: 36px;
}

/* GŁÓWNA KARTA CONTACT */
.contact-card {
    background-color: #ffffff; /* Kolor lekko jaśniejszy od body (zakładam body #f4f4f4) */
    border-radius: 15px; /* Zaokrąglone rogi całej karty */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Delikatny, nowoczesny cień */
    overflow: hidden; /* Zabezpieczenie dla zaokrąglonych rogów */
    padding: 20px; /* Margines wewnętrzny całej karty */
}

/* Układ Flexbox wewnątrz karty */
.branch-block {
    display: flex;
    flex-wrap: wrap;
    gap: 0; /* Usuwamy przerwę, bo padding robimy wewnątrz kolumn */
}

/* Lewa kolumna: Dane */
.contact-info {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
}

/* Style dla poszczególnych danych kontaktowych */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--gold-accent); /* Kolor ikon (złoty) */
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px; /* Wyrównanie ikony z tekstem */
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--gold-accent);
}

/* Przyciski */
.map-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.map-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
}

.map-btn.google {
    background-color: var(--primary-green);
    color: white;
}

.map-btn.google:hover {
    background-color: var(--gold-accent);
}

.map-btn.apple {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.map-btn.apple:hover {
    background-color: #e2e2e5;
}

/* Prawa kolumna: Mapa */
.map-frame {
    flex: 1.2;
    min-width: 320px;
    height: 500px; /* Wysokość mapy */
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Responsywność (Telefony) --- */
@media (max-width: 992px) {
    .contact-card {
        padding: 0; /* Usuwamy padding karty na mobile */
    }

    .branch-block {
        flex-direction: column-reverse; /* Mapa na górze, dane na dole */
    }

    .contact-info {
        padding: 30px;
        min-width: 100%;
    }

    .map-frame {
        width: 100%;
        height: 350px; /* Mniejsza mapa na mobile */
    }

    .map-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
/* Kontener główny karty */
.branch-block {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #3c4a43; /* Kolor biały - zazwyczaj jaśniejszy od body strony */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Bardzo delikatny, nowoczesny cień */
    overflow: hidden;
    margin: 40px 0;
    border: 1px solid rgba(0,0,0,0.03); /* Subtelna obwódka */
}

/* Lewa strona - Dane kontaktowe */
.contact-info {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
}

/* Dekoracyjna linia pod tytułem */
.contact-info h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-accent);
    margin-top: 8px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

.contact-info strong {
    color: var(--primary-green);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Przyciski mapy */
.map-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.map-btn {
    flex: 1;
    text-align: center;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-btn.google {
    background-color: var(--primary-green);
    color: white;
}

.map-btn.google:hover {
    background-color: var(--gold-accent);
    transform: translateY(-2px);
}

.map-btn.apple {
    background-color: #f0f0f2;
    color: #1c1c1e;
}

.map-btn.apple:hover {
    background-color: #e5e5e7;
    transform: translateY(-2px);
}

/* Prawa strona - Mapa */
.map-frame {
    flex: 1.2;
    min-width: 350px;
    line-height: 0; /* Usuwa lukę pod iframe */
}

.map-frame iframe {
    width: 100%;
    height: 100% !important; /* Mapa dopasuje się do wysokości tekstu */
    min-height: 400px;
    border: 0;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .branch-block {
        flex-direction: column; /* Na telefonie mapa pod tekstem */
        margin: 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .map-frame {
        min-width: 100%;
    }

    .map-frame iframe {
        height: 300px !important;
    }

    .map-buttons {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .branch-block {
        flex-direction: column; /* Wszystko jeden pod drugim */
        margin: 10px; /* Margines od krawędzi ekranu */
        border-radius: 15px;
    }

    .contact-info {
        padding: 25px 20px; /* Mniejszy padding na telefonie */
        width: 100%;
        text-align: center; /* Wyśrodkowanie treści dla lepszego wyglądu */
    }

    .contact-info h3::after {
        margin: 8px auto; /* Wyśrodkowanie linii pod tytułem */
    }

    /* PRZYCISKI NA MOBILE */
    .map-buttons {
        flex-direction: column; /* Przycisk pod przyciskiem */
        width: 100%;
    }

    .map-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 15px; /* Większe pole do kliknięcia palcem */
    }

    /* MAPA NA MOBILE */
    .map-frame {
        width: 100%;
        height: 300px; /* Stała wysokość mapy na telefonie */
        min-height: 300px;
    }
}
/* Poprawka tylko dla telefonów */
@media (max-width: 768px) {
    /* Zmniejszamy font i padding, żeby tekst nie rozpychał guzików */
    .map-btn {
        font-size: 11px !important; /* Mniejszy napis */
        padding: 10px 5px !important; /* Mniejszy odstęp w środku */
        width: 80% !important; /* Przycisk zajmie całą szerokość karty */
        box-sizing: border-box !important;
        white-space: normal !important; /* Pozwala na zawinięcie tekstu w razie biedy */
        display: block !important;
        margin-bottom: 10px !important;
    }

    /* Układamy przyciski jeden pod drugim - to uratuje kartę przed rozjechaniem */
    .map-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 100% !important;
    }

    /* Wymuszamy, żeby kontener z tekstem nie wystawał */
    .contact-info {
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}
.contact-info {
        padding: 25px 20px !important;
        text-align: left !important; /* Wszystko do lewej */
        width: 100%;
        box-sizing: border-box;
    }
    @media (max-width: 768px){ .map-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* Wyrównanie przycisków do lewej */
        gap: 10px;
        width: 100%;
    }
}
header {
    background-color: #F7F7F5; /* lub lekko złamana biel, np. #FDFCF8 */
    border-bottom: 2px solid #C5A059; /* Opcjonalnie: złoty pasek odcinający jasny header od reszty strony */
}

/* Jeśli tekst w nawigacji był biały (bo tło było ciemne), musisz go zmienić na ciemny */
header a, header nav ul li {
    color: #1B3B36 !important; /* Głęboka zieleń z logo dla zachowania spójności */
}

/* Dostosowanie wielkości logo */
header .logo img {
    max-height: 80px; /* Dostosuj wartość, by logo nie było przytłaczające */
    width: auto;
}
/* Zmień klasę na taką, której używasz dla przycisków w menu */
.nav-button, .menu-item a {
    color: #1B3B36;           /* Ciemna zieleń z logo Katharsia */
    border: 1.5px solid #C5A059; /* Złota ramka */
    background-color: transparent;
    padding: 10px 20px;
    text-decoration: none;
    transition: 0.3s;
}

/* Efekt po najechaniu myszką */
.nav-button:hover, .menu-item a:hover {
    background-color: #C5A059; /* Złote tło */
    color: #FFFFFF;           /* Biały tekst na złotym tle */
}
/* Styl dla linków w nawigacji z image_7845fa.png */
nav a {
    color: #1B3B36;                /* Ciemna zieleń z nowego logo */
    text-decoration: none;         /* Usuwamy podkreślenie */
    padding: 10px 20px;            /* Przestrzeń wewnątrz przycisku */
    border: 1.5px solid #C5A059;   /* Złota ramka */
    margin: 5px;                   /* Odstęp między przyciskami */
    display: inline-block;         /* Pozwala na poprawne wyświetlanie paddingu */
    transition: all 0.3s ease;     /* Płynna zmiana koloru */
    font-family: 'Montserrat', sans-serif; /* Czytelna czcionka bezszeryfowa */
    font-weight: 500;
    text-transform: uppercase;    /* Wielkie litery dla lepszej czytelności */
    letter-spacing: 1px;
}

/* Efekt po najechaniu myszką (Hover) */
nav a:hover {
    background-color: #C5A059;     /* Złote wypełnienie */
    color: #FFFFFF;                /* Biały tekst na złotym tle */
    box-shadow: 0px 4px 15px rgba(197, 160, 89, 0.4); /* Delikatny złoty blask */
}
/* Celujemy we wszystko, co jest linkiem w nawigacji, bez wyjątków */
nav a, 
nav a:link, 
nav a:visited, 
nav a * {
    color: #C5A059 !important; /* Ciemna zieleń Katharsii */
    background-color: #2a362f!important;
}

/* Stan po najechaniu */
nav a:hover, 
nav a:hover * {
    color: #FFFFFF !important; /* Biały tekst */
    background-color: #C5A059 !important; /* Złote tło */
}
/* Ustawienie tła headera identycznego z tłem logo */
header {
    background-color: #F7F8F7 !important;
    background: #F7F8F7 !important; /* Na wypadek, gdyby użyto skróconego zapisu background */
    border: none !important;        /* Usuwamy ewentualne ramki, by tło logo i headera się zlało */
}

/* Jeśli Twoje logo jest w tagu img, warto dodać to, by idealnie pasowało */
header img {
    background-color: transparent !important;
    display: block !important;
}
header, #header, .header, [id*="header"] {
    background-color: #F2F2F2 !important;
    background: #F2F2F2 !important;
}
/* WYMUSZENIE WYŚWIETLANIA POP-UPU NA SAMEJ GÓRZE */
.modal {
    display: none; 
    position: fixed !important;    /* Blokuje pop-up na stałe względem ekranu */
    z-index: 99999 !important;    /* Absolutnie najwyższa warstwa, przebija każde inne tło */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;               /* Pozwala przewijać pop-up, jeśli zawartość jest za długa */
    background-color: rgba(0, 0, 0, 0.6) !important; /* Przyciemnia stronę pod pop-upem */
}

/* Upewniamy się, że środek okna też jest nad wszystkim */
.modal-content {
    position: relative !important;
    z-index: 100000 !important;   /* Jeszcze wyżej niż czarne tło modala */
    margin: 10% auto;             /* Centrowanie w pionie i poziomie */
    /* Jeśli masz tu swoje inne style (np. padding, border-radius), to one zostaną nienaruszone */
}

/* Poprawka dla ikony zamknięcia (X), żeby była widoczna i klikalna */
.close-modal {
    position: relative;
    z-index: 100001 !important;
    cursor: pointer;
}
/* Układ siatki dla szybkich pytań */
.faq-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Pojedynczy boks pytania i odpowiedzi */
.faq-simple-item {
    background: rgba(58, 71, 64, 0.4);
    border: 1px solid rgba(201, 167, 99, 0.15);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-simple-item:hover {
    border-color: var(--gold-accent);
    background: rgba(58, 71, 64, 0.6);
    transform: translateY(-2px);
}

/* Styl dla samego pytania */
.faq-q {
    color: var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

/* Styl dla krótkiej odpowiedzi */
.faq-a {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Dopasowanie do mniejszych ekranów (telefonów) */
@media (max-width: 768px) {
    .faq-simple-grid {
        grid-template-columns: 1fr; /* Jedna kolumna na komórkach */
        gap: 15px;
    }
    
    .faq-simple-item {
        padding: 15px;
    }
}/* STYLIZACJA HARMONIJKI (AKORDEONU) */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: #3a4740;
    border: 1px solid rgba(201, 167, 99, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    text-align: left;
    color: var(--gold-accent);
    font-size: 17px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(201, 167, 99, 0.05);
}

.acc-icon {
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(26, 42, 36, 0.4);
}

.acc-content {
    padding: 0 25px 25px 25px;
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
}

.acc-list {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: square;
    color: var(--gold-accent); /* Złote punktory */
}

.acc-list li {
    color: #e0e0e0; /* Biały tekst listy */
    margin-bottom: 6px;
}

/* STAN AKTYWNY (OTWARTY PANE) */
.accordion-item.active {
    border-color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .acc-icon {
    transform: rotate(45deg); /* Zamienia "+" na "X" */
    color: #ffffff;
}
/* =========================================
   ROZWIJANE MENU (DROPDOWN) DLA NAWIGACJI
   ========================================= */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropbtn {
    display: inline-flex;
    align-items: center;
}

/* Ukryte pudełko z linkami */
.nav-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--primary-green, #1B3B36);
    min-width: 260px;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(201, 167, 99, 0.2);
    z-index: 9999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Menu startuje lekko z dołu */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 10px 0;
}

/* Pokazywanie menu po najechaniu myszką */
.nav-dropdown:hover .nav-dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Płynny wjazd na miejsce */
}

/* Pojedyncze linki na liście */
.nav-dropdown-content a {
    color: #ffffff !important;
    padding: 12px 25px !important;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

/* Efekt najechania na link wewnątrz menu */
.nav-dropdown-content a:hover {
    background-color: rgba(201, 167, 99, 0.1);
    color: var(--gold-accent, #c9a763) !important;
    padding-left: 30px !important; /* Tekst lekko przesuwa się w prawo */
}

/* Responsywność dla telefonów komórkowych */
@media (max-width: 768px) {
    .nav-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        border: none;
        width: 100%;
        display: none;
        padding: 0;
    }
    .nav-dropdown:hover .nav-dropdown-content,
    .nav-dropdown:active .nav-dropdown-content {
        display: block;
    }
    .nav-dropdown-content a {
        padding-left: 30px !important;
        font-size: 13px;
    }
}
/* =========================================
   W 100% KLIKALNE MENU (BEZ HOVERA)
   ========================================= */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropbtn {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: var(--primary-green, #1B3B36);
    min-width: 205px;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.5);
    border-radius: 12px;
    border: 1px solid rgba(201, 167, 99, 0.3);
    z-index: 99999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    padding: 10px 0;
}

/* KLASA AKTYWUJĄCA MENU PO KLIKNIĘCIU */
.nav-dropdown-content.show-menu {
    visibility: visible;
    opacity: 1;
}

.nav-dropdown-content a {
    color: #ffffff !important;
    padding: 12px 25px !important;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500 !important;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-dropdown-content a:last-child {
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background-color: rgba(201, 167, 99, 0.1);
    color: var(--gold-accent, #c9a763) !important;
    padding-left: 30px !important;
}

@media (max-width: 768px) {
    .nav-dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.1);
        border: none;
        width: 100%;
        display: none;
        padding: 0;
        margin-top: 5px;
    }
    .nav-dropdown-content.show-menu {
        display: block;
    }
}
header, nav, .nav-dropdown {
    position: relative;
    z-index: 999999 !important; /* Gwarantuje, że pasek nawigacji fizycznie zmiażdży wszystko pod spodem */
}
/* =========================================
   WERSJA MOBILNA: NIEZAWODNY DROPDOWN (KLIKALNY)
   ========================================= */
/* =========================================
   WERSJA MOBILNA: IDEALNIE WYŚRODKOWANY DROPDOWN
   ========================================= */
/* =========================================
   WERSJA MOBILNA: IDEALNIE WYŚRODKOWANY TEKST
   ========================================= */
@media (max-width: 768px) {
    header, nav {
        overflow: visible !important;
    }

    .nav-dropdown {
        /* MUSI być relative, żeby lista wiedziała, gdzie jest jej rodzic! */
        position: relative !important; 
    }

    .nav-dropdown-content {
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important; /* Ustawia całą czarną ramkę na samym środku przycisku */
        width: 200px !important; /* Bezpieczna szerokość na komórki */
        
        background-color: var(--primary-green, #1B3B36);
        border: 1px solid rgba(201, 167, 99, 0.4);
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.8);
        padding: 5px 0 !important;
        margin-top: 10px !important;
        z-index: 9999999 !important;
        
        max-height: 60vh;
        overflow-y: auto;
    }

    /* Wymuszenie wyśrodkowania napisów i łamania linii */
    .nav-dropdown-content a {
        display: block !important;
        text-align: center !important; /* To gwarantuje tekst na samym środku guzika */
        padding: 14px 10px !important;
        font-size: 14px !important;
        white-space: normal !important; /* Pozwala na drugą linijkę dla długich nazw */
        line-height: 1.4 !important;
    }

    .nav-dropdown-content a:hover,
    .nav-dropdown-content a:active {
        padding-left: 10px !important; /* Blokuje "skakanie" tekstu w prawo po kliknięciu */
        background-color: rgba(201, 167, 99, 0.1);
    }
}
/* =========================================
   POPRAWKA DLA TABLETÓW (iPad, Surface) - ZAWIJANIE TEKSTU POD SPÓD
   ========================================= */

/* 1. Zabezpieczenie belek w harmonijce (akordeonie) - wymuszenie zawijania tekstu */
.accordion-header {
    white-space: normal !important; 
    word-wrap: break-word !important;
    line-height: 1.4 !important;
}

/* Zabezpiecza ikonkę "plus", żeby nie została zgnieciona przez zawijający się tekst */
.acc-icon {
    flex-shrink: 0 !important; 
    margin-left: 15px;
}

/* 2. Zabezpieczenie "tabelek" FAQ i metod pracy */
.faq-simple-item, .method-card {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

.faq-simple-item span, .method-card p, .method-card h4 {
    white-space: normal !important;
}

/* 3. Zabezpieczenie górnego menu - gdy na tablecie zabraknie miejsca, przyciski zjadą piętro niżej */
@media (max-width: 1100px) and (min-width: 769px) {
    header {
        flex-wrap: wrap !important; 
        justify-content: center !important;
    }
    
    nav {
        display: flex !important;
        flex-wrap: wrap !important; /* Magiczna komenda: uciekaj pod spód, gdy jest za ciasno */
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .nav-dropdown-content a {
        white-space: normal !important; /* Długie linki w menu też się zawiną */
    }
}
/* =========================================
   ZMIANA KOLORU TEKSTU NA ZIELONY PO NAJECHANIU NA ZŁOTY PRZYCISK
   ========================================= */

.btn:hover, 
.btn-gold:hover, 
.btn-cta-main:hover, 
.btn-discover:hover,
.nav-dropdown-content a:hover,
.accordion-header:hover {
    /* Wymusza nasz ciemnozielony kolor tekstu na wszystkich typach przycisków */
    color: var(--primary-green, #1B3B36) !important; 
}

/* Opcjonalnie: Jeśli masz też jakieś ikonki (np. "+" w harmonijce) na przyciskach */
.btn:hover .acc-icon, 
.accordion-header:hover .acc-icon {
    color: var(--primary-green, #1B3B36) !important;
}