/* RESET CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Oglny css dla html i body*/
html 
{
    scroll-behavior: smooth;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fd;
    color: #191c1f;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body 
{
    overflow-x: hidden;
}

/*Kontener - główny element dla bloków*/
.container
{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/*Nie ruszać*/
.survey-line 
{
    background: linear-gradient(135deg, transparent 45%, #f2a900 45%, #f2a900 55%, transparent 55%);
    background-size: 10px 10px;
}

/*Nawigacja i menu nawigacyjne*/
header.nav-bar 
{
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);

    border-bottom: 1px solid black;
}
nav 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}
.logo 
{
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #191c1f;
    text-decoration: none;
    padding-top: 9px;
}

.logo img
{
    width: 210px;
}

@media (max-width: 768px)
{

    nav
    {
        height: 80px;
    }

    .logo img
    {
        width: 160px;
    }
}

.nav-links 
{
    display: none;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) 
{
    .nav-links 
    { 
        display: flex; 
    }
}

.nav-links a 
{
    color: #191c1f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}
.nav-links a:hover 
{
    color: #7f5700;
}
.btn-call 
{
    background: #f2a900;
    color: #614200;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.btn-call:hover 
{
    filter: brightness(0.9);
    color: rgb(85, 57, 0);
}
.hamburger 
{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 768px) 
{
    .hamburger 
    {
        display: block;
    }
}



/*Sekcja hero*/
.hero {
    position: relative;
    background-color: #0e1013;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-bg-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-desktop img {
    width: 105%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(14, 16, 19, 0.85) 0%,
        rgba(14, 16, 19, 0.65) 40%,
        rgba(14, 16, 19, 0.25) 70%,
        rgba(14, 16, 19, 0) 100%),
    linear-gradient(0deg,
        rgba(14, 16, 19, 0.7) 0%,
        rgba(14, 16, 19, 0) 30%);
    z-index: 2;
}

.hero-grid-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-block;
    background-color: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 4px;
    border: 1px solid rgba(245, 158, 11, 0.25);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    color: #f59e0b;
}

.hero-description {
    font-size: 1.05rem !important;
    line-height: 1.65;
    font-weight: 400;
    color: #e5e7eb;
    margin-bottom: 35px;
}

/* --- PRZYCISK CTA (DESKTOP DOMYŚLNIE) --- */
.hero-phone-cta {
    display: inline-flex;
    align-items: center;
    background-color: #f59e0b; /* Wyraziste żółto-bursztynowe tło */
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #f59e0b;
    backdrop-filter: blur(9px);
    transition: all 0.3s ease;
}

.phone-icon-box {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon-box svg {
    width: 18px;
    height: 18px;
    fill: #0e1013; /* Czarna ikonka */
    transition: fill 0.3s ease;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #212529; /* Ciemna etykieta */
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-number {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0e1013; /* Czarny numer telefonu */
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* EFEKT NAJECHANIA (HOVER) */
.hero-phone-cta:hover {
    background-color: #202327; /* Przełączenie na ciemne tło */
    border-color: #f59e0b; /* Bursztynowa ramka */
    transform: translateY(-2px);
}

.hero-phone-cta:hover .phone-label {
    color: #9ca3af; /* Jasnoszara etykieta */
}

.hero-phone-cta:hover .phone-number {
    color: #f59e0b; /* Żółto-bursztynowy numer */
}

.hero-phone-cta:hover .phone-icon-box svg {
    fill: #f59e0b; /* Żółto-bursztynowa ikonka */
}

.survey-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, rgba(245, 158, 11, 0) 100%);
    z-index: 4;
}

/* --- RESPONSYWNOŚĆ (TELEFONY) --- */
@media (max-width: 992px) {
    .hero {
        min-height: 340px;
        background-color: transparent;
        padding: 50px 0 40px 0;
    }

    .hero-bg-desktop {
        height: 380px;
    }

    .hero-bg-desktop img {
        object-position: 65% center;
        filter: brightness(0.6);
    }

    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(14, 16, 19, 0.8) 0%, 
            rgba(14, 16, 19, 0.6) 60%, 
            rgba(14, 16, 19, 0.2) 100%);
    }

    .hero-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-content {
        margin: 0;
        padding: 0 15px;
    }

    .hero-tag {
        display: inline-block;
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 14px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.55;
        margin-bottom: 24px;
        color: #e5e7eb;
    }

    /* ZMNIEJSZONE WYMIARY PRZYCISKU DLA TELEFONÓW */
    .hero-phone-cta {
        display: inline-flex;
        width: auto;
        padding: 8px 16px; /* Zmniejszony padding wewnętrzny */
        border-radius: 6px;
    }

    .phone-icon-box {
        width: 18px;
        height: 18px;
        margin-right: 8px; /* Mniejszy odstęp od tekstu */
    }

    .phone-icon-box svg {
        width: 15px;
        height: 15px; /* Mniejsza ikona słuchawki */
    }

    .phone-label {
        font-size: 0.58rem; /* Mniejszy podtytuł */
    }

    .phone-number {
        font-size: 0.9rem; /* Mniejszy numer telefonu */
    }

    .survey-line {
        display: none;
    }
}


/*Sekcja - o firmie*/
.about 
{
    padding: 48px 0;
    background: #f8f9fd;
}
@media (min-width: 768px) 
{
    .about 
    { 
        padding: 80px 0; 
    }
}
.about-grid 
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) 
{
    .about-grid 
    { 
        grid-template-columns: repeat(12, minmax(0, 1fr)); 
    }
    .about-left 
    { 
        grid-column: span 7 / span 7; 
    }
    .about-right 
    { 
        grid-column: span 5 / span 5; 
    }
}
.section-tag-wrapper 
{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.section-line 
{
    height: 1px;
    width: 48px;
    background: #7f5700;
}
.section-tag 
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #7f5700;
}
.about h2 
{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #191c1f;
    letter-spacing: -0.01em;
}
.about-text 
{
    color: #514533;
    font-size: 16px;
    margin-bottom: 16px;
}
.stats-grid 
{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding-top: 24px;
}

.stat-num 
{
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #7f5700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.stat-desc 
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.7;
}



@media (max-width: 992px) 
{
    .about h2 
    {
        font-size: 28px;
    }
    .about-text 
    {
        font-size: 15px;
    }
}




.about-images-grid 
{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}

.about-img-box 
{
    position: relative;
    aspect-ratio: 1 / 1;
    background: #e6e8ec;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}

.about-img-box.img-2 
{
    margin-top: 24px;
}

.about-img-box img 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
}
@media (min-width: 1024px) 
{
    .about-images-grid 
    {
        display: block;
    }
    .about-img-box.img-2 
    {
        display: none;
    }
    .about-img-box.img-1 
    {
        max-width: 100%;
        border-radius: 12px;
    }
}






.badge 
{
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: #f2a900;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    display: none;
}
@media (min-width: 768px) 
{
    .badge 
    { 
        display: block;
    }
}
.badge-icon 
{
    width: 36px;
    height: 36px;
    fill: #614200;
    margin-bottom: 8px;
}
.badge-text 
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #614200;
    line-height: 1.2;
}



/*Sekcja - oferta i usługi*/
/* --- MINIMALISTYCZNA SEKCJA OFERTA --- */
.offer {
    padding: 60px 0;
    background: #2f3131;
    color: #ffffff;
}

@media (min-width: 992px) {
    .offer { 
        padding: 90px 0; 
    }
}

/* Układ 2-kolumnowy */
.offer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.offer-content {
    order: 1;
}

.offer-image-box {
    order: 2;
}

@media (min-width: 992px) {
    .offer-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

    .offer-image-box {
        flex: 1;
        width: 100%;
        max-width: 500px;
        order: 1;
        margin-left: -25px; /* Delikatne przesunięcie zdjęcia w lewo na komputerach */
    }

    .offer-content {
        flex: 1;
        max-width: 540px;
        order: 2;
    }
}

/* Tytuł i opis sekcji */
.offer-subtitle {
    color: #f5a623;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.offer-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .offer-content h2 {
        font-size: 38px;
    }
}

.offer-description {
    color: #eceef1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Lista usług (klikalne elementy) */
.offer-services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 32px;
}

.offer-service-item {
    display: block;
    text-decoration: none;
    color: inherit;
    border-left: 2px solid transparent;
    transition: border-color 0.2s ease, padding-left 0.2s ease;
    padding-left: 4px;
}

.offer-service-item:hover {
    border-left-color: #f5a623;
    padding-left: 10px;
}

.offer-service-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.offer-arrow {
    color: #f5a623;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.offer-service-title h3 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.offer-service-item p {
    font-size: 14px;
    color: #b0b5bd;
    line-height: 1.5;
    margin: 0 0 0 18px;
}

/* Przycisk na dole */
.offer-action {
    margin-top: 8px;
    margin-bottom: 5px;
}

.btn-all-services {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    padding: 10px 0;
    border-bottom: 2px solid #f5a623;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-all-services:hover {
    color: #f5a623;
    border-color: #ffffff;
}

/* Stylizacja zdjęcia po lewej stronie */
.offer-image-box {
    width: 100%;
}

.offer-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
    .offer-img {
        height: 300px;
    }
}


/*Sekcja z opiniami z Google Maps*/
.reference-section { max-width: 100%; margin: 0 auto; padding: 80px;}
.reference-header { text-align: center; margin-bottom: 80px; }
.reference-header span { font-size: 12px; color: #FBB03B; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 8px; font-weight: 600; }
.reference-header h2 { font-size: 32px; color: #222831; margin-bottom: 16px; font-weight: 700; letter-spacing: -0.01em; }
.divider { width: 64px; height: 4px; background: #FBB03B; margin: 0 auto; }

/* Domyślnie 3 kolumny dla komputerów */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Śnieżnobiałe karty z delikatnym cieniem dla kontrastu */
.card { 
    background: #FFF; 
    border: 1px solid #D4D4D4; 
    padding: 48px; 
    border-radius: 6px; 
    position: relative; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08); /* Subtelny, miękki cień bazowy */
    height: 440px;
}

/* Efekt uniesienia po najechaniu myszką */
.card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(34, 40, 49, 0.08); 
    border-color: #FBB03B; 
}

.user { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid #EEE; }
.name { font-size: 20px; color: #222831; font-weight: 700; letter-spacing: -0.01em; }
.date { font-size: 14px; color: #45474b; font-weight: 500; margin-top: 2px; }

.stars { margin-bottom: 16px; display: flex; gap: 4px; color: #FBB03B; font-size: 20px; line-height: 1; }

.text { color: #1a1c1c; line-height: 24px; font-size: 16px; }

.quote { position: absolute; top: 48px; right: 48px; fill: #EEE; opacity: 0.4; transition: 0.3s; width: 40px; height: 40px; }
.card:hover .quote { fill: #FBB03B; opacity: 1; }

.cta { margin-top: 48px; text-align: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; background: #FBB03B; color: #222831; padding: 24px 48px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 14px; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { transform: scale(1.02); background: #feb23d; }
.btn svg { fill: #222831; transition: 0.3s; }
.btn:hover svg.arrow { transform: translateX(4px); }

/* Style dla tabletów horyzontalnych i wertykalnych */
@media (max-width: 1223px) 
{
    .grid { grid-template-columns: repeat(2, 1fr); }
    .grid .card:nth-child(3) { display: none; } /* Ukrywa trzecią opinię */
    .opinia3 {display: none;}
}

@media (min-width: 800px) and (max-width: 1000px)
{
    .card
    {
        height: 520px;
    }
}

/* Style dla telefonów */
@media (max-width: 799px) {
    .reference-section { padding: 40px 32px; }
    .header h2 { font-size: 24px; }
    .grid { grid-template-columns: 1fr; }
	.card
    {
        height: 500px;
    }
}



/*Sekcja - kontakt i formularz*/
/*Kontakt*/
.contact 
{
    padding: 48px 0;
    background: #f8f9fd;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) 
{
    .contact 
    { 
        padding: 80px 0; 
    }
}
.contact-grid 
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}
@media (min-width: 1024px) 
{
    .contact-grid 
    { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}

.contact-left h2 
{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}
.contact-left > p 
{
    color: #514533;
    margin-bottom: 48px;
    font-size: 16px;
}
.contact-methods 
{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.method-row 
{
    display: flex;
    align-items: start;
    gap: 16px;
}
.method-icon 
{
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #f2a900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.method-icon svg 
{
    width: 24px;
    height: 24px;
    fill: #614200;
}
.method-label 
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #7f5700;
    margin-bottom: 4px;
}
.method-value 
{
    font-size: 24px;
    font-weight: 700;
    color: #191c1f;
    text-decoration: none;
}
.method-value-sub 
{
    font-size: 18px;
    font-weight: 600;
    color: #191c1f;
    line-height: 1.4;
}



/*Formularz*/
/*Usunięto*/
/**/



/*Stopka*/
footer 
{
    background: #2f3131;
    color: #ffffff;
    padding: 48px 0 24px 0;
}

@media (min-width: 768px) 
{
    footer 
    { 
        padding: 80px 0 32px 0; 
    }
}

.footer-grid 
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) 
{
    .footer-grid 
    { 
        grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
}
.footer-col
{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo 
{
    font-size: 24px;
    font-weight: 700;
    color: #dbb171;
}
.footer-text 
{
    color: #e2e2e5;
    font-size: 15px;
    line-height: 1.5;
}
.footer-title 
{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #dbb171;
}
.footer-links 
{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a 
{
    color: #e2e2e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover 
{
    color: #dbb171;
}
.social-box 
{
    display: flex;
    gap: 16px;
}
.social-icon 
{
    width: 40px;
    height: 40px;
    border: 1px solid rgba(226, 226, 229, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.social-icon svg 
{
    width: 20px;
    height: 20px;
    fill: #dbb171;
}
.social-icon:hover 
{
    background: #dbb171;
}
.social-icon:hover svg 
{
    fill: #2f3131;
}
.copyright 
{
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(214, 196, 172, 0.2);
    font-size: 14px;
    color: #e2e2e5;
    opacity: 0.6;
    
    /* Nowe reguły dla ułożenia elementów */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) 
{
    .copyright 
    {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
}



/*CSS dodatkowy i nadpisany*/


/*Menu mobilne*/
@media (max-width: 768px) 
{
    /*Znikanie przycisku "Skontaktuj się" na telefonach*/
    .btn-call 
    {
        display: none;
    }

    .nav-links 
    {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(25, 28, 31, 0.98); 
        backdrop-filter: blur(8px); /*Efekt rozmycia tła za menu */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
        
        /* Stan początkowy (ukryty) pod animację */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    /* Linki w menu mobilnym */
    .nav-links a 
    {
        color: #ffffff;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.05em;
        transition: color 0.2s, transform 0.2s;
    }

    .nav-links a:hover 
    {
        color: #f2a900;
        transform: scale(1.05);
    }

    /* Przycisk zamknięcia "X" w prawym górnym rogu */
    .nav-links .menu-close 
    {
        position: absolute;
        top: 24px;
        right: 24px;
        color: #ffffff !important;
        font-size: 40px;        
        line-height: 1;
        text-decoration: none;
        font-weight: 300;
        transition: color 0.2s, transform 0.2s;
        cursor: pointer;
    }

    .nav-links .menu-close:hover 
    {
        color: #f2a900 !important; /* Zmiana koloru na złoty po najechaniu */
        transform: scale(1.1);
    }
    /*Płynne rozwijanie menu*/
    #mobile-menu:target 
    {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); 
    }
}

/*Ukrycie napisu "logo", który wyświetla się tylko na telefonach*/
@media (min-width: 768px)
{
    #geodezja-napis-menu_telefon
    {
        display: none;
    }

    .nav-links .menu-close 
    {
        display: none;
    }
}
    

/*Dodatkowy wygląd formualrza - przycisk akceptacji*/
.rodo-group 
{
    display: flex;
    align-items: flex-start; 
    gap: 12px;               
}

.rodo-group input[type="checkbox"] 
{
    width: auto;             
    margin-top: 4px;        
    cursor: pointer;
}

.rodo-group label 
{
    display: inline;         
    margin-bottom: 0;        
    cursor: pointer;
}
    

/*Dodatki i dodatkowy wygląd do stopki (sekcja Linki)- lepiej nie ruszać*/
.social-box 
{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.social-row 
{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #e2e2e5;
    transition: transform 0.2s ease;
    width: fit-content;
}

.social-row:hover .social-icon 
{
    background: #dbb171;
}

.social-row:hover .social-icon svg 
{
    fill: #2f3131;
}

.social-row:hover .social-text 
{
    color: #dbb171;
}

.social-text 
{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.social-icon 
{
    flex-shrink: 0;
}

@media (min-width: 1024px) 
{
    .social-box 
    {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 24px;
    }
}


/* Poprawka przewijania dla telefonów - zapobiega zasłanianiu sekcji przez przyklejony pasek */
@media (max-width: 768px) 
{
    #o-firmie, #oferta, #kontakt, #opinie
    {
        scroll-margin-top: 80px; 
    }
    
}

@media (min-width: 769px) 
{
    #o-firmie, #oferta, #kontakt, #opinie
    {
        scroll-margin-top: 30px; 
    }
    
}


/* Stylowanie linku twórcy, pasujące do motywu strony */
.author-text a 
{
    color: #dbb171; /* Kolor złoty, taki sam jak logo w stopce */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.author-text a:hover 
{
    color: #ffffff; /* Po najechaniu link podświetla się na biało */
    opacity: 1;
}





    
    
    
    